commit 1b5ca33b46dca0504ad9fcaaa6d3448183593117 Author: Logen Kain Date: Thu Nov 2 19:51:40 2023 -0400 first diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f1af097 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Godot 4+ specific ignores +.godot/ +Builds/ diff --git a/Player.gd b/Player.gd new file mode 100644 index 0000000..cb54956 --- /dev/null +++ b/Player.gd @@ -0,0 +1,50 @@ +extends CharacterBody2D + +const SPEED = 150.0 +const JUMP_VELOCITY = -200.0 +const MAX_FALL = 200 +var has_double_jumped: bool = false +var jump_released: bool = false + +# Get the gravity from the project settings to be synced with RigidBody nodes. +var gravity = ProjectSettings.get_setting("physics/2d/default_gravity") + +func _physics_process(delta): + if self.get_position()[1] >= MAX_FALL: + get_tree().reload_current_scene() + + if is_on_floor(): + has_double_jumped = false + + if Input.is_action_just_pressed("ui_jump") and not is_on_floor() and not has_double_jumped: + has_double_jumped = true + jump_released = false + velocity.y = 0 + velocity.y += JUMP_VELOCITY + + # Add the gravity. + if not is_on_floor(): + velocity.y += gravity/2 * delta + + # Handle Jump. + if Input.is_action_just_pressed("ui_jump") and is_on_floor(): + velocity.y = JUMP_VELOCITY + jump_released = false + + if Input.is_action_just_released("ui_jump") and not jump_released: + velocity.y = velocity.y * 0.2 #Slow down verticle acceleration + jump_released = true + # Get the input direction and handle the movement/deceleration. + # As good practice, you should replace UI actions with custom gameplay actions. + var direction = Input.get_axis("ui_left", "ui_right") + if direction: + velocity.x = direction * SPEED + else: + velocity.x = move_toward(velocity.x, 0, SPEED) + + if velocity.x < 0: + get_node("AnimatedSprite2D").set_flip_h(true) + if velocity.x > 0: + get_node("AnimatedSprite2D").set_flip_h(false) + + move_and_slide() diff --git a/README b/README new file mode 100644 index 0000000..d1a5f2c --- /dev/null +++ b/README @@ -0,0 +1,3 @@ +Asset credits: +https://anokolisa.itch.io/basic-140-tiles-grassland-and-mines +https://github.com/open-duelyst/duelyst (obtained through gdot AssetLib) diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_circleofdessication.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_circleofdessication.tres new file mode 100644 index 0000000..7f5a185 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_circleofdessication.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://c5qcknm0iw4cl"] + +[ext_resource type="Texture2D" uid="uid://boblhas71epxi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png" id="1_4maip"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulmc3"] +atlas = ExtResource("1_4maip") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fv7a"] +atlas = ExtResource("1_4maip") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk5ta"] +atlas = ExtResource("1_4maip") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_430a7"] +atlas = ExtResource("1_4maip") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tvn6"] +atlas = ExtResource("1_4maip") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j60b2"] +atlas = ExtResource("1_4maip") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iayhq"] +atlas = ExtResource("1_4maip") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phox7"] +atlas = ExtResource("1_4maip") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl45k"] +atlas = ExtResource("1_4maip") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xv70"] +atlas = ExtResource("1_4maip") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i1uy"] +atlas = ExtResource("1_4maip") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie1bu"] +atlas = ExtResource("1_4maip") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itw85"] +atlas = ExtResource("1_4maip") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq48y"] +atlas = ExtResource("1_4maip") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6poe"] +atlas = ExtResource("1_4maip") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e7w3"] +atlas = ExtResource("1_4maip") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awgcw"] +atlas = ExtResource("1_4maip") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7ewc"] +atlas = ExtResource("1_4maip") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enn2m"] +atlas = ExtResource("1_4maip") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbr2x"] +atlas = ExtResource("1_4maip") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skges"] +atlas = ExtResource("1_4maip") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wurx"] +atlas = ExtResource("1_4maip") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeyt1"] +atlas = ExtResource("1_4maip") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb0kk"] +atlas = ExtResource("1_4maip") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnsti"] +atlas = ExtResource("1_4maip") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfxvy"] +atlas = ExtResource("1_4maip") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5ke0"] +atlas = ExtResource("1_4maip") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulmc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fv7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk5ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_430a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tvn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j60b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iayhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phox7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl45k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xv70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i1uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie1bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itw85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq48y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6poe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e7w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awgcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7ewc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enn2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbr2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skges") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wurx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeyt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb0kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnsti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfxvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5ke0") +}], +"loop": true, +"name": &"circleofdessication", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_entropicdecay.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_entropicdecay.tres new file mode 100644 index 0000000..9e87c40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f3_fx_entropicdecay.tres @@ -0,0 +1,242 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://b7dsbi8hagp70"] + +[ext_resource type="Texture2D" uid="uid://8t4lq3sjv743" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png" id="1_alija"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5er5"] +atlas = ExtResource("1_alija") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pomej"] +atlas = ExtResource("1_alija") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7waf"] +atlas = ExtResource("1_alija") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k702p"] +atlas = ExtResource("1_alija") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1co30"] +atlas = ExtResource("1_alija") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnwl0"] +atlas = ExtResource("1_alija") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv5ns"] +atlas = ExtResource("1_alija") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oul1b"] +atlas = ExtResource("1_alija") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nesa2"] +atlas = ExtResource("1_alija") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wbjw"] +atlas = ExtResource("1_alija") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je787"] +atlas = ExtResource("1_alija") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dukyx"] +atlas = ExtResource("1_alija") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3lrk"] +atlas = ExtResource("1_alija") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxwe1"] +atlas = ExtResource("1_alija") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpm44"] +atlas = ExtResource("1_alija") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jbn7"] +atlas = ExtResource("1_alija") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88q46"] +atlas = ExtResource("1_alija") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvw46"] +atlas = ExtResource("1_alija") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hljnt"] +atlas = ExtResource("1_alija") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70s00"] +atlas = ExtResource("1_alija") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkmxo"] +atlas = ExtResource("1_alija") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07kea"] +atlas = ExtResource("1_alija") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brpyb"] +atlas = ExtResource("1_alija") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppaaf"] +atlas = ExtResource("1_alija") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws500"] +atlas = ExtResource("1_alija") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8xoq"] +atlas = ExtResource("1_alija") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fckil"] +atlas = ExtResource("1_alija") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bksfq"] +atlas = ExtResource("1_alija") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwi5v"] +atlas = ExtResource("1_alija") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywqm0"] +atlas = ExtResource("1_alija") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vssxw"] +atlas = ExtResource("1_alija") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuxox"] +atlas = ExtResource("1_alija") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ng22"] +atlas = ExtResource("1_alija") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5er5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pomej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7waf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k702p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1co30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnwl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv5ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oul1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nesa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wbjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je787") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dukyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3lrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxwe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpm44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jbn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88q46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvw46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hljnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70s00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkmxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07kea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brpyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppaaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws500") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8xoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fckil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bksfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwi5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywqm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vssxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuxox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ng22") +}], +"loop": true, +"name": &"entropicdecay", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/f5_fx_flamingstampede.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f5_fx_flamingstampede.tres new file mode 100644 index 0000000..4582974 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f5_fx_flamingstampede.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://bv0kvwqi220jn"] + +[ext_resource type="Texture2D" uid="uid://col654x6gkqb0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png" id="1_oei7t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctstj"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 1005, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_451f1"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 1809, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lfgm"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 1608, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wq6p"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 1407, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i325l"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 1206, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jph7q"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 1005, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap51r"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 804, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xjx5"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 603, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5k3i"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 402, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vqfq"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 201, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6j5a"] +atlas = ExtResource("1_oei7t") +region = Rect2(702, 0, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spgbh"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 1809, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muvpk"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 1608, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfyjx"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 1407, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd7fs"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 1206, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spici"] +atlas = ExtResource("1_oei7t") +region = Rect2(1053, 0, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsnba"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 804, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3buxh"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 603, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayjsv"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 402, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsgfc"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 201, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4p4m"] +atlas = ExtResource("1_oei7t") +region = Rect2(351, 0, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfe2s"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 1809, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m88j"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 1608, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo6wg"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 1407, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr0tm"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 1206, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7qoe"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 1005, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adq51"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 804, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp1km"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 603, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41d75"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 402, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ybsl"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 201, 350, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bey6b"] +atlas = ExtResource("1_oei7t") +region = Rect2(0, 0, 350, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctstj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_451f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lfgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wq6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i325l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jph7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap51r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xjx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5k3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vqfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6j5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spgbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muvpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfyjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd7fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spici") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsnba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3buxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayjsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsgfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4p4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfe2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m88j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo6wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr0tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7qoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adq51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp1km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41d75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ybsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bey6b") +}], +"loop": true, +"name": &"flamingstampede", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_flashfreeze.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_flashfreeze.tres new file mode 100644 index 0000000..eb125b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_flashfreeze.tres @@ -0,0 +1,287 @@ +[gd_resource type="SpriteFrames" load_steps=40 format=3 uid="uid://bqbm126y76pv"] + +[ext_resource type="Texture2D" uid="uid://bifiephwliq5m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png" id="1_jiac2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gre4o"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ork4"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmdae"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8q4y"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgm2"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoxbr"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqmbc"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdjj0"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnqje"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwhyc"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4p0n"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsr2e"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilsax"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prk5o"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kubtw"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m8xl"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht8au"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gweb"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7e5d"] +atlas = ExtResource("1_jiac2") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2erxa"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhapk"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubn7x"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr0h3"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8ro1"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk3g7"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th6mv"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ofhp"] +atlas = ExtResource("1_jiac2") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbe6n"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jawlw"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6ky3"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq8wi"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0cnw"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58hwr"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_paq78"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1af1p"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5agf"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pw5n"] +atlas = ExtResource("1_jiac2") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6f37"] +atlas = ExtResource("1_jiac2") +region = Rect2(202, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gre4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ork4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmdae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8q4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoxbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqmbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdjj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnqje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwhyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4p0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsr2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilsax") +}], +"loop": true, +"name": &"appear", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_prk5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kubtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m8xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht8au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gweb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7e5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2erxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhapk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubn7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr0h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8ro1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk3g7") +}], +"loop": true, +"name": &"disappear", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_th6mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ofhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbe6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jawlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6ky3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq8wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0cnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58hwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_paq78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1af1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5agf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pw5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6f37") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_fx_winterswake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_fx_winterswake.tres new file mode 100644 index 0000000..110eacc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/f6_fx_winterswake.tres @@ -0,0 +1,214 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://cbvmcdqhg2c87"] + +[ext_resource type="Texture2D" uid="uid://cwm0u65da07rf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png" id="1_kwhid"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iispj"] +atlas = ExtResource("1_kwhid") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udg8r"] +atlas = ExtResource("1_kwhid") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqy1w"] +atlas = ExtResource("1_kwhid") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tai2f"] +atlas = ExtResource("1_kwhid") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mib3q"] +atlas = ExtResource("1_kwhid") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82xxj"] +atlas = ExtResource("1_kwhid") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gt4a"] +atlas = ExtResource("1_kwhid") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lirb"] +atlas = ExtResource("1_kwhid") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gy6e"] +atlas = ExtResource("1_kwhid") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvyfg"] +atlas = ExtResource("1_kwhid") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qti1"] +atlas = ExtResource("1_kwhid") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg3f8"] +atlas = ExtResource("1_kwhid") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa422"] +atlas = ExtResource("1_kwhid") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc6nn"] +atlas = ExtResource("1_kwhid") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib7vy"] +atlas = ExtResource("1_kwhid") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2162"] +atlas = ExtResource("1_kwhid") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc2xe"] +atlas = ExtResource("1_kwhid") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7nbw"] +atlas = ExtResource("1_kwhid") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvuc6"] +atlas = ExtResource("1_kwhid") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5sq"] +atlas = ExtResource("1_kwhid") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0gye"] +atlas = ExtResource("1_kwhid") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3npjo"] +atlas = ExtResource("1_kwhid") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rfyq"] +atlas = ExtResource("1_kwhid") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnwuk"] +atlas = ExtResource("1_kwhid") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcwgf"] +atlas = ExtResource("1_kwhid") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba4cn"] +atlas = ExtResource("1_kwhid") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jndp"] +atlas = ExtResource("1_kwhid") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldmx4"] +atlas = ExtResource("1_kwhid") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcdc8"] +atlas = ExtResource("1_kwhid") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iispj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udg8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqy1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tai2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mib3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82xxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gt4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lirb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gy6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvyfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qti1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg3f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa422") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc6nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib7vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2162") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc2xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7nbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvuc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0gye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3npjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rfyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnwuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcwgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba4cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jndp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldmx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcdc8") +}], +"loop": true, +"name": &"winterswake", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_animalslash.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_animalslash.tres new file mode 100644 index 0000000..3d5298c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_animalslash.tres @@ -0,0 +1,221 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cesl33wht7ibc"] + +[ext_resource type="Texture2D" uid="uid://bwtbyr4ol3xls" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png" id="1_chb25"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ydds"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 404, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrly0"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 808, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksqxv"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 707, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8bt7"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 606, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlbi7"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 505, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avvyd"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 404, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kkes"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 303, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu85x"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 202, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cupwr"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 101, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vl4b"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 0, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj6wi"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 909, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jauit"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 808, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1duaw"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 707, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyvip"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 606, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh8kg"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 505, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwh67"] +atlas = ExtResource("1_chb25") +region = Rect2(302, 909, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onmoy"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 303, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amjbt"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 202, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kfui"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 101, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5o1n"] +atlas = ExtResource("1_chb25") +region = Rect2(151, 0, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1la6"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 909, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mweno"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 808, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj4w5"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 707, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s0te"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 606, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb5qk"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 505, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbmrg"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 404, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f32qo"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 303, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avm0m"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 202, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_godws"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 101, 150, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6eag"] +atlas = ExtResource("1_chb25") +region = Rect2(0, 0, 150, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ydds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrly0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksqxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8bt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlbi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avvyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kkes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu85x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cupwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vl4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj6wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jauit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1duaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyvip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh8kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwh67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onmoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amjbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kfui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5o1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1la6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mweno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj4w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s0te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb5qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbmrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f32qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avm0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_godws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6eag") +}], +"loop": true, +"name": &"animalslash", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifactbreak.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifactbreak.tres new file mode 100644 index 0000000..d17085e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifactbreak.tres @@ -0,0 +1,95 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://b6hfcn0y0pqjw"] + +[ext_resource type="Texture2D" uid="uid://cybvt2lqienm2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png" id="1_l67p7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd5tg"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_156tt"] +atlas = ExtResource("1_l67p7") +region = Rect2(129, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_743g8"] +atlas = ExtResource("1_l67p7") +region = Rect2(129, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbo5j"] +atlas = ExtResource("1_l67p7") +region = Rect2(129, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjjle"] +atlas = ExtResource("1_l67p7") +region = Rect2(129, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbyrm"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72qb1"] +atlas = ExtResource("1_l67p7") +region = Rect2(129, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbatr"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8abh3"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghl1q"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nawta"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j3y6"] +atlas = ExtResource("1_l67p7") +region = Rect2(0, 0, 128, 128) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd5tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_156tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_743g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbo5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjjle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbyrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72qb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbatr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8abh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghl1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nawta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j3y6") +}], +"loop": true, +"name": &"artifactbreak", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifacthit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifacthit.tres new file mode 100644 index 0000000..1bda5eb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_artifacthit.tres @@ -0,0 +1,95 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://76ibfrcjxb7d"] + +[ext_resource type="Texture2D" uid="uid://bwxt4nn56o4u1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png" id="1_h6w3s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_glmgv"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn0bd"] +atlas = ExtResource("1_h6w3s") +region = Rect2(129, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0wuh"] +atlas = ExtResource("1_h6w3s") +region = Rect2(129, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg85"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1uuu"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85s1v"] +atlas = ExtResource("1_h6w3s") +region = Rect2(129, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3auup"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_435v7"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5kup"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n87ib"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usegc"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t47vk"] +atlas = ExtResource("1_h6w3s") +region = Rect2(0, 0, 128, 128) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_glmgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn0bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0wuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1uuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85s1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3auup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_435v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5kup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n87ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usegc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t47vk") +}], +"loop": true, +"name": &"artifacthit", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_attackplus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_attackplus.tres new file mode 100644 index 0000000..73d3604 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_attackplus.tres @@ -0,0 +1,32 @@ +[gd_resource type="SpriteFrames" load_steps=5 format=3 uid="uid://mbsglscds1eg"] + +[ext_resource type="Texture2D" uid="uid://bpnbidjtsfwqq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png" id="1_y0s5r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hll6"] +atlas = ExtResource("1_y0s5r") +region = Rect2(33, 49, 16, 43) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk7f3"] +atlas = ExtResource("1_y0s5r") +region = Rect2(0, 49, 33, 47) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g764h"] +atlas = ExtResource("1_y0s5r") +region = Rect2(0, 0, 50, 49) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hll6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk7f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g764h") +}], +"loop": true, +"name": &"attackplus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamfire.tres new file mode 100644 index 0000000..69368f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamfire.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://cc6ikkeh60r5f"] + +[ext_resource type="Texture2D" uid="uid://7x4c1enw2ujw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png" id="1_c0b6c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7ruk"] +atlas = ExtResource("1_c0b6c") +region = Rect2(423, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1mex"] +atlas = ExtResource("1_c0b6c") +region = Rect2(705, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtv11"] +atlas = ExtResource("1_c0b6c") +region = Rect2(705, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqdm3"] +atlas = ExtResource("1_c0b6c") +region = Rect2(705, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaif3"] +atlas = ExtResource("1_c0b6c") +region = Rect2(705, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v681i"] +atlas = ExtResource("1_c0b6c") +region = Rect2(705, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brogw"] +atlas = ExtResource("1_c0b6c") +region = Rect2(564, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ds2b"] +atlas = ExtResource("1_c0b6c") +region = Rect2(564, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21e3k"] +atlas = ExtResource("1_c0b6c") +region = Rect2(564, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m436k"] +atlas = ExtResource("1_c0b6c") +region = Rect2(564, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gks25"] +atlas = ExtResource("1_c0b6c") +region = Rect2(564, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei1v4"] +atlas = ExtResource("1_c0b6c") +region = Rect2(423, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5cab"] +atlas = ExtResource("1_c0b6c") +region = Rect2(423, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hvbe"] +atlas = ExtResource("1_c0b6c") +region = Rect2(423, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo2ro"] +atlas = ExtResource("1_c0b6c") +region = Rect2(423, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlbq3"] +atlas = ExtResource("1_c0b6c") +region = Rect2(846, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spncw"] +atlas = ExtResource("1_c0b6c") +region = Rect2(282, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24jmx"] +atlas = ExtResource("1_c0b6c") +region = Rect2(282, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7n2q"] +atlas = ExtResource("1_c0b6c") +region = Rect2(282, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dvbo"] +atlas = ExtResource("1_c0b6c") +region = Rect2(282, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pyr2"] +atlas = ExtResource("1_c0b6c") +region = Rect2(282, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xultv"] +atlas = ExtResource("1_c0b6c") +region = Rect2(141, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qat05"] +atlas = ExtResource("1_c0b6c") +region = Rect2(141, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0cu"] +atlas = ExtResource("1_c0b6c") +region = Rect2(141, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frpoa"] +atlas = ExtResource("1_c0b6c") +region = Rect2(141, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaj2o"] +atlas = ExtResource("1_c0b6c") +region = Rect2(141, 0, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bckj7"] +atlas = ExtResource("1_c0b6c") +region = Rect2(0, 1524, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xauoc"] +atlas = ExtResource("1_c0b6c") +region = Rect2(0, 1143, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rbcd"] +atlas = ExtResource("1_c0b6c") +region = Rect2(0, 762, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f6iv"] +atlas = ExtResource("1_c0b6c") +region = Rect2(0, 381, 140, 380) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5pjn"] +atlas = ExtResource("1_c0b6c") +region = Rect2(0, 0, 140, 380) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7ruk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1mex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtv11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqdm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaif3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v681i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brogw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ds2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21e3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m436k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gks25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei1v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5cab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hvbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo2ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlbq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spncw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24jmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7n2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dvbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pyr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xultv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qat05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de0cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frpoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaj2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bckj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xauoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rbcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f6iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5pjn") +}], +"loop": true, +"name": &"beamfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamlaser.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamlaser.tres new file mode 100644 index 0000000..f57a534 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamlaser.tres @@ -0,0 +1,242 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://cx6g6sbnflc03"] + +[ext_resource type="Texture2D" uid="uid://b3ao1v5a86fxt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png" id="1_ky3at"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_re55s"] +atlas = ExtResource("1_ky3at") +region = Rect2(648, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd0rl"] +atlas = ExtResource("1_ky3at") +region = Rect2(1215, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsvgb"] +atlas = ExtResource("1_ky3at") +region = Rect2(1215, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s02if"] +atlas = ExtResource("1_ky3at") +region = Rect2(1134, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwono"] +atlas = ExtResource("1_ky3at") +region = Rect2(1134, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5sfp"] +atlas = ExtResource("1_ky3at") +region = Rect2(1053, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khdra"] +atlas = ExtResource("1_ky3at") +region = Rect2(1053, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpabv"] +atlas = ExtResource("1_ky3at") +region = Rect2(972, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c43o"] +atlas = ExtResource("1_ky3at") +region = Rect2(972, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3g4u"] +atlas = ExtResource("1_ky3at") +region = Rect2(891, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbwqk"] +atlas = ExtResource("1_ky3at") +region = Rect2(891, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swd6c"] +atlas = ExtResource("1_ky3at") +region = Rect2(810, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw06f"] +atlas = ExtResource("1_ky3at") +region = Rect2(810, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm8eb"] +atlas = ExtResource("1_ky3at") +region = Rect2(729, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5owkm"] +atlas = ExtResource("1_ky3at") +region = Rect2(729, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahl87"] +atlas = ExtResource("1_ky3at") +region = Rect2(648, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvdrv"] +atlas = ExtResource("1_ky3at") +region = Rect2(1296, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12vco"] +atlas = ExtResource("1_ky3at") +region = Rect2(567, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll2xj"] +atlas = ExtResource("1_ky3at") +region = Rect2(567, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m1ho"] +atlas = ExtResource("1_ky3at") +region = Rect2(486, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87dv7"] +atlas = ExtResource("1_ky3at") +region = Rect2(486, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr3dv"] +atlas = ExtResource("1_ky3at") +region = Rect2(405, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb1un"] +atlas = ExtResource("1_ky3at") +region = Rect2(405, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foc74"] +atlas = ExtResource("1_ky3at") +region = Rect2(324, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxblk"] +atlas = ExtResource("1_ky3at") +region = Rect2(324, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmhxm"] +atlas = ExtResource("1_ky3at") +region = Rect2(243, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldrg2"] +atlas = ExtResource("1_ky3at") +region = Rect2(243, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll87b"] +atlas = ExtResource("1_ky3at") +region = Rect2(162, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0sdf"] +atlas = ExtResource("1_ky3at") +region = Rect2(162, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20c0m"] +atlas = ExtResource("1_ky3at") +region = Rect2(81, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxonc"] +atlas = ExtResource("1_ky3at") +region = Rect2(81, 0, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1q1g"] +atlas = ExtResource("1_ky3at") +region = Rect2(0, 351, 80, 350) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coj78"] +atlas = ExtResource("1_ky3at") +region = Rect2(0, 0, 80, 350) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_re55s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd0rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsvgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s02if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwono") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5sfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khdra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpabv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c43o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3g4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbwqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swd6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw06f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm8eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5owkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahl87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvdrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12vco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll2xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m1ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87dv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr3dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb1un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foc74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxblk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmhxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldrg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll87b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0sdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20c0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxonc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1q1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coj78") +}], +"loop": true, +"name": &"beamlaser", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamtesla.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamtesla.tres new file mode 100644 index 0000000..00c3e6d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_beamtesla.tres @@ -0,0 +1,235 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://dipsiijxhxbv0"] + +[ext_resource type="Texture2D" uid="uid://btmblffimgqk0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png" id="1_35ggi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dflbd"] +atlas = ExtResource("1_35ggi") +region = Rect2(777, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug78t"] +atlas = ExtResource("1_35ggi") +region = Rect2(1665, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ovo"] +atlas = ExtResource("1_35ggi") +region = Rect2(1554, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbaih"] +atlas = ExtResource("1_35ggi") +region = Rect2(1554, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xahnk"] +atlas = ExtResource("1_35ggi") +region = Rect2(1443, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qis1v"] +atlas = ExtResource("1_35ggi") +region = Rect2(1443, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f45su"] +atlas = ExtResource("1_35ggi") +region = Rect2(1332, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbese"] +atlas = ExtResource("1_35ggi") +region = Rect2(1332, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tmoe"] +atlas = ExtResource("1_35ggi") +region = Rect2(1221, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ulr"] +atlas = ExtResource("1_35ggi") +region = Rect2(1221, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ggqr"] +atlas = ExtResource("1_35ggi") +region = Rect2(1110, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk6y4"] +atlas = ExtResource("1_35ggi") +region = Rect2(1110, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1kfg"] +atlas = ExtResource("1_35ggi") +region = Rect2(999, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cafuh"] +atlas = ExtResource("1_35ggi") +region = Rect2(999, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r24sg"] +atlas = ExtResource("1_35ggi") +region = Rect2(888, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cai3i"] +atlas = ExtResource("1_35ggi") +region = Rect2(888, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vypj6"] +atlas = ExtResource("1_35ggi") +region = Rect2(1665, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qgcm"] +atlas = ExtResource("1_35ggi") +region = Rect2(777, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6fnp"] +atlas = ExtResource("1_35ggi") +region = Rect2(666, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hver"] +atlas = ExtResource("1_35ggi") +region = Rect2(666, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y753h"] +atlas = ExtResource("1_35ggi") +region = Rect2(555, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hckww"] +atlas = ExtResource("1_35ggi") +region = Rect2(555, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn8ex"] +atlas = ExtResource("1_35ggi") +region = Rect2(444, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr7bo"] +atlas = ExtResource("1_35ggi") +region = Rect2(444, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qffhv"] +atlas = ExtResource("1_35ggi") +region = Rect2(333, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn37l"] +atlas = ExtResource("1_35ggi") +region = Rect2(333, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qb2m"] +atlas = ExtResource("1_35ggi") +region = Rect2(222, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueyyg"] +atlas = ExtResource("1_35ggi") +region = Rect2(222, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fln3i"] +atlas = ExtResource("1_35ggi") +region = Rect2(111, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdp3b"] +atlas = ExtResource("1_35ggi") +region = Rect2(111, 0, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbpsp"] +atlas = ExtResource("1_35ggi") +region = Rect2(0, 361, 110, 360) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chklk"] +atlas = ExtResource("1_35ggi") +region = Rect2(0, 0, 110, 360) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dflbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug78t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ovo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbaih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xahnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qis1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f45su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbese") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tmoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ulr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ggqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk6y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1kfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cafuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r24sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cai3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vypj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qgcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6fnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hver") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y753h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hckww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn8ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr7bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qffhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn37l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qb2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueyyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fln3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdp3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbpsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chklk") +}], +"loop": true, +"name": &"beamtesla", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bigfirehitspark.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bigfirehitspark.tres new file mode 100644 index 0000000..12fa704 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bigfirehitspark.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://c5pxof4k15dnb"] + +[ext_resource type="Texture2D" uid="uid://bpq1jr5kbn1i7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png" id="1_gdkka"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_53y2h"] +atlas = ExtResource("1_gdkka") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udtxq"] +atlas = ExtResource("1_gdkka") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_det4k"] +atlas = ExtResource("1_gdkka") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsbxa"] +atlas = ExtResource("1_gdkka") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlo64"] +atlas = ExtResource("1_gdkka") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxwp7"] +atlas = ExtResource("1_gdkka") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsww3"] +atlas = ExtResource("1_gdkka") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ft7"] +atlas = ExtResource("1_gdkka") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_53y2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udtxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_det4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsbxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlo64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxwp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsww3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ft7") +}], +"loop": true, +"name": &"bigfirehitspark", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladebreaker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladebreaker.tres new file mode 100644 index 0000000..0b4cabb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladebreaker.tres @@ -0,0 +1,18 @@ +[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://vkw7f0r3rcwo"] + +[ext_resource type="Texture2D" uid="uid://cka6pabbi7syq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png" id="1_sur65"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dfoh"] +atlas = ExtResource("1_sur65") +region = Rect2(0, 0, 18, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dfoh") +}], +"loop": true, +"name": &"bladebreaker", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladestorm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladestorm.tres new file mode 100644 index 0000000..357cade --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bladestorm.tres @@ -0,0 +1,95 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://co00vvtaeukar"] + +[ext_resource type="Texture2D" uid="uid://j3isesg7yqlr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png" id="1_ymuyl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcyk5"] +atlas = ExtResource("1_ymuyl") +region = Rect2(63, 0, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsnqq"] +atlas = ExtResource("1_ymuyl") +region = Rect2(126, 0, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul7vb"] +atlas = ExtResource("1_ymuyl") +region = Rect2(63, 196, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl6lg"] +atlas = ExtResource("1_ymuyl") +region = Rect2(63, 147, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqm8d"] +atlas = ExtResource("1_ymuyl") +region = Rect2(63, 98, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jakul"] +atlas = ExtResource("1_ymuyl") +region = Rect2(63, 49, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr1d0"] +atlas = ExtResource("1_ymuyl") +region = Rect2(126, 49, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_revox"] +atlas = ExtResource("1_ymuyl") +region = Rect2(0, 196, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lyt0"] +atlas = ExtResource("1_ymuyl") +region = Rect2(0, 147, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkm0c"] +atlas = ExtResource("1_ymuyl") +region = Rect2(0, 98, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmj0u"] +atlas = ExtResource("1_ymuyl") +region = Rect2(0, 49, 62, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx2l6"] +atlas = ExtResource("1_ymuyl") +region = Rect2(0, 0, 62, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcyk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsnqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul7vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl6lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqm8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jakul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_revox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lyt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkm0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmj0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx2l6") +}], +"loop": true, +"name": &"bladestorm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blood_explosion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blood_explosion.tres new file mode 100644 index 0000000..ffba578 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blood_explosion.tres @@ -0,0 +1,355 @@ +[gd_resource type="SpriteFrames" load_steps=49 format=3 uid="uid://bebos2bymex77"] + +[ext_resource type="Texture2D" uid="uid://cke20vvsutcgt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png" id="1_k5ljv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaf2v"] +atlas = ExtResource("1_k5ljv") +region = Rect2(329, 98, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d70d2"] +atlas = ExtResource("1_k5ljv") +region = Rect2(0, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctcm1"] +atlas = ExtResource("1_k5ljv") +region = Rect2(324, 49, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arnla"] +atlas = ExtResource("1_k5ljv") +region = Rect2(43, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw01a"] +atlas = ExtResource("1_k5ljv") +region = Rect2(86, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhwwl"] +atlas = ExtResource("1_k5ljv") +region = Rect2(129, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xydcs"] +atlas = ExtResource("1_k5ljv") +region = Rect2(172, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8033"] +atlas = ExtResource("1_k5ljv") +region = Rect2(344, 147, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rysyq"] +atlas = ExtResource("1_k5ljv") +region = Rect2(344, 196, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w7gk"] +atlas = ExtResource("1_k5ljv") +region = Rect2(324, 0, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4bpy"] +atlas = ExtResource("1_k5ljv") +region = Rect2(301, 183, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ysi"] +atlas = ExtResource("1_k5ljv") +region = Rect2(215, 201, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kxfm"] +atlas = ExtResource("1_k5ljv") +region = Rect2(243, 134, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrhas"] +atlas = ExtResource("1_k5ljv") +region = Rect2(258, 183, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovc71"] +atlas = ExtResource("1_k5ljv") +region = Rect2(286, 134, 42, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc1wa"] +atlas = ExtResource("1_k5ljv") +region = Rect2(441, 31, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aoe7"] +atlas = ExtResource("1_k5ljv") +region = Rect2(424, 195, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krox8"] +atlas = ExtResource("1_k5ljv") +region = Rect2(441, 0, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnl1s"] +atlas = ExtResource("1_k5ljv") +region = Rect2(461, 155, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lfat"] +atlas = ExtResource("1_k5ljv") +region = Rect2(461, 124, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5impf"] +atlas = ExtResource("1_k5ljv") +region = Rect2(461, 93, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wum4"] +atlas = ExtResource("1_k5ljv") +region = Rect2(446, 62, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48m05"] +atlas = ExtResource("1_k5ljv") +region = Rect2(459, 195, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf0wp"] +atlas = ExtResource("1_k5ljv") +region = Rect2(476, 31, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00iic"] +atlas = ExtResource("1_k5ljv") +region = Rect2(476, 0, 34, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf65a"] +atlas = ExtResource("1_k5ljv") +region = Rect2(0, 0, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox42r"] +atlas = ExtResource("1_k5ljv") +region = Rect2(0, 67, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqfo6"] +atlas = ExtResource("1_k5ljv") +region = Rect2(0, 134, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmwqo"] +atlas = ExtResource("1_k5ljv") +region = Rect2(81, 0, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gji8w"] +atlas = ExtResource("1_k5ljv") +region = Rect2(81, 67, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajvau"] +atlas = ExtResource("1_k5ljv") +region = Rect2(243, 67, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ofb0"] +atlas = ExtResource("1_k5ljv") +region = Rect2(162, 0, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r2re"] +atlas = ExtResource("1_k5ljv") +region = Rect2(162, 67, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmt4t"] +atlas = ExtResource("1_k5ljv") +region = Rect2(162, 134, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpb65"] +atlas = ExtResource("1_k5ljv") +region = Rect2(243, 0, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btkca"] +atlas = ExtResource("1_k5ljv") +region = Rect2(81, 134, 80, 66) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04enf"] +atlas = ExtResource("1_k5ljv") +region = Rect2(424, 156, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no7df"] +atlas = ExtResource("1_k5ljv") +region = Rect2(367, 39, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbayk"] +atlas = ExtResource("1_k5ljv") +region = Rect2(372, 78, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcclq"] +atlas = ExtResource("1_k5ljv") +region = Rect2(424, 117, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxnpo"] +atlas = ExtResource("1_k5ljv") +region = Rect2(409, 78, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc1qq"] +atlas = ExtResource("1_k5ljv") +region = Rect2(404, 39, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvkfl"] +atlas = ExtResource("1_k5ljv") +region = Rect2(404, 0, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htyj2"] +atlas = ExtResource("1_k5ljv") +region = Rect2(387, 195, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpw44"] +atlas = ExtResource("1_k5ljv") +region = Rect2(387, 156, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxndp"] +atlas = ExtResource("1_k5ljv") +region = Rect2(387, 117, 36, 38) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uyh1"] +atlas = ExtResource("1_k5ljv") +region = Rect2(367, 0, 36, 38) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaf2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d70d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctcm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arnla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw01a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhwwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xydcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8033") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rysyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w7gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4bpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ysi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kxfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrhas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovc71") +}], +"loop": true, +"name": &"bloodbig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc1wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aoe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krox8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnl1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lfat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5impf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wum4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48m05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf0wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00iic") +}], +"loop": true, +"name": &"bloodmedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf65a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox42r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqfo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmwqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gji8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajvau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ofb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r2re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmt4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpb65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btkca") +}], +"loop": true, +"name": &"explosionbig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_04enf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no7df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbayk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcclq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxnpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc1qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvkfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htyj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpw44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxndp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uyh1") +}], +"loop": true, +"name": &"explosionmedium", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bloodground.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bloodground.tres new file mode 100644 index 0000000..3a95ceb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bloodground.tres @@ -0,0 +1,278 @@ +[gd_resource type="SpriteFrames" load_steps=38 format=3 uid="uid://duosm7t01wxht"] + +[ext_resource type="Texture2D" uid="uid://bu8buso38fpo5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png" id="1_k5ddm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dalre"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 232, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhjlv"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 180, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oe8m"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 201, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxglm"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 222, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4yur"] +atlas = ExtResource("1_k5ddm") +region = Rect2(94, 0, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pauqg"] +atlas = ExtResource("1_k5ddm") +region = Rect2(94, 21, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8kgl"] +atlas = ExtResource("1_k5ddm") +region = Rect2(94, 42, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg6rh"] +atlas = ExtResource("1_k5ddm") +region = Rect2(94, 63, 38, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jydx8"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 100, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3phww"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 125, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63ws7"] +atlas = ExtResource("1_k5ddm") +region = Rect2(129, 205, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtus4"] +atlas = ExtResource("1_k5ddm") +region = Rect2(129, 180, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vefvx"] +atlas = ExtResource("1_k5ddm") +region = Rect2(129, 230, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37qxh"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 0, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fu3x"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 25, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsvfs"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 50, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efhm0"] +atlas = ExtResource("1_k5ddm") +region = Rect2(133, 75, 34, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xve4r"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 149, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_583wx"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 118, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1lly"] +atlas = ExtResource("1_k5ddm") +region = Rect2(90, 87, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysgqy"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 211, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n455h"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 180, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vujat"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 149, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32dpn"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 118, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t3al"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 87, 42, 30) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stuya"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 145, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd7c1"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 29, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87gh4"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 0, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4eeo"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 203, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc7gm"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 174, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da8ga"] +atlas = ExtResource("1_k5ddm") +region = Rect2(47, 58, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmtg7"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 116, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmxet"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 87, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obdko"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 58, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xur55"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 29, 46, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3j6v"] +atlas = ExtResource("1_k5ddm") +region = Rect2(0, 0, 46, 28) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dalre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhjlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oe8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxglm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4yur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pauqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8kgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg6rh") +}], +"loop": true, +"name": &"bloodground", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jydx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3phww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63ws7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtus4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vefvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37qxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fu3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsvfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efhm0") +}], +"loop": true, +"name": &"bloodground2", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xve4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_583wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1lly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysgqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n455h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vujat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32dpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t3al") +}], +"loop": true, +"name": &"bloodground3", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_stuya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd7c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87gh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4eeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc7gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da8ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmtg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmxet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obdko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xur55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3j6v") +}], +"loop": true, +"name": &"bloodground4", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blueplasma_vertical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blueplasma_vertical.tres new file mode 100644 index 0000000..b95f3a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_blueplasma_vertical.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://bmpaw638n665k"] + +[ext_resource type="Texture2D" uid="uid://k8h1eat6ab5p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png" id="1_0bdck"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5blh"] +atlas = ExtResource("1_0bdck") +region = Rect2(0, 147, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r6pm"] +atlas = ExtResource("1_0bdck") +region = Rect2(47, 49, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eryiy"] +atlas = ExtResource("1_0bdck") +region = Rect2(47, 0, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2p0s"] +atlas = ExtResource("1_0bdck") +region = Rect2(0, 196, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4du2"] +atlas = ExtResource("1_0bdck") +region = Rect2(47, 98, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npa3m"] +atlas = ExtResource("1_0bdck") +region = Rect2(0, 98, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vyab"] +atlas = ExtResource("1_0bdck") +region = Rect2(0, 49, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0jic"] +atlas = ExtResource("1_0bdck") +region = Rect2(0, 0, 46, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5blh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r6pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eryiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2p0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4du2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npa3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vyab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0jic") +}], +"loop": true, +"name": &"vertical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bluewatersplash.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bluewatersplash.tres new file mode 100644 index 0000000..5c0ce82 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bluewatersplash.tres @@ -0,0 +1,74 @@ +[gd_resource type="SpriteFrames" load_steps=11 format=3 uid="uid://cfqmu0636b5fg"] + +[ext_resource type="Texture2D" uid="uid://dpxk0g5nvtfjl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png" id="1_x5i5i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3is7g"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 132, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsbh7"] +atlas = ExtResource("1_x5i5i") +region = Rect2(45, 0, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykksr"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 198, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swrww"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 165, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jnq3"] +atlas = ExtResource("1_x5i5i") +region = Rect2(45, 33, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ivy"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 99, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abnk1"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 66, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0e4y"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 33, 44, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox5sr"] +atlas = ExtResource("1_x5i5i") +region = Rect2(0, 0, 44, 32) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3is7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsbh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykksr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swrww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jnq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ivy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abnk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0e4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox5sr") +}], +"loop": true, +"name": &"bluewatersplash", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bouldersphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bouldersphere.tres new file mode 100644 index 0000000..95c56a6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_bouldersphere.tres @@ -0,0 +1,256 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://cu2375dh8sxkl"] + +[ext_resource type="Texture2D" uid="uid://dhpfhjrmaxtnw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png" id="1_krjx4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7737"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 1768, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1l8c"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 1326, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgg0j"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 1105, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gqqb"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 884, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xju57"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 663, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5l58"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 442, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot3jw"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 221, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cduo7"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 0, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjn4x"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 1768, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quloh"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 1547, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw3kq"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 1326, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm1vu"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 1105, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lln4d"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 884, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr8x3"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 663, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s4cw"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 442, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrnuw"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 221, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu2ru"] +atlas = ExtResource("1_krjx4") +region = Rect2(602, 0, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lia8"] +atlas = ExtResource("1_krjx4") +region = Rect2(903, 1547, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyy2m"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 1547, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5ovl"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 1326, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bifwg"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 1105, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q02a"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 884, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8bhb"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 663, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0e6u"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 442, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftfv7"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 221, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a4bn"] +atlas = ExtResource("1_krjx4") +region = Rect2(301, 0, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn8g8"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 1768, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq7ii"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 1547, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi34r"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 1326, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fltly"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 1105, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0je4"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 884, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ne1"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 663, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyr5q"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 442, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em261"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 221, 300, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n35md"] +atlas = ExtResource("1_krjx4") +region = Rect2(0, 0, 300, 220) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7737") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1l8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgg0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gqqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xju57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5l58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot3jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cduo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjn4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quloh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw3kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm1vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lln4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr8x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s4cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu2ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lia8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyy2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5ovl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bifwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q02a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8bhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0e6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftfv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a4bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn8g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq7ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi34r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fltly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0je4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ne1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyr5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em261") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n35md") +}], +"loop": true, +"name": &"bouldersphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_buff.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_buff.tres new file mode 100644 index 0000000..c3bf142 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_buff.tres @@ -0,0 +1,95 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://dxu5ssqvabtxw"] + +[ext_resource type="Texture2D" uid="uid://by2a6yycxxohg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png" id="1_d4fhy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vab0x"] +atlas = ExtResource("1_d4fhy") +region = Rect2(47, 57, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jb61"] +atlas = ExtResource("1_d4fhy") +region = Rect2(94, 114, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igddj"] +atlas = ExtResource("1_d4fhy") +region = Rect2(94, 57, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04l31"] +atlas = ExtResource("1_d4fhy") +region = Rect2(94, 0, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbb0u"] +atlas = ExtResource("1_d4fhy") +region = Rect2(47, 171, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt344"] +atlas = ExtResource("1_d4fhy") +region = Rect2(47, 114, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vifh"] +atlas = ExtResource("1_d4fhy") +region = Rect2(94, 171, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eouv"] +atlas = ExtResource("1_d4fhy") +region = Rect2(47, 0, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u01c0"] +atlas = ExtResource("1_d4fhy") +region = Rect2(0, 171, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpain"] +atlas = ExtResource("1_d4fhy") +region = Rect2(0, 114, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mup0h"] +atlas = ExtResource("1_d4fhy") +region = Rect2(0, 57, 46, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0qsp"] +atlas = ExtResource("1_d4fhy") +region = Rect2(0, 0, 46, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vab0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jb61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igddj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04l31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbb0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt344") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eouv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u01c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpain") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mup0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0qsp") +}], +"loop": true, +"name": &"buff", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_carddraw.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_carddraw.tres new file mode 100644 index 0000000..d60f762 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_carddraw.tres @@ -0,0 +1,207 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://ciqek8xpcviif"] + +[ext_resource type="Texture2D" uid="uid://d1gri81jlpgmo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png" id="1_oigmk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gnew"] +atlas = ExtResource("1_oigmk") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne412"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dolc"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghavk"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hhu3"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc41s"] +atlas = ExtResource("1_oigmk") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yo1t"] +atlas = ExtResource("1_oigmk") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnttt"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk42q"] +atlas = ExtResource("1_oigmk") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axylc"] +atlas = ExtResource("1_oigmk") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amrfk"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfdit"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pg4h"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgkk3"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78snf"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s56y"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3rr4"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd2n0"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovyds"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgalw"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipjy3"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1ghc"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7cif"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ige00"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amas0"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlh1q"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnq3k"] +atlas = ExtResource("1_oigmk") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ut88"] +atlas = ExtResource("1_oigmk") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gnew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne412") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dolc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghavk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hhu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc41s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yo1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnttt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk42q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axylc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amrfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfdit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pg4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgkk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78snf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s56y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3rr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd2n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovyds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgalw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipjy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1ghc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7cif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ige00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amas0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlh1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnq3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ut88") +}], +"loop": true, +"name": &"carddraw", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_chainlightning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_chainlightning.tres new file mode 100644 index 0000000..142f406 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_chainlightning.tres @@ -0,0 +1,53 @@ +[gd_resource type="SpriteFrames" load_steps=8 format=3 uid="uid://rpo6vf1aams3"] + +[ext_resource type="Texture2D" uid="uid://s3td21n1bg2x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png" id="1_v7s46"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aftqo"] +atlas = ExtResource("1_v7s46") +region = Rect2(0, 34, 48, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jlko"] +atlas = ExtResource("1_v7s46") +region = Rect2(49, 17, 48, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xel3e"] +atlas = ExtResource("1_v7s46") +region = Rect2(49, 0, 48, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg2x"] +atlas = ExtResource("1_v7s46") +region = Rect2(49, 34, 48, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va2lt"] +atlas = ExtResource("1_v7s46") +region = Rect2(0, 17, 48, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i528h"] +atlas = ExtResource("1_v7s46") +region = Rect2(0, 0, 48, 16) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aftqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jlko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xel3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va2lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i528h") +}], +"loop": true, +"name": &"chainlightningblue", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_clawslash.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_clawslash.tres new file mode 100644 index 0000000..bb86c49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_clawslash.tres @@ -0,0 +1,46 @@ +[gd_resource type="SpriteFrames" load_steps=7 format=3 uid="uid://cyy5ieqb20cdc"] + +[ext_resource type="Texture2D" uid="uid://div3d3vjwgjcx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png" id="1_5j1hq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pora6"] +atlas = ExtResource("1_5j1hq") +region = Rect2(0, 98, 56, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x4cm"] +atlas = ExtResource("1_5j1hq") +region = Rect2(0, 147, 56, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn8gv"] +atlas = ExtResource("1_5j1hq") +region = Rect2(0, 196, 56, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24m33"] +atlas = ExtResource("1_5j1hq") +region = Rect2(0, 49, 56, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi7ts"] +atlas = ExtResource("1_5j1hq") +region = Rect2(0, 0, 56, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pora6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x4cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn8gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24m33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi7ts") +}], +"loop": true, +"name": &"clawslash", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_cleanse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_cleanse.tres new file mode 100644 index 0000000..cfb9b68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_cleanse.tres @@ -0,0 +1,72 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://uqd6di2kxn2x"] + +[ext_resource type="Texture2D" uid="uid://cjegsrqrafuau" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png" id="1_3grys"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu1f5"] +atlas = ExtResource("1_3grys") +region = Rect2(72, 78, 65, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5wkf"] +atlas = ExtResource("1_3grys") +region = Rect2(76, 28, 46, 12) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o0xa"] +atlas = ExtResource("1_3grys") +region = Rect2(74, 54, 60, 18) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yo5f"] +atlas = ExtResource("1_3grys") +region = Rect2(0, 100, 70, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqmbd"] +atlas = ExtResource("1_3grys") +region = Rect2(0, 78, 72, 22) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs20u"] +atlas = ExtResource("1_3grys") +region = Rect2(0, 54, 74, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2fse"] +atlas = ExtResource("1_3grys") +region = Rect2(0, 28, 76, 26) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnj2h"] +atlas = ExtResource("1_3grys") +region = Rect2(0, 0, 78, 28) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu1f5") +}], +"loop": true, +"name": &"burst", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5wkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o0xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yo5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqmbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs20u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2fse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnj2h") +}], +"loop": true, +"name": &"ripples", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collision.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collision.tres new file mode 100644 index 0000000..8f810bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collision.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://crc5ugd0pske8"] + +[ext_resource type="Texture2D" uid="uid://dvokpqh8fbjjx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png" id="1_wv4ms"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jda8e"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 285, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgbth"] +atlas = ExtResource("1_wv4ms") +region = Rect2(243, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyc3h"] +atlas = ExtResource("1_wv4ms") +region = Rect2(243, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i7fi"] +atlas = ExtResource("1_wv4ms") +region = Rect2(243, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrcsu"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 399, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx5iv"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 342, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma3tj"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 285, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tov20"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 228, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkpip"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c778"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uftdr"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebblq"] +atlas = ExtResource("1_wv4ms") +region = Rect2(162, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds33b"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 399, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6yxe"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 342, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujh7p"] +atlas = ExtResource("1_wv4ms") +region = Rect2(243, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk1bv"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 228, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6e65"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhgra"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkn1k"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m4tu"] +atlas = ExtResource("1_wv4ms") +region = Rect2(81, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tdms"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 399, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5g62"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 342, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thxpc"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 285, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8j5n"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 228, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4pho"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqxja"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahbs1"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2m13"] +atlas = ExtResource("1_wv4ms") +region = Rect2(0, 0, 80, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jda8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgbth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyc3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i7fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrcsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx5iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma3tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tov20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkpip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c778") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uftdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebblq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds33b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6yxe") +}], +"loop": true, +"name": &"collisionsparks", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujh7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk1bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6e65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhgra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkn1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m4tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tdms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5g62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thxpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8j5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4pho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqxja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahbs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2m13") +}], +"loop": true, +"name": &"collisionsparksblue", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkgreen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkgreen.tres new file mode 100644 index 0000000..0093894 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkgreen.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://67p1x1cx824s"] + +[ext_resource type="Texture2D" uid="uid://bfcjpduea3grd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png" id="1_fake0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a3px"] +atlas = ExtResource("1_fake0") +region = Rect2(81, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51xbs"] +atlas = ExtResource("1_fake0") +region = Rect2(243, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb264"] +atlas = ExtResource("1_fake0") +region = Rect2(162, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f26h"] +atlas = ExtResource("1_fake0") +region = Rect2(162, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0da08"] +atlas = ExtResource("1_fake0") +region = Rect2(162, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7lkh"] +atlas = ExtResource("1_fake0") +region = Rect2(162, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6oqv"] +atlas = ExtResource("1_fake0") +region = Rect2(81, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my72t"] +atlas = ExtResource("1_fake0") +region = Rect2(243, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsh7u"] +atlas = ExtResource("1_fake0") +region = Rect2(81, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vokot"] +atlas = ExtResource("1_fake0") +region = Rect2(81, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1vep"] +atlas = ExtResource("1_fake0") +region = Rect2(0, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnp83"] +atlas = ExtResource("1_fake0") +region = Rect2(0, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ter5c"] +atlas = ExtResource("1_fake0") +region = Rect2(0, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3gw6"] +atlas = ExtResource("1_fake0") +region = Rect2(0, 0, 80, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a3px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51xbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb264") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f26h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0da08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7lkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6oqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my72t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsh7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vokot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1vep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnp83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ter5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3gw6") +}], +"loop": true, +"name": &"collisionsparksgreen", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkpurple.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkpurple.tres new file mode 100644 index 0000000..53dc89c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkpurple.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://cm8hwlfv3iifv"] + +[ext_resource type="Texture2D" uid="uid://ykfo8dmdq06n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png" id="1_euywe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnykj"] +atlas = ExtResource("1_euywe") +region = Rect2(81, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6s1d"] +atlas = ExtResource("1_euywe") +region = Rect2(243, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjjp8"] +atlas = ExtResource("1_euywe") +region = Rect2(162, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq3da"] +atlas = ExtResource("1_euywe") +region = Rect2(162, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrk2b"] +atlas = ExtResource("1_euywe") +region = Rect2(162, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnn4x"] +atlas = ExtResource("1_euywe") +region = Rect2(162, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_482o7"] +atlas = ExtResource("1_euywe") +region = Rect2(81, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdltb"] +atlas = ExtResource("1_euywe") +region = Rect2(243, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjx6j"] +atlas = ExtResource("1_euywe") +region = Rect2(81, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdubg"] +atlas = ExtResource("1_euywe") +region = Rect2(81, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8qu0"] +atlas = ExtResource("1_euywe") +region = Rect2(0, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yt2h"] +atlas = ExtResource("1_euywe") +region = Rect2(0, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqquu"] +atlas = ExtResource("1_euywe") +region = Rect2(0, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vcvk"] +atlas = ExtResource("1_euywe") +region = Rect2(0, 0, 80, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnykj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6s1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjjp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq3da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrk2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnn4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_482o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdltb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjx6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdubg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8qu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yt2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqquu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vcvk") +}], +"loop": true, +"name": &"collisionsparksrpurple", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkred.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkred.tres new file mode 100644 index 0000000..67757c4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_collisionsparkred.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://1evfhmslvygj"] + +[ext_resource type="Texture2D" uid="uid://csdo6swyu8wdg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png" id="1_jla8c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_58bxm"] +atlas = ExtResource("1_jla8c") +region = Rect2(81, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of756"] +atlas = ExtResource("1_jla8c") +region = Rect2(243, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik6bk"] +atlas = ExtResource("1_jla8c") +region = Rect2(162, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obsjc"] +atlas = ExtResource("1_jla8c") +region = Rect2(162, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rw72"] +atlas = ExtResource("1_jla8c") +region = Rect2(162, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdabs"] +atlas = ExtResource("1_jla8c") +region = Rect2(162, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5wys"] +atlas = ExtResource("1_jla8c") +region = Rect2(81, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i0b0"] +atlas = ExtResource("1_jla8c") +region = Rect2(243, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e04vl"] +atlas = ExtResource("1_jla8c") +region = Rect2(81, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emv0u"] +atlas = ExtResource("1_jla8c") +region = Rect2(81, 0, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr8fa"] +atlas = ExtResource("1_jla8c") +region = Rect2(0, 171, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h78i"] +atlas = ExtResource("1_jla8c") +region = Rect2(0, 114, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek57s"] +atlas = ExtResource("1_jla8c") +region = Rect2(0, 57, 80, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56gud"] +atlas = ExtResource("1_jla8c") +region = Rect2(0, 0, 80, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_58bxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of756") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik6bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obsjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rw72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdabs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5wys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i0b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e04vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emv0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr8fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h78i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek57s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56gud") +}], +"loop": true, +"name": &"collisionsparksred", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash.tres new file mode 100644 index 0000000..c734cf6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://donwbg3p6li6v"] + +[ext_resource type="Texture2D" uid="uid://cehmh8fvyfp2u" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png" id="1_yuxv3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcytc"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfmxb"] +atlas = ExtResource("1_yuxv3") +region = Rect2(543, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bll5g"] +atlas = ExtResource("1_yuxv3") +region = Rect2(543, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ytp"] +atlas = ExtResource("1_yuxv3") +region = Rect2(543, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ror"] +atlas = ExtResource("1_yuxv3") +region = Rect2(543, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm5j8"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc1pn"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp6eb"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s33c"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo012"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hikkh"] +atlas = ExtResource("1_yuxv3") +region = Rect2(362, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6qmr"] +atlas = ExtResource("1_yuxv3") +region = Rect2(543, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpwhu"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kfav"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0pdu"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbh3"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s2b0"] +atlas = ExtResource("1_yuxv3") +region = Rect2(181, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swxs8"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etr6v"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_348in"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpjec"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p2sg"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c65m3"] +atlas = ExtResource("1_yuxv3") +region = Rect2(0, 0, 180, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcytc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfmxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bll5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ytp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ror") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm5j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc1pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp6eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s33c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo012") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hikkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6qmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpwhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kfav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0pdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmbh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s2b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swxs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etr6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_348in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpjec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p2sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c65m3") +}], +"loop": true, +"name": &"crossslash", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash_x.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash_x.tres new file mode 100644 index 0000000..7533065 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_crossslash_x.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bi7w4ggvbp7xl"] + +[ext_resource type="Texture2D" uid="uid://dv3po14bvdw1j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png" id="1_quqfk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd2sb"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud3gn"] +atlas = ExtResource("1_quqfk") +region = Rect2(543, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhre4"] +atlas = ExtResource("1_quqfk") +region = Rect2(543, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umbaw"] +atlas = ExtResource("1_quqfk") +region = Rect2(543, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j0x7"] +atlas = ExtResource("1_quqfk") +region = Rect2(543, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4ygl"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbjbm"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5ywm"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8mf2"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaf8p"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdqkm"] +atlas = ExtResource("1_quqfk") +region = Rect2(362, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjr6d"] +atlas = ExtResource("1_quqfk") +region = Rect2(543, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eufe8"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xopr"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g17m0"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsaoc"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qenod"] +atlas = ExtResource("1_quqfk") +region = Rect2(181, 0, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3enwq"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 755, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38n5r"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 604, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m35g"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 453, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gbgf"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 302, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glru3"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 151, 180, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dom8"] +atlas = ExtResource("1_quqfk") +region = Rect2(0, 0, 180, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd2sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud3gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhre4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umbaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j0x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4ygl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbjbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5ywm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8mf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaf8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdqkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjr6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eufe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xopr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g17m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsaoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qenod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3enwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38n5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m35g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gbgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glru3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dom8") +}], +"loop": true, +"name": &"x", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_damagedecal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_damagedecal.tres new file mode 100644 index 0000000..3857391 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_damagedecal.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://c3iekuco3hlm"] + +[ext_resource type="Texture2D" uid="uid://bw8hp5jwtg8u7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png" id="1_5hsh6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiddk"] +atlas = ExtResource("1_5hsh6") +region = Rect2(1124, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kmbl"] +atlas = ExtResource("1_5hsh6") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mexts"] +atlas = ExtResource("1_5hsh6") +region = Rect2(843, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nah7x"] +atlas = ExtResource("1_5hsh6") +region = Rect2(843, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6d6k"] +atlas = ExtResource("1_5hsh6") +region = Rect2(562, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcmdd"] +atlas = ExtResource("1_5hsh6") +region = Rect2(562, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcmwu"] +atlas = ExtResource("1_5hsh6") +region = Rect2(1124, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e4u4"] +atlas = ExtResource("1_5hsh6") +region = Rect2(281, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wr0s"] +atlas = ExtResource("1_5hsh6") +region = Rect2(281, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj01f"] +atlas = ExtResource("1_5hsh6") +region = Rect2(281, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyi18"] +atlas = ExtResource("1_5hsh6") +region = Rect2(0, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbloe"] +atlas = ExtResource("1_5hsh6") +region = Rect2(0, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxcsb"] +atlas = ExtResource("1_5hsh6") +region = Rect2(0, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl4g4"] +atlas = ExtResource("1_5hsh6") +region = Rect2(562, 0, 280, 280) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiddk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kmbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mexts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nah7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6d6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcmdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcmwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e4u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wr0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj01f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyi18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbloe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxcsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl4g4") +}], +"loop": true, +"name": &"damagedecal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_deathplagueicon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_deathplagueicon.tres new file mode 100644 index 0000000..22871d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_deathplagueicon.tres @@ -0,0 +1,53 @@ +[gd_resource type="SpriteFrames" load_steps=8 format=3 uid="uid://301kmhix28eu"] + +[ext_resource type="Texture2D" uid="uid://didu1hpmkrbve" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png" id="1_2gj1q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqib4"] +atlas = ExtResource("1_2gj1q") +region = Rect2(25, 0, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1s7o"] +atlas = ExtResource("1_2gj1q") +region = Rect2(50, 0, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xlld"] +atlas = ExtResource("1_2gj1q") +region = Rect2(25, 25, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k02x2"] +atlas = ExtResource("1_2gj1q") +region = Rect2(50, 25, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mny3u"] +atlas = ExtResource("1_2gj1q") +region = Rect2(0, 25, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5umh7"] +atlas = ExtResource("1_2gj1q") +region = Rect2(0, 0, 24, 24) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqib4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1s7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xlld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k02x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mny3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5umh7") +}], +"loop": true, +"name": &"deathplagueicon", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_defense.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_defense.tres new file mode 100644 index 0000000..6098033 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_defense.tres @@ -0,0 +1,114 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://c73d2ctm801eh"] + +[ext_resource type="Texture2D" uid="uid://cilk68d30o7ov" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png" id="1_cq7a6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc1hi"] +atlas = ExtResource("1_cq7a6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pn0b"] +atlas = ExtResource("1_cq7a6") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo7rk"] +atlas = ExtResource("1_cq7a6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpunp"] +atlas = ExtResource("1_cq7a6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i8js"] +atlas = ExtResource("1_cq7a6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_junoy"] +atlas = ExtResource("1_cq7a6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nv71"] +atlas = ExtResource("1_cq7a6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isumv"] +atlas = ExtResource("1_cq7a6") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i78ay"] +atlas = ExtResource("1_cq7a6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alfk7"] +atlas = ExtResource("1_cq7a6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0dge"] +atlas = ExtResource("1_cq7a6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7f2o"] +atlas = ExtResource("1_cq7a6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thrsy"] +atlas = ExtResource("1_cq7a6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhyjl"] +atlas = ExtResource("1_cq7a6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc1hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pn0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo7rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpunp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i8js") +}], +"loop": true, +"name": &"floatingshield", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_junoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nv71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isumv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i78ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alfk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0dge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7f2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thrsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhyjl") +}], +"loop": true, +"name": &"forcefield", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_disintegrate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_disintegrate.tres new file mode 100644 index 0000000..4924872 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_disintegrate.tres @@ -0,0 +1,88 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://dl7yf3cpthjyf"] + +[ext_resource type="Texture2D" uid="uid://v4ni61h0h14c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png" id="1_nslaa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wai64"] +atlas = ExtResource("1_nslaa") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_advhm"] +atlas = ExtResource("1_nslaa") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nc68"] +atlas = ExtResource("1_nslaa") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfs6w"] +atlas = ExtResource("1_nslaa") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br7yx"] +atlas = ExtResource("1_nslaa") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wjia"] +atlas = ExtResource("1_nslaa") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy0ow"] +atlas = ExtResource("1_nslaa") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fhs5"] +atlas = ExtResource("1_nslaa") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkxw6"] +atlas = ExtResource("1_nslaa") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7naqd"] +atlas = ExtResource("1_nslaa") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjymd"] +atlas = ExtResource("1_nslaa") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wai64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_advhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nc68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfs6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br7yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wjia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy0ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fhs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkxw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7naqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjymd") +}], +"loop": true, +"name": &"disintegrate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_hex_shield.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_hex_shield.tres new file mode 100644 index 0000000..92a8434 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_hex_shield.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://b38e3kywvkvw7"] + +[ext_resource type="Texture2D" uid="uid://br134obfabui" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png" id="1_vpshd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ykp8"] +atlas = ExtResource("1_vpshd") +region = Rect2(430, 2, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4xpx"] +atlas = ExtResource("1_vpshd") +region = Rect2(164, 748, 116, 138) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldqot"] +atlas = ExtResource("1_vpshd") +region = Rect2(2, 748, 160, 190) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqwwq"] +atlas = ExtResource("1_vpshd") +region = Rect2(2, 554, 174, 192) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxajs"] +atlas = ExtResource("1_vpshd") +region = Rect2(216, 370, 182, 212) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvee7"] +atlas = ExtResource("1_vpshd") +region = Rect2(2, 370, 182, 212) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnwfc"] +atlas = ExtResource("1_vpshd") +region = Rect2(216, 186, 182, 212) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m75cm"] +atlas = ExtResource("1_vpshd") +region = Rect2(2, 186, 182, 212) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uwui"] +atlas = ExtResource("1_vpshd") +region = Rect2(216, 2, 182, 212) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01km1"] +atlas = ExtResource("1_vpshd") +region = Rect2(2, 2, 182, 212) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ykp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4xpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldqot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqwwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxajs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvee7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnwfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m75cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uwui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01km1") +}], +"loop": true, +"name": &"shield", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_water_bubble.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_water_bubble.tres new file mode 100644 index 0000000..26b4056 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_distortion_water_bubble.tres @@ -0,0 +1,18 @@ +[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://eml2sbmtf6w7"] + +[ext_resource type="Texture2D" uid="uid://dqstibn6qtt5o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png" id="1_ury0y"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1p58"] +atlas = ExtResource("1_ury0y") +region = Rect2(2, 2, 272, 272) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1p58") +}], +"loop": true, +"name": &"bubble", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_doom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_doom.tres new file mode 100644 index 0000000..cf2157f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_doom.tres @@ -0,0 +1,231 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://81h5bs4ydymv"] + +[ext_resource type="Texture2D" uid="uid://b8tlf73p17bm0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png" id="1_nbdhk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mwfr"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 82, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5r81"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 164, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atny8"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 123, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms8wq"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 82, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmlbv"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 41, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgloa"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 0, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30x2i"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 205, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dulf6"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 164, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv4x6"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 123, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm4ok"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 82, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp0c3"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 41, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t5nd"] +atlas = ExtResource("1_nbdhk") +region = Rect2(123, 0, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l0oy"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 205, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlymq"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 164, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62on0"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 123, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0icld"] +atlas = ExtResource("1_nbdhk") +region = Rect2(164, 205, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia4mb"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 41, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch6tq"] +atlas = ExtResource("1_nbdhk") +region = Rect2(82, 0, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a563n"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 205, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtsi2"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 164, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilk8e"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 123, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ixk"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 82, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f30f"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 41, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i73j"] +atlas = ExtResource("1_nbdhk") +region = Rect2(41, 0, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w06wk"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 205, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx18f"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 164, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78gra"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 123, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3adn"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 82, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvktt"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 41, 40, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f2g2"] +atlas = ExtResource("1_nbdhk") +region = Rect2(0, 0, 40, 40) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mwfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5r81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atny8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms8wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmlbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgloa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30x2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dulf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv4x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm4ok") +}], +"loop": true, +"name": &"1turn", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp0c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t5nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l0oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlymq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62on0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0icld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia4mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch6tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a563n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtsi2") +}], +"loop": true, +"name": &"2turns", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilk8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ixk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f30f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i73j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w06wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx18f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78gra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3adn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvktt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f2g2") +}], +"loop": true, +"name": &"3turns", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electrical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electrical.tres new file mode 100644 index 0000000..c63c1d7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electrical.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://b7urwpc8ily8"] + +[ext_resource type="Texture2D" uid="uid://dq0mxmeojj2ew" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png" id="1_wi06r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvmlk"] +atlas = ExtResource("1_wi06r") +region = Rect2(53, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd2qx"] +atlas = ExtResource("1_wi06r") +region = Rect2(106, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr7ef"] +atlas = ExtResource("1_wi06r") +region = Rect2(53, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w18r1"] +atlas = ExtResource("1_wi06r") +region = Rect2(53, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8i3w"] +atlas = ExtResource("1_wi06r") +region = Rect2(53, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mblq6"] +atlas = ExtResource("1_wi06r") +region = Rect2(106, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i62sh"] +atlas = ExtResource("1_wi06r") +region = Rect2(0, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7jmh"] +atlas = ExtResource("1_wi06r") +region = Rect2(0, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypsvf"] +atlas = ExtResource("1_wi06r") +region = Rect2(0, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leo4s"] +atlas = ExtResource("1_wi06r") +region = Rect2(0, 0, 52, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvmlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd2qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr7ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w18r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8i3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mblq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i62sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7jmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypsvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leo4s") +}], +"loop": true, +"name": &"explosionblueelectrical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electricsphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electricsphere.tres new file mode 100644 index 0000000..ac197a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_electricsphere.tres @@ -0,0 +1,298 @@ +[gd_resource type="SpriteFrames" load_steps=43 format=3 uid="uid://3s4uxyg22mwe"] + +[ext_resource type="Texture2D" uid="uid://bg5i436pttxpg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png" id="1_t1eal"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbaqd"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tek8g"] +atlas = ExtResource("1_t1eal") +region = Rect2(546, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nra7e"] +atlas = ExtResource("1_t1eal") +region = Rect2(546, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h70uw"] +atlas = ExtResource("1_t1eal") +region = Rect2(546, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcdqr"] +atlas = ExtResource("1_t1eal") +region = Rect2(546, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqw03"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl6vl"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjfy2"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea6y7"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr17d"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d1b7"] +atlas = ExtResource("1_t1eal") +region = Rect2(455, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqxwt"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je4o5"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ea41"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp7e6"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o73qy"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kglvg"] +atlas = ExtResource("1_t1eal") +region = Rect2(364, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxj1o"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t0wv"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvfsa"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h72dx"] +atlas = ExtResource("1_t1eal") +region = Rect2(546, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p45o"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l6gh"] +atlas = ExtResource("1_t1eal") +region = Rect2(273, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryvwt"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmxu7"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nnsr"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr36w"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7ltp"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xxq8"] +atlas = ExtResource("1_t1eal") +region = Rect2(182, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmjod"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6kdf"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t52vx"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmukn"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk77o"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp7x1"] +atlas = ExtResource("1_t1eal") +region = Rect2(91, 0, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhda4"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 755, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3pls"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 604, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bytu"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 453, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifm0f"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 302, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb8r3"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 151, 90, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_857n7"] +atlas = ExtResource("1_t1eal") +region = Rect2(0, 0, 90, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbaqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tek8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nra7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h70uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcdqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqw03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl6vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjfy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea6y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr17d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d1b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqxwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je4o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ea41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp7e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o73qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kglvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxj1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t0wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvfsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h72dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p45o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l6gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryvwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmxu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nnsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr36w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7ltp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xxq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmjod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6kdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t52vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmukn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk77o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp7x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhda4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3pls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bytu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifm0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb8r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_857n7") +}], +"loop": true, +"name": &"electricsphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_energyhaloground.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_energyhaloground.tres new file mode 100644 index 0000000..ad3022d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_energyhaloground.tres @@ -0,0 +1,53 @@ +[gd_resource type="SpriteFrames" load_steps=8 format=3 uid="uid://dw6bbncgd5mcm"] + +[ext_resource type="Texture2D" uid="uid://cl83p54ufv0um" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png" id="1_ljofv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_es7mm"] +atlas = ExtResource("1_ljofv") +region = Rect2(0, 66, 80, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s457f"] +atlas = ExtResource("1_ljofv") +region = Rect2(81, 33, 80, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guemg"] +atlas = ExtResource("1_ljofv") +region = Rect2(81, 0, 80, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3boj"] +atlas = ExtResource("1_ljofv") +region = Rect2(81, 66, 80, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56eul"] +atlas = ExtResource("1_ljofv") +region = Rect2(0, 33, 80, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdasx"] +atlas = ExtResource("1_ljofv") +region = Rect2(0, 0, 80, 32) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_es7mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s457f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guemg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3boj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56eul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdasx") +}], +"loop": true, +"name": &"energyhaloground", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblue.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblue.tres new file mode 100644 index 0000000..cfef50e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblue.tres @@ -0,0 +1,74 @@ +[gd_resource type="SpriteFrames" load_steps=11 format=3 uid="uid://b3rer3mel74m"] + +[ext_resource type="Texture2D" uid="uid://c5p8otjwaknhx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png" id="1_cjec1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_he4do"] +atlas = ExtResource("1_cjec1") +region = Rect2(0, 172, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fn8q"] +atlas = ExtResource("1_cjec1") +region = Rect2(57, 86, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ee4y"] +atlas = ExtResource("1_cjec1") +region = Rect2(57, 43, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc74k"] +atlas = ExtResource("1_cjec1") +region = Rect2(57, 0, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyujt"] +atlas = ExtResource("1_cjec1") +region = Rect2(57, 129, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtsw2"] +atlas = ExtResource("1_cjec1") +region = Rect2(0, 129, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqwi8"] +atlas = ExtResource("1_cjec1") +region = Rect2(0, 86, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o36iy"] +atlas = ExtResource("1_cjec1") +region = Rect2(0, 43, 56, 42) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8acbj"] +atlas = ExtResource("1_cjec1") +region = Rect2(0, 0, 56, 42) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_he4do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fn8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ee4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc74k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyujt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtsw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqwi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o36iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8acbj") +}], +"loop": true, +"name": &"ground", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblueelectrical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblueelectrical.tres new file mode 100644 index 0000000..273940c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionblueelectrical.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://c3bjj8yvar4qy"] + +[ext_resource type="Texture2D" uid="uid://chtuml1ikfhkd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png" id="1_1hulv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hea8"] +atlas = ExtResource("1_1hulv") +region = Rect2(53, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v18a"] +atlas = ExtResource("1_1hulv") +region = Rect2(106, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfg4b"] +atlas = ExtResource("1_1hulv") +region = Rect2(53, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4nvn"] +atlas = ExtResource("1_1hulv") +region = Rect2(53, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl6if"] +atlas = ExtResource("1_1hulv") +region = Rect2(53, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5cdp"] +atlas = ExtResource("1_1hulv") +region = Rect2(106, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43w5n"] +atlas = ExtResource("1_1hulv") +region = Rect2(0, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldekc"] +atlas = ExtResource("1_1hulv") +region = Rect2(0, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na0hw"] +atlas = ExtResource("1_1hulv") +region = Rect2(0, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfmsy"] +atlas = ExtResource("1_1hulv") +region = Rect2(0, 0, 52, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hea8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v18a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfg4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4nvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl6if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5cdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43w5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldekc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na0hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfmsy") +}], +"loop": true, +"name": &"explosionblueelectrical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosiongreenelectrical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosiongreenelectrical.tres new file mode 100644 index 0000000..c3f10e8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosiongreenelectrical.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://omq1m3yfva3b"] + +[ext_resource type="Texture2D" uid="uid://cpjhg7ulxx4iu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png" id="1_meyls"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyvrp"] +atlas = ExtResource("1_meyls") +region = Rect2(53, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksfju"] +atlas = ExtResource("1_meyls") +region = Rect2(106, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbi51"] +atlas = ExtResource("1_meyls") +region = Rect2(53, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kscv7"] +atlas = ExtResource("1_meyls") +region = Rect2(53, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp8ub"] +atlas = ExtResource("1_meyls") +region = Rect2(53, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8xj0"] +atlas = ExtResource("1_meyls") +region = Rect2(106, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1oqh"] +atlas = ExtResource("1_meyls") +region = Rect2(0, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsx4m"] +atlas = ExtResource("1_meyls") +region = Rect2(0, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbi2x"] +atlas = ExtResource("1_meyls") +region = Rect2(0, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehgty"] +atlas = ExtResource("1_meyls") +region = Rect2(0, 0, 52, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyvrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksfju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbi51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kscv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp8ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8xj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1oqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsx4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbi2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehgty") +}], +"loop": true, +"name": &"explosiongreenelectrical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionorangesmoke.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionorangesmoke.tres new file mode 100644 index 0000000..f952b4d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionorangesmoke.tres @@ -0,0 +1,53 @@ +[gd_resource type="SpriteFrames" load_steps=8 format=3 uid="uid://ctce7lkhj87s6"] + +[ext_resource type="Texture2D" uid="uid://dxpml3vdn2vsv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png" id="1_r3ay8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5afpg"] +atlas = ExtResource("1_r3ay8") +region = Rect2(0, 90, 58, 44) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gq1w"] +atlas = ExtResource("1_r3ay8") +region = Rect2(0, 180, 58, 44) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vpe6"] +atlas = ExtResource("1_r3ay8") +region = Rect2(0, 135, 58, 44) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpk8p"] +atlas = ExtResource("1_r3ay8") +region = Rect2(59, 0, 58, 44) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl14h"] +atlas = ExtResource("1_r3ay8") +region = Rect2(0, 45, 58, 44) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4owt"] +atlas = ExtResource("1_r3ay8") +region = Rect2(0, 0, 58, 44) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5afpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gq1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vpe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpk8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl14h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4owt") +}], +"loop": true, +"name": &"explosionorangesmoke", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionpurplesmoke.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionpurplesmoke.tres new file mode 100644 index 0000000..71a0a56 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionpurplesmoke.tres @@ -0,0 +1,60 @@ +[gd_resource type="SpriteFrames" load_steps=9 format=3 uid="uid://b8xm6wsbgnr03"] + +[ext_resource type="Texture2D" uid="uid://g1un1htmn7x7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png" id="1_2kvkc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rckdw"] +atlas = ExtResource("1_2kvkc") +region = Rect2(41, 0, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxaho"] +atlas = ExtResource("1_2kvkc") +region = Rect2(41, 70, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es0cm"] +atlas = ExtResource("1_2kvkc") +region = Rect2(41, 35, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41a08"] +atlas = ExtResource("1_2kvkc") +region = Rect2(82, 0, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ypet"] +atlas = ExtResource("1_2kvkc") +region = Rect2(0, 70, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkkmi"] +atlas = ExtResource("1_2kvkc") +region = Rect2(0, 35, 40, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tttcy"] +atlas = ExtResource("1_2kvkc") +region = Rect2(0, 0, 40, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rckdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxaho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es0cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41a08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ypet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkkmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tttcy") +}], +"loop": true, +"name": &"explosionpurplesmoke", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionredelectrical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionredelectrical.tres new file mode 100644 index 0000000..8d0306e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionredelectrical.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://ccndhul41owmv"] + +[ext_resource type="Texture2D" uid="uid://dgcujhfo8bgf6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png" id="1_ryogd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwr7k"] +atlas = ExtResource("1_ryogd") +region = Rect2(53, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fapnt"] +atlas = ExtResource("1_ryogd") +region = Rect2(106, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk8fm"] +atlas = ExtResource("1_ryogd") +region = Rect2(53, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1nwv"] +atlas = ExtResource("1_ryogd") +region = Rect2(53, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiaf3"] +atlas = ExtResource("1_ryogd") +region = Rect2(53, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bckgu"] +atlas = ExtResource("1_ryogd") +region = Rect2(106, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy0du"] +atlas = ExtResource("1_ryogd") +region = Rect2(0, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s82si"] +atlas = ExtResource("1_ryogd") +region = Rect2(0, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kst1"] +atlas = ExtResource("1_ryogd") +region = Rect2(0, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfbvj"] +atlas = ExtResource("1_ryogd") +region = Rect2(0, 0, 52, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwr7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fapnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk8fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1nwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiaf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bckgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy0du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s82si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kst1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfbvj") +}], +"loop": true, +"name": &"explosionredelectrical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionyellowelectrical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionyellowelectrical.tres new file mode 100644 index 0000000..cc64a81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_explosionyellowelectrical.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://c30cn0bc855rm"] + +[ext_resource type="Texture2D" uid="uid://2dql1p3yybfp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png" id="1_gq007"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_seetg"] +atlas = ExtResource("1_gq007") +region = Rect2(53, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypkf6"] +atlas = ExtResource("1_gq007") +region = Rect2(106, 0, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfw7a"] +atlas = ExtResource("1_gq007") +region = Rect2(53, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10hfl"] +atlas = ExtResource("1_gq007") +region = Rect2(53, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krcrq"] +atlas = ExtResource("1_gq007") +region = Rect2(53, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b78sp"] +atlas = ExtResource("1_gq007") +region = Rect2(106, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_278ib"] +atlas = ExtResource("1_gq007") +region = Rect2(0, 171, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qtw6"] +atlas = ExtResource("1_gq007") +region = Rect2(0, 114, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g3i2"] +atlas = ExtResource("1_gq007") +region = Rect2(0, 57, 52, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1rqr"] +atlas = ExtResource("1_gq007") +region = Rect2(0, 0, 52, 56) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_seetg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypkf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfw7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10hfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krcrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b78sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_278ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qtw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g3i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1rqr") +}], +"loop": true, +"name": &"explosionyellowelectrical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aperionssurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aperionssurge.tres new file mode 100644 index 0000000..8664871 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aperionssurge.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://hfns1xm73l5c"] + +[ext_resource type="Texture2D" uid="uid://tpwh6m4cmj1x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png" id="1_emux0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvj7m"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4m8j"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imu7r"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfrpu"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2nli"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfo0e"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b2sb"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ggge"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x26jl"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odl8q"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k658m"] +atlas = ExtResource("1_emux0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4qoi"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so378"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr50g"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1pl3"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l86h6"] +atlas = ExtResource("1_emux0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53c5y"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm6qv"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1a0d"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffewn"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xxhl"] +atlas = ExtResource("1_emux0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3xbl"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d382j"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok3m4"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5w3j"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jagg"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bj2r"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itejg"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s6gh"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdtwy"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81nm0"] +atlas = ExtResource("1_emux0") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvj7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4m8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imu7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfrpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2nli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfo0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b2sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ggge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x26jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odl8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k658m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4qoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so378") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr50g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1pl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l86h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53c5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm6qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1a0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffewn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xxhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3xbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d382j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok3m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5w3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jagg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bj2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itejg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s6gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdtwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81nm0") +}], +"loop": true, +"name": &"aperionssurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aurynnexus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aurynnexus.tres new file mode 100644 index 0000000..caeea08 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_aurynnexus.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://behd7y2kr81x3"] + +[ext_resource type="Texture2D" uid="uid://qijvmnw7b6hv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png" id="1_kqrb1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v11k6"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 161, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iblrm"] +atlas = ExtResource("1_kqrb1") +region = Rect2(644, 161, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx611"] +atlas = ExtResource("1_kqrb1") +region = Rect2(644, 0, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13fty"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 805, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x4ot"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 644, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12sl2"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 483, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o20yt"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 322, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ytjw"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 161, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04q4t"] +atlas = ExtResource("1_kqrb1") +region = Rect2(483, 0, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajfl0"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 805, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6rj6"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 644, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cxcg"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 483, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4i2o"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 322, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts5l7"] +atlas = ExtResource("1_kqrb1") +region = Rect2(644, 322, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj4m4"] +atlas = ExtResource("1_kqrb1") +region = Rect2(322, 0, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxe55"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 805, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2w4j"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 644, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scods"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 483, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ae6s"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 322, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo2mb"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 161, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps3v2"] +atlas = ExtResource("1_kqrb1") +region = Rect2(161, 0, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn8eh"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 805, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gca1s"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 644, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v8jh"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 483, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsbnv"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 322, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m16ei"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 161, 160, 160) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf0ge"] +atlas = ExtResource("1_kqrb1") +region = Rect2(0, 0, 160, 160) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v11k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iblrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx611") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13fty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x4ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12sl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o20yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ytjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04q4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajfl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6rj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cxcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4i2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts5l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj4m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxe55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2w4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scods") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ae6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo2mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps3v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn8eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gca1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v8jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsbnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m16ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf0ge") +}], +"loop": true, +"name": &"aurynnexus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_afterglow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_afterglow.tres new file mode 100644 index 0000000..95ff0fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_afterglow.tres @@ -0,0 +1,298 @@ +[gd_resource type="SpriteFrames" load_steps=43 format=3 uid="uid://cwcxys8slwqh5"] + +[ext_resource type="Texture2D" uid="uid://c2ysq4pvasq2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png" id="1_w1v3o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5gsl"] +atlas = ExtResource("1_w1v3o") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ci3q"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slc0o"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsn7i"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8omh"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc6jg"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss5o8"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtkxb"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8k77"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyxoh"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0okb"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5goiq"] +atlas = ExtResource("1_w1v3o") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkex0"] +atlas = ExtResource("1_w1v3o") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1c41"] +atlas = ExtResource("1_w1v3o") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hegt3"] +atlas = ExtResource("1_w1v3o") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yamdt"] +atlas = ExtResource("1_w1v3o") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_421gs"] +atlas = ExtResource("1_w1v3o") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1chq"] +atlas = ExtResource("1_w1v3o") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w450u"] +atlas = ExtResource("1_w1v3o") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4o2c"] +atlas = ExtResource("1_w1v3o") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j11q"] +atlas = ExtResource("1_w1v3o") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dff03"] +atlas = ExtResource("1_w1v3o") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr274"] +atlas = ExtResource("1_w1v3o") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svbvl"] +atlas = ExtResource("1_w1v3o") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3kl0"] +atlas = ExtResource("1_w1v3o") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuwi6"] +atlas = ExtResource("1_w1v3o") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tep1j"] +atlas = ExtResource("1_w1v3o") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c4ft"] +atlas = ExtResource("1_w1v3o") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj6v7"] +atlas = ExtResource("1_w1v3o") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roooq"] +atlas = ExtResource("1_w1v3o") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5ax0"] +atlas = ExtResource("1_w1v3o") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b0e3"] +atlas = ExtResource("1_w1v3o") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wusm"] +atlas = ExtResource("1_w1v3o") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta65f"] +atlas = ExtResource("1_w1v3o") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo8ni"] +atlas = ExtResource("1_w1v3o") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rqxd"] +atlas = ExtResource("1_w1v3o") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvuad"] +atlas = ExtResource("1_w1v3o") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjx81"] +atlas = ExtResource("1_w1v3o") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecpm4"] +atlas = ExtResource("1_w1v3o") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6alq8"] +atlas = ExtResource("1_w1v3o") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlr0v"] +atlas = ExtResource("1_w1v3o") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5gsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ci3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slc0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsn7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8omh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc6jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss5o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtkxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8k77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyxoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0okb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5goiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkex0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1c41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hegt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yamdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_421gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1chq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w450u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4o2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j11q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dff03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr274") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svbvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3kl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuwi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tep1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c4ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj6v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roooq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5ax0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b0e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wusm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta65f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo8ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rqxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvuad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjx81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecpm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6alq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlr0v") +}], +"loop": true, +"name": &"afterglow", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_kingsguard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_kingsguard.tres new file mode 100644 index 0000000..01186d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_kingsguard.tres @@ -0,0 +1,361 @@ +[gd_resource type="SpriteFrames" load_steps=52 format=3 uid="uid://cbc5w1lmfl7f4"] + +[ext_resource type="Texture2D" uid="uid://vc5huvydis2h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png" id="1_livl1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccq0k"] +atlas = ExtResource("1_livl1") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5cok"] +atlas = ExtResource("1_livl1") +region = Rect2(1629, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h664p"] +atlas = ExtResource("1_livl1") +region = Rect2(1629, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6t4u"] +atlas = ExtResource("1_livl1") +region = Rect2(1629, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiiwm"] +atlas = ExtResource("1_livl1") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4are"] +atlas = ExtResource("1_livl1") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bejmo"] +atlas = ExtResource("1_livl1") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x4ec"] +atlas = ExtResource("1_livl1") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3p1v"] +atlas = ExtResource("1_livl1") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noqwq"] +atlas = ExtResource("1_livl1") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf680"] +atlas = ExtResource("1_livl1") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd7xb"] +atlas = ExtResource("1_livl1") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glvyp"] +atlas = ExtResource("1_livl1") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1lid"] +atlas = ExtResource("1_livl1") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc6d8"] +atlas = ExtResource("1_livl1") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3o5k"] +atlas = ExtResource("1_livl1") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqche"] +atlas = ExtResource("1_livl1") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7oka"] +atlas = ExtResource("1_livl1") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yal4i"] +atlas = ExtResource("1_livl1") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj2uo"] +atlas = ExtResource("1_livl1") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fklm"] +atlas = ExtResource("1_livl1") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afa4w"] +atlas = ExtResource("1_livl1") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62pre"] +atlas = ExtResource("1_livl1") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uudmv"] +atlas = ExtResource("1_livl1") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ac6"] +atlas = ExtResource("1_livl1") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p7eh"] +atlas = ExtResource("1_livl1") +region = Rect2(1629, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcyhf"] +atlas = ExtResource("1_livl1") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_808yq"] +atlas = ExtResource("1_livl1") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x0wh"] +atlas = ExtResource("1_livl1") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0vk4"] +atlas = ExtResource("1_livl1") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btvkh"] +atlas = ExtResource("1_livl1") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66yxq"] +atlas = ExtResource("1_livl1") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2283h"] +atlas = ExtResource("1_livl1") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st4eq"] +atlas = ExtResource("1_livl1") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjjlx"] +atlas = ExtResource("1_livl1") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e7bm"] +atlas = ExtResource("1_livl1") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxulp"] +atlas = ExtResource("1_livl1") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjvr4"] +atlas = ExtResource("1_livl1") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5edyx"] +atlas = ExtResource("1_livl1") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iyko"] +atlas = ExtResource("1_livl1") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w8i"] +atlas = ExtResource("1_livl1") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqcsd"] +atlas = ExtResource("1_livl1") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_083xt"] +atlas = ExtResource("1_livl1") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so8f6"] +atlas = ExtResource("1_livl1") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq5iy"] +atlas = ExtResource("1_livl1") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wngr"] +atlas = ExtResource("1_livl1") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m7hd"] +atlas = ExtResource("1_livl1") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0sxc"] +atlas = ExtResource("1_livl1") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrc2h"] +atlas = ExtResource("1_livl1") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jv5x"] +atlas = ExtResource("1_livl1") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccq0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5cok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h664p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6t4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiiwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4are") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bejmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x4ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3p1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noqwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf680") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd7xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glvyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1lid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc6d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3o5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqche") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7oka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yal4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj2uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fklm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afa4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62pre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uudmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ac6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p7eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcyhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_808yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x0wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0vk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btvkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66yxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2283h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st4eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjjlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e7bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxulp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjvr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5edyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iyko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1w8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqcsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_083xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so8f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq5iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wngr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m7hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0sxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrc2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jv5x") +}], +"loop": true, +"name": &"kingsguard", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_roar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_roar.tres new file mode 100644 index 0000000..e4e5efc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_bbs_roar.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://do66lldu8flj8"] + +[ext_resource type="Texture2D" uid="uid://bg6u4xdei5ovp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png" id="1_j7rh8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_77rsk"] +atlas = ExtResource("1_j7rh8") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlv22"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxs11"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebkyp"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j18o"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6dn7"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0enp5"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfixv"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s08by"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyawr"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8bjo"] +atlas = ExtResource("1_j7rh8") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv824"] +atlas = ExtResource("1_j7rh8") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwlbj"] +atlas = ExtResource("1_j7rh8") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01mt2"] +atlas = ExtResource("1_j7rh8") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyirj"] +atlas = ExtResource("1_j7rh8") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iln8n"] +atlas = ExtResource("1_j7rh8") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfv13"] +atlas = ExtResource("1_j7rh8") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m67el"] +atlas = ExtResource("1_j7rh8") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc4y4"] +atlas = ExtResource("1_j7rh8") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s867g"] +atlas = ExtResource("1_j7rh8") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eenwm"] +atlas = ExtResource("1_j7rh8") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ohoc"] +atlas = ExtResource("1_j7rh8") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akirp"] +atlas = ExtResource("1_j7rh8") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlqpk"] +atlas = ExtResource("1_j7rh8") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ofck"] +atlas = ExtResource("1_j7rh8") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w10kt"] +atlas = ExtResource("1_j7rh8") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adchj"] +atlas = ExtResource("1_j7rh8") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv1d0"] +atlas = ExtResource("1_j7rh8") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8ff7"] +atlas = ExtResource("1_j7rh8") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55uy1"] +atlas = ExtResource("1_j7rh8") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6m2f"] +atlas = ExtResource("1_j7rh8") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdjy0"] +atlas = ExtResource("1_j7rh8") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxcla"] +atlas = ExtResource("1_j7rh8") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m4aa"] +atlas = ExtResource("1_j7rh8") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4y1l"] +atlas = ExtResource("1_j7rh8") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hthu"] +atlas = ExtResource("1_j7rh8") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uac12"] +atlas = ExtResource("1_j7rh8") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqybe"] +atlas = ExtResource("1_j7rh8") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auump"] +atlas = ExtResource("1_j7rh8") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sjx3"] +atlas = ExtResource("1_j7rh8") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77rsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlv22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxs11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebkyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j18o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6dn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0enp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfixv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s08by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyawr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8bjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv824") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwlbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01mt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyirj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iln8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfv13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m67el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc4y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s867g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eenwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ohoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akirp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlqpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ofck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w10kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adchj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8ff7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55uy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6m2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdjy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxcla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m4aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4y1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hthu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uac12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqybe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auump") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sjx3") +}], +"loop": true, +"name": &"roar", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_casterprojectile.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_casterprojectile.tres new file mode 100644 index 0000000..b793f34 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_casterprojectile.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://xdrk0c44dcie"] + +[ext_resource type="Texture2D" uid="uid://b802npglp3php" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png" id="1_51ugc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc7tg"] +atlas = ExtResource("1_51ugc") +region = Rect2(0, 33, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja7s1"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 33, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt4bg"] +atlas = ExtResource("1_51ugc") +region = Rect2(141, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1jf7"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_827sh"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 66, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsd3t"] +atlas = ExtResource("1_51ugc") +region = Rect2(141, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx8n1"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lovt"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 66, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl6el"] +atlas = ExtResource("1_51ugc") +region = Rect2(141, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko0iw"] +atlas = ExtResource("1_51ugc") +region = Rect2(282, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh8wb"] +atlas = ExtResource("1_51ugc") +region = Rect2(0, 66, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryg75"] +atlas = ExtResource("1_51ugc") +region = Rect2(0, 0, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vh45"] +atlas = ExtResource("1_51ugc") +region = Rect2(141, 66, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plsn5"] +atlas = ExtResource("1_51ugc") +region = Rect2(141, 33, 140, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wst0m"] +atlas = ExtResource("1_51ugc") +region = Rect2(423, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lpy0"] +atlas = ExtResource("1_51ugc") +region = Rect2(423, 66, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwc16"] +atlas = ExtResource("1_51ugc") +region = Rect2(456, 0, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck3l3"] +atlas = ExtResource("1_51ugc") +region = Rect2(423, 33, 32, 32) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc7tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja7s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt4bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1jf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_827sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsd3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx8n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lovt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl6el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko0iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh8wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryg75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vh45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plsn5") +}], +"loop": true, +"name": &"f1casterprojectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wst0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lpy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwc16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck3l3") +}], +"loop": true, +"name": &"f1casterprojectilecharge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_circlelife.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_circlelife.tres new file mode 100644 index 0000000..38446b7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_circlelife.tres @@ -0,0 +1,368 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://cr6rsklsq8gwc"] + +[ext_resource type="Texture2D" uid="uid://dtpn7wr3lvtnc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png" id="1_ei53n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h002s"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 985, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tualj"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 1773, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwl0w"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 1576, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tq7t"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 1379, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjhxm"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 1182, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2o8e"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 985, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yciro"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27p84"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g4m1"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86olf"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xkh6"] +atlas = ExtResource("1_ei53n") +region = Rect2(788, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xgjo"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 1773, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1jam"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 1576, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16pw1"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 1379, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31u48"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 1182, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjyye"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 985, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2qx3"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egut4"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k7v1"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p5ij"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1fm8"] +atlas = ExtResource("1_ei53n") +region = Rect2(591, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k3xf"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 1773, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xai07"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 1576, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c16o"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 1379, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to1jj"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 1182, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngwyc"] +atlas = ExtResource("1_ei53n") +region = Rect2(985, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfsnb"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5a6y"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufnxu"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1chjn"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1itqu"] +atlas = ExtResource("1_ei53n") +region = Rect2(394, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weh3i"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 1773, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slblb"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 1576, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy0u5"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 1379, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfmqk"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 1182, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mttiq"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 985, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as348"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db2ug"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lxqg"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkywe"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va16y"] +atlas = ExtResource("1_ei53n") +region = Rect2(197, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8n75"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 1773, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyphg"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 1576, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jepci"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 1379, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v2uf"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 1182, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mgqp"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 985, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xyv6"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_horwt"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ioj"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioht2"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2spd"] +atlas = ExtResource("1_ei53n") +region = Rect2(0, 0, 196, 196) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h002s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tualj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwl0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tq7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjhxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2o8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yciro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27p84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g4m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86olf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xkh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xgjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1jam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16pw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31u48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjyye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2qx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egut4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k7v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p5ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1fm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k3xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xai07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c16o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to1jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngwyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfsnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5a6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufnxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1chjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1itqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weh3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slblb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy0u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfmqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mttiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as348") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db2ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lxqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkywe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va16y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8n75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyphg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jepci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v2uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mgqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xyv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_horwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ioj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioht2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2spd") +}], +"loop": true, +"name": &"circlelife", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_decimate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_decimate.tres new file mode 100644 index 0000000..eaf5cf9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_decimate.tres @@ -0,0 +1,144 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://dolw0q2sjpi2"] + +[ext_resource type="Texture2D" uid="uid://bjo7y30fs6tvh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png" id="1_m67l2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0iqf"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 225, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxu5t"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 375, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h3ja"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 300, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrshj"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 225, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufwt0"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 150, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfhqi"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 75, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq064"] +atlas = ExtResource("1_m67l2") +region = Rect2(154, 0, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg4bj"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 375, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxtis"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 300, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omc4f"] +atlas = ExtResource("1_m67l2") +region = Rect2(231, 0, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17mj2"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 150, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg5o4"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 75, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5bie"] +atlas = ExtResource("1_m67l2") +region = Rect2(77, 0, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kojd0"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 375, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy85k"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 300, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brutq"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 225, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0dl"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 150, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkahd"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 75, 76, 74) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3xcx"] +atlas = ExtResource("1_m67l2") +region = Rect2(0, 0, 76, 74) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0iqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxu5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h3ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrshj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufwt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfhqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq064") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg4bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxtis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omc4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17mj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg5o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5bie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kojd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy85k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brutq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkahd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3xcx") +}], +"loop": true, +"name": &"decimate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_divinebond.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_divinebond.tres new file mode 100644 index 0000000..3319c1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_divinebond.tres @@ -0,0 +1,165 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://bae07bh2jcdw1"] + +[ext_resource type="Texture2D" uid="uid://coptn7j6mprqh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png" id="1_5wwd2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsfdt"] +atlas = ExtResource("1_5wwd2") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n18t4"] +atlas = ExtResource("1_5wwd2") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ubo"] +atlas = ExtResource("1_5wwd2") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb15p"] +atlas = ExtResource("1_5wwd2") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_435e1"] +atlas = ExtResource("1_5wwd2") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl0i7"] +atlas = ExtResource("1_5wwd2") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upg14"] +atlas = ExtResource("1_5wwd2") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro70u"] +atlas = ExtResource("1_5wwd2") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j662"] +atlas = ExtResource("1_5wwd2") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fslrv"] +atlas = ExtResource("1_5wwd2") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2x22"] +atlas = ExtResource("1_5wwd2") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bshxn"] +atlas = ExtResource("1_5wwd2") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13fkj"] +atlas = ExtResource("1_5wwd2") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7bc6"] +atlas = ExtResource("1_5wwd2") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82kxm"] +atlas = ExtResource("1_5wwd2") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uklff"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pxu0"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dyij"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw31d"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mrpg"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqhjc"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku8oh"] +atlas = ExtResource("1_5wwd2") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsfdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n18t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ubo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb15p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_435e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl0i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upg14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro70u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j662") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fslrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2x22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bshxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13fkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7bc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82kxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uklff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pxu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dyij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw31d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mrpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqhjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku8oh") +}], +"loop": true, +"name": &"divinebond", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_hallowedground.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_hallowedground.tres new file mode 100644 index 0000000..10906d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_hallowedground.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://bw2xrdcpkr50d"] + +[ext_resource type="Texture2D" uid="uid://nv2rv6kxs4dn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png" id="1_4rcd2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnuev"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0qqh"] +atlas = ExtResource("1_4rcd2") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqis8"] +atlas = ExtResource("1_4rcd2") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfe4e"] +atlas = ExtResource("1_4rcd2") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsjbk"] +atlas = ExtResource("1_4rcd2") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06b0t"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2s3t"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qhoj"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwmi0"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp6li"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljjnp"] +atlas = ExtResource("1_4rcd2") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k63vc"] +atlas = ExtResource("1_4rcd2") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t17by"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akali"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xr76"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r27w"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hkgw"] +atlas = ExtResource("1_4rcd2") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l80w4"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cqvr"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfyvi"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ucf"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycy5q"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys84c"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjg14"] +atlas = ExtResource("1_4rcd2") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnuev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0qqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqis8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfe4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsjbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06b0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2s3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qhoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwmi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp6li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljjnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k63vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t17by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akali") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xr76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r27w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hkgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l80w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cqvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfyvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ucf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycy5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys84c") +}], +"loop": true, +"name": &"hallowedground", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjg14") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_inmolation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_inmolation.tres new file mode 100644 index 0000000..ac9facf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_inmolation.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://c2ig14d6x1eyy"] + +[ext_resource type="Texture2D" uid="uid://bhjt26vfhyhgd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png" id="1_qhc0s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7usl5"] +atlas = ExtResource("1_qhc0s") +region = Rect2(213, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fhom"] +atlas = ExtResource("1_qhc0s") +region = Rect2(355, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5d6n"] +atlas = ExtResource("1_qhc0s") +region = Rect2(355, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rbll"] +atlas = ExtResource("1_qhc0s") +region = Rect2(355, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap3fv"] +atlas = ExtResource("1_qhc0s") +region = Rect2(284, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p32k1"] +atlas = ExtResource("1_qhc0s") +region = Rect2(284, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb8eq"] +atlas = ExtResource("1_qhc0s") +region = Rect2(284, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr7gg"] +atlas = ExtResource("1_qhc0s") +region = Rect2(213, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siara"] +atlas = ExtResource("1_qhc0s") +region = Rect2(213, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj00v"] +atlas = ExtResource("1_qhc0s") +region = Rect2(355, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ppg1"] +atlas = ExtResource("1_qhc0s") +region = Rect2(426, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4f64"] +atlas = ExtResource("1_qhc0s") +region = Rect2(284, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3siqr"] +atlas = ExtResource("1_qhc0s") +region = Rect2(355, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsrmi"] +atlas = ExtResource("1_qhc0s") +region = Rect2(142, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfn4a"] +atlas = ExtResource("1_qhc0s") +region = Rect2(284, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1xli"] +atlas = ExtResource("1_qhc0s") +region = Rect2(142, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kjpb"] +atlas = ExtResource("1_qhc0s") +region = Rect2(142, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15ruf"] +atlas = ExtResource("1_qhc0s") +region = Rect2(71, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vd0g"] +atlas = ExtResource("1_qhc0s") +region = Rect2(71, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm1dc"] +atlas = ExtResource("1_qhc0s") +region = Rect2(71, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xpkx"] +atlas = ExtResource("1_qhc0s") +region = Rect2(0, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a5hg"] +atlas = ExtResource("1_qhc0s") +region = Rect2(0, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t65f0"] +atlas = ExtResource("1_qhc0s") +region = Rect2(0, 0, 70, 70) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7usl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fhom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5d6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rbll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap3fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p32k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb8eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr7gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siara") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj00v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ppg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4f64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3siqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsrmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfn4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1xli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kjpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15ruf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vd0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm1dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xpkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a5hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t65f0") +}], +"loop": true, +"name": &"inmolation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lasting_judgment.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lasting_judgment.tres new file mode 100644 index 0000000..c789632 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lasting_judgment.tres @@ -0,0 +1,179 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://coq3nwwtse52u"] + +[ext_resource type="Texture2D" uid="uid://cg41ei640fhhr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png" id="1_u5h28"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nyii"] +atlas = ExtResource("1_u5h28") +region = Rect2(490, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78l2q"] +atlas = ExtResource("1_u5h28") +region = Rect2(1225, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sojl1"] +atlas = ExtResource("1_u5h28") +region = Rect2(1225, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urky5"] +atlas = ExtResource("1_u5h28") +region = Rect2(1225, 0, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhnmf"] +atlas = ExtResource("1_u5h28") +region = Rect2(980, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j84bu"] +atlas = ExtResource("1_u5h28") +region = Rect2(980, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr5wg"] +atlas = ExtResource("1_u5h28") +region = Rect2(980, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r017v"] +atlas = ExtResource("1_u5h28") +region = Rect2(980, 0, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shfre"] +atlas = ExtResource("1_u5h28") +region = Rect2(735, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07as5"] +atlas = ExtResource("1_u5h28") +region = Rect2(735, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu02v"] +atlas = ExtResource("1_u5h28") +region = Rect2(735, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3w57"] +atlas = ExtResource("1_u5h28") +region = Rect2(735, 0, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvcbu"] +atlas = ExtResource("1_u5h28") +region = Rect2(1225, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5wha"] +atlas = ExtResource("1_u5h28") +region = Rect2(490, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ssg6"] +atlas = ExtResource("1_u5h28") +region = Rect2(490, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lswnb"] +atlas = ExtResource("1_u5h28") +region = Rect2(490, 0, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t2ch"] +atlas = ExtResource("1_u5h28") +region = Rect2(245, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlnos"] +atlas = ExtResource("1_u5h28") +region = Rect2(245, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljqyg"] +atlas = ExtResource("1_u5h28") +region = Rect2(245, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5apln"] +atlas = ExtResource("1_u5h28") +region = Rect2(245, 0, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnslh"] +atlas = ExtResource("1_u5h28") +region = Rect2(0, 735, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dplqe"] +atlas = ExtResource("1_u5h28") +region = Rect2(0, 490, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82dna"] +atlas = ExtResource("1_u5h28") +region = Rect2(0, 245, 244, 244) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isn4n"] +atlas = ExtResource("1_u5h28") +region = Rect2(0, 0, 244, 244) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nyii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78l2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sojl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urky5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhnmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j84bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr5wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r017v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shfre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07as5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu02v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3w57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvcbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5wha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ssg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lswnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t2ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlnos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljqyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5apln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnslh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dplqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82dna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isn4n") +}], +"loop": true, +"name": &"judgment", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lionheartblessing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lionheartblessing.tres new file mode 100644 index 0000000..93de99b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_lionheartblessing.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://w0fbgopk1v2"] + +[ext_resource type="Texture2D" uid="uid://be73ib4q8pixy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png" id="1_3png7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_42t4k"] +atlas = ExtResource("1_3png7") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ebq"] +atlas = ExtResource("1_3png7") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyikj"] +atlas = ExtResource("1_3png7") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrknn"] +atlas = ExtResource("1_3png7") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6yuq"] +atlas = ExtResource("1_3png7") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jikat"] +atlas = ExtResource("1_3png7") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luj0r"] +atlas = ExtResource("1_3png7") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2tik"] +atlas = ExtResource("1_3png7") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixcxo"] +atlas = ExtResource("1_3png7") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kug7g"] +atlas = ExtResource("1_3png7") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ek0n"] +atlas = ExtResource("1_3png7") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2qrw"] +atlas = ExtResource("1_3png7") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b651t"] +atlas = ExtResource("1_3png7") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvjux"] +atlas = ExtResource("1_3png7") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cii2j"] +atlas = ExtResource("1_3png7") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqj5b"] +atlas = ExtResource("1_3png7") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rygoj"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn40o"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2tcq"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voqeh"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt564"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxs30"] +atlas = ExtResource("1_3png7") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsua2"] +atlas = ExtResource("1_3png7") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sowis"] +atlas = ExtResource("1_3png7") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m6dk"] +atlas = ExtResource("1_3png7") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl550"] +atlas = ExtResource("1_3png7") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0x6y"] +atlas = ExtResource("1_3png7") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42t4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ebq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyikj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrknn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6yuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jikat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luj0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2tik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixcxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kug7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ek0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2qrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b651t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvjux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cii2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqj5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rygoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn40o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2tcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voqeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt564") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxs30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsua2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sowis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m6dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl550") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0x6y") +}], +"loop": true, +"name": &"lionheartblessing", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_martyrdom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_martyrdom.tres new file mode 100644 index 0000000..810c50c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_martyrdom.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://cr7n1b2d0ba1q"] + +[ext_resource type="Texture2D" uid="uid://b1twfh8smtkui" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png" id="1_ad7o3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_akt88"] +atlas = ExtResource("1_ad7o3") +region = Rect2(394, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2jrw"] +atlas = ExtResource("1_ad7o3") +region = Rect2(788, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plpu7"] +atlas = ExtResource("1_ad7o3") +region = Rect2(788, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqokn"] +atlas = ExtResource("1_ad7o3") +region = Rect2(788, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eeuj"] +atlas = ExtResource("1_ad7o3") +region = Rect2(788, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5hoe"] +atlas = ExtResource("1_ad7o3") +region = Rect2(591, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm6jn"] +atlas = ExtResource("1_ad7o3") +region = Rect2(591, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_punye"] +atlas = ExtResource("1_ad7o3") +region = Rect2(591, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afo7q"] +atlas = ExtResource("1_ad7o3") +region = Rect2(591, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtas4"] +atlas = ExtResource("1_ad7o3") +region = Rect2(591, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xor5u"] +atlas = ExtResource("1_ad7o3") +region = Rect2(394, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr83o"] +atlas = ExtResource("1_ad7o3") +region = Rect2(394, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i81up"] +atlas = ExtResource("1_ad7o3") +region = Rect2(788, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54l3f"] +atlas = ExtResource("1_ad7o3") +region = Rect2(394, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhbqx"] +atlas = ExtResource("1_ad7o3") +region = Rect2(394, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pby4v"] +atlas = ExtResource("1_ad7o3") +region = Rect2(197, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5obn7"] +atlas = ExtResource("1_ad7o3") +region = Rect2(197, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqny4"] +atlas = ExtResource("1_ad7o3") +region = Rect2(197, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pppiq"] +atlas = ExtResource("1_ad7o3") +region = Rect2(197, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abtns"] +atlas = ExtResource("1_ad7o3") +region = Rect2(197, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaog4"] +atlas = ExtResource("1_ad7o3") +region = Rect2(0, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iillp"] +atlas = ExtResource("1_ad7o3") +region = Rect2(0, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evb46"] +atlas = ExtResource("1_ad7o3") +region = Rect2(0, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnq6j"] +atlas = ExtResource("1_ad7o3") +region = Rect2(0, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4k7d"] +atlas = ExtResource("1_ad7o3") +region = Rect2(0, 0, 196, 196) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_akt88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2jrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plpu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqokn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eeuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5hoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm6jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_punye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afo7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtas4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xor5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr83o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i81up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54l3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhbqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pby4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5obn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqny4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pppiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abtns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaog4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iillp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evb46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnq6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4k7d") +}], +"loop": true, +"name": &"martyrdom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_skyphalanx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_skyphalanx.tres new file mode 100644 index 0000000..754f077 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_skyphalanx.tres @@ -0,0 +1,221 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://l40ir8o0q4iy"] + +[ext_resource type="Texture2D" uid="uid://bligxnumlxs3e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png" id="1_msmjm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc81b"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pytk"] +atlas = ExtResource("1_msmjm") +region = Rect2(516, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp65f"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bvix"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jequp"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7lbs"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi6h7"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ssa3"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qixg2"] +atlas = ExtResource("1_msmjm") +region = Rect2(387, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saomo"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bawtq"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6har5"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltwth"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2se5t"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tygv3"] +atlas = ExtResource("1_msmjm") +region = Rect2(258, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqsfo"] +atlas = ExtResource("1_msmjm") +region = Rect2(516, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpwfr"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl66w"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oopk8"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccf4s"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wcik"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qotvp"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brko8"] +atlas = ExtResource("1_msmjm") +region = Rect2(129, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqpba"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvpij"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw8ot"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms3xs"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4d54"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbmmu"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikvya"] +atlas = ExtResource("1_msmjm") +region = Rect2(0, 0, 128, 128) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc81b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pytk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp65f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bvix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jequp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7lbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi6h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ssa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qixg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saomo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bawtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6har5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltwth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2se5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tygv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqsfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpwfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl66w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oopk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccf4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wcik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qotvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brko8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqpba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvpij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw8ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms3xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4d54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbmmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikvya") +}], +"loop": true, +"name": &"skyphalanx", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_sunbloom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_sunbloom.tres new file mode 100644 index 0000000..8049d18 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_sunbloom.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://q268r52ie4ow"] + +[ext_resource type="Texture2D" uid="uid://dvk3uo4suxjbj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png" id="1_87crw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao4tb"] +atlas = ExtResource("1_87crw") +region = Rect2(394, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1784"] +atlas = ExtResource("1_87crw") +region = Rect2(788, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yelvv"] +atlas = ExtResource("1_87crw") +region = Rect2(788, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baqbo"] +atlas = ExtResource("1_87crw") +region = Rect2(788, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agsyn"] +atlas = ExtResource("1_87crw") +region = Rect2(788, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmm7c"] +atlas = ExtResource("1_87crw") +region = Rect2(788, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r6wb"] +atlas = ExtResource("1_87crw") +region = Rect2(591, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0abv"] +atlas = ExtResource("1_87crw") +region = Rect2(591, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xksa1"] +atlas = ExtResource("1_87crw") +region = Rect2(591, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mams"] +atlas = ExtResource("1_87crw") +region = Rect2(591, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uutxg"] +atlas = ExtResource("1_87crw") +region = Rect2(591, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhe6n"] +atlas = ExtResource("1_87crw") +region = Rect2(394, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw28q"] +atlas = ExtResource("1_87crw") +region = Rect2(394, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j5yg"] +atlas = ExtResource("1_87crw") +region = Rect2(985, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10d6u"] +atlas = ExtResource("1_87crw") +region = Rect2(394, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn4vg"] +atlas = ExtResource("1_87crw") +region = Rect2(394, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dxgh"] +atlas = ExtResource("1_87crw") +region = Rect2(197, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x86of"] +atlas = ExtResource("1_87crw") +region = Rect2(197, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm72x"] +atlas = ExtResource("1_87crw") +region = Rect2(197, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejcbt"] +atlas = ExtResource("1_87crw") +region = Rect2(197, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfmgc"] +atlas = ExtResource("1_87crw") +region = Rect2(197, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_147ow"] +atlas = ExtResource("1_87crw") +region = Rect2(0, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl2r0"] +atlas = ExtResource("1_87crw") +region = Rect2(0, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yg7p"] +atlas = ExtResource("1_87crw") +region = Rect2(0, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql8v8"] +atlas = ExtResource("1_87crw") +region = Rect2(0, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpqif"] +atlas = ExtResource("1_87crw") +region = Rect2(0, 0, 196, 196) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao4tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1784") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yelvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baqbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agsyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmm7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r6wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0abv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xksa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mams") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uutxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhe6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw28q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j5yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10d6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn4vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dxgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x86of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm72x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejcbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfmgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_147ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl2r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yg7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql8v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpqif") +}], +"loop": true, +"name": &"sunbloom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_truestrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_truestrike.tres new file mode 100644 index 0000000..ca496d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_truestrike.tres @@ -0,0 +1,130 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://dih4uhp8xpxu5"] + +[ext_resource type="Texture2D" uid="uid://jcuto7kccgls" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png" id="1_5mmmh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xoxg"] +atlas = ExtResource("1_5mmmh") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0py34"] +atlas = ExtResource("1_5mmmh") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utxir"] +atlas = ExtResource("1_5mmmh") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4atrg"] +atlas = ExtResource("1_5mmmh") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjdto"] +atlas = ExtResource("1_5mmmh") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqaxr"] +atlas = ExtResource("1_5mmmh") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5tny"] +atlas = ExtResource("1_5mmmh") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df56a"] +atlas = ExtResource("1_5mmmh") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wr1i"] +atlas = ExtResource("1_5mmmh") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpveu"] +atlas = ExtResource("1_5mmmh") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feprt"] +atlas = ExtResource("1_5mmmh") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qow0v"] +atlas = ExtResource("1_5mmmh") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amgln"] +atlas = ExtResource("1_5mmmh") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avsr3"] +atlas = ExtResource("1_5mmmh") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe5g3"] +atlas = ExtResource("1_5mmmh") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwin5"] +atlas = ExtResource("1_5mmmh") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbrvk"] +atlas = ExtResource("1_5mmmh") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xoxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0py34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utxir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4atrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjdto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqaxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5tny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df56a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wr1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpveu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feprt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qow0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amgln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avsr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe5g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwin5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbrvk") +}], +"loop": true, +"name": &"truestrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_warsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_warsurge.tres new file mode 100644 index 0000000..bf52436 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f1_warsurge.tres @@ -0,0 +1,151 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://d2tbmcq6iqa4"] + +[ext_resource type="Texture2D" uid="uid://bptlk8mx410dx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png" id="1_flveu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q66m"] +atlas = ExtResource("1_flveu") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5bhp"] +atlas = ExtResource("1_flveu") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvsb3"] +atlas = ExtResource("1_flveu") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxo7f"] +atlas = ExtResource("1_flveu") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvu4a"] +atlas = ExtResource("1_flveu") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mifln"] +atlas = ExtResource("1_flveu") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gngdi"] +atlas = ExtResource("1_flveu") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppj4y"] +atlas = ExtResource("1_flveu") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdgkx"] +atlas = ExtResource("1_flveu") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol5lp"] +atlas = ExtResource("1_flveu") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqqk1"] +atlas = ExtResource("1_flveu") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw1x8"] +atlas = ExtResource("1_flveu") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnfrf"] +atlas = ExtResource("1_flveu") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifdb6"] +atlas = ExtResource("1_flveu") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbw5o"] +atlas = ExtResource("1_flveu") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpnej"] +atlas = ExtResource("1_flveu") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hye2h"] +atlas = ExtResource("1_flveu") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r630t"] +atlas = ExtResource("1_flveu") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anlmj"] +atlas = ExtResource("1_flveu") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0trf"] +atlas = ExtResource("1_flveu") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q66m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5bhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvsb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxo7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvu4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mifln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gngdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppj4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdgkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol5lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqqk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw1x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnfrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifdb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbw5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpnej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hye2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r630t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anlmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0trf") +}], +"loop": true, +"name": &"warsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2.tres new file mode 100644 index 0000000..d43dbf5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2.tres @@ -0,0 +1,168 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://dmv1i3bj44scs"] + +[ext_resource type="Texture2D" uid="uid://dp1nk8v34vw33" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png" id="1_pjw6e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_81bre"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 150, 44, 37) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0pkf"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 0, 56, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrlbp"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 114, 44, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt71p"] +atlas = ExtResource("1_pjw6e") +region = Rect2(44, 153, 26, 21) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv31l"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 242, 18, 14) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypwju"] +atlas = ExtResource("1_pjw6e") +region = Rect2(44, 114, 28, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m6m0"] +atlas = ExtResource("1_pjw6e") +region = Rect2(28, 199, 28, 41) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hliph"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 199, 28, 43) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg6m1"] +atlas = ExtResource("1_pjw6e") +region = Rect2(44, 174, 22, 19) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axf2p"] +atlas = ExtResource("1_pjw6e") +region = Rect2(44, 174, 22, 19) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyug7"] +atlas = ExtResource("1_pjw6e") +region = Rect2(44, 174, 22, 19) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qft6"] +atlas = ExtResource("1_pjw6e") +region = Rect2(48, 71, 22, 21) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdepk"] +atlas = ExtResource("1_pjw6e") +region = Rect2(48, 48, 22, 23) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh338"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 112, 48, 2) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60hr5"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 107, 48, 5) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvao1"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 99, 48, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfqxw"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 87, 48, 12) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f211"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 74, 48, 13) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76h1j"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 60, 48, 14) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbvb4"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 48, 48, 12) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkqmu"] +atlas = ExtResource("1_pjw6e") +region = Rect2(0, 187, 44, 12) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_81bre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0pkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrlbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt71p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv31l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypwju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m6m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hliph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg6m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axf2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyug7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qft6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdepk") +}], +"loop": true, +"name": &"devour", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh338") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60hr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvao1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfqxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f211") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76h1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbvb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkqmu") +}], +"loop": true, +"name": &"syphon", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_ancestralpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_ancestralpact.tres new file mode 100644 index 0000000..fe18042 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_ancestralpact.tres @@ -0,0 +1,277 @@ +[gd_resource type="SpriteFrames" load_steps=40 format=3 uid="uid://bnnhm6ayy56mf"] + +[ext_resource type="Texture2D" uid="uid://bwsst0gh4lbd3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png" id="1_24iv8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hm4c"] +atlas = ExtResource("1_24iv8") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b6cm"] +atlas = ExtResource("1_24iv8") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q75l1"] +atlas = ExtResource("1_24iv8") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5evna"] +atlas = ExtResource("1_24iv8") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxvxh"] +atlas = ExtResource("1_24iv8") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m44dn"] +atlas = ExtResource("1_24iv8") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hoam"] +atlas = ExtResource("1_24iv8") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m67gu"] +atlas = ExtResource("1_24iv8") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5hv3"] +atlas = ExtResource("1_24iv8") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l767m"] +atlas = ExtResource("1_24iv8") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sjo3"] +atlas = ExtResource("1_24iv8") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0koe"] +atlas = ExtResource("1_24iv8") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmoag"] +atlas = ExtResource("1_24iv8") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m0ht"] +atlas = ExtResource("1_24iv8") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nerm"] +atlas = ExtResource("1_24iv8") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mngnn"] +atlas = ExtResource("1_24iv8") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbked"] +atlas = ExtResource("1_24iv8") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y16sb"] +atlas = ExtResource("1_24iv8") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxajf"] +atlas = ExtResource("1_24iv8") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doimy"] +atlas = ExtResource("1_24iv8") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3crat"] +atlas = ExtResource("1_24iv8") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adb7y"] +atlas = ExtResource("1_24iv8") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg5x6"] +atlas = ExtResource("1_24iv8") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycinm"] +atlas = ExtResource("1_24iv8") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rfiw"] +atlas = ExtResource("1_24iv8") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ret7"] +atlas = ExtResource("1_24iv8") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqvxr"] +atlas = ExtResource("1_24iv8") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ddqn"] +atlas = ExtResource("1_24iv8") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a85sa"] +atlas = ExtResource("1_24iv8") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvs3b"] +atlas = ExtResource("1_24iv8") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn4yc"] +atlas = ExtResource("1_24iv8") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4trru"] +atlas = ExtResource("1_24iv8") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6elaq"] +atlas = ExtResource("1_24iv8") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0llch"] +atlas = ExtResource("1_24iv8") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5lq0"] +atlas = ExtResource("1_24iv8") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjow1"] +atlas = ExtResource("1_24iv8") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6hvq"] +atlas = ExtResource("1_24iv8") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1khl"] +atlas = ExtResource("1_24iv8") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hm4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b6cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q75l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5evna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxvxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m44dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hoam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m67gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5hv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l767m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sjo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0koe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmoag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m0ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nerm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mngnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbked") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y16sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxajf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doimy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3crat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adb7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg5x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycinm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rfiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ret7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqvxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ddqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a85sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvs3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn4yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4trru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6elaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0llch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5lq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjow1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6hvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1khl") +}], +"loop": true, +"name": &"ancestralpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_backstab.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_backstab.tres new file mode 100644 index 0000000..3459d92 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_backstab.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://kl8v88e7cp4d"] + +[ext_resource type="Texture2D" uid="uid://bcinag3o6emkr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png" id="1_ivbdv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l21h"] +atlas = ExtResource("1_ivbdv") +region = Rect2(145, 0, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buv1i"] +atlas = ExtResource("1_ivbdv") +region = Rect2(290, 0, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtmrw"] +atlas = ExtResource("1_ivbdv") +region = Rect2(145, 290, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ovj"] +atlas = ExtResource("1_ivbdv") +region = Rect2(145, 145, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy0y2"] +atlas = ExtResource("1_ivbdv") +region = Rect2(290, 145, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2rj2"] +atlas = ExtResource("1_ivbdv") +region = Rect2(0, 290, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuojb"] +atlas = ExtResource("1_ivbdv") +region = Rect2(0, 145, 144, 144) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo3nq"] +atlas = ExtResource("1_ivbdv") +region = Rect2(0, 0, 144, 144) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l21h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buv1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtmrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ovj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy0y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2rj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuojb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo3nq") +}], +"loop": true, +"name": &"backstab", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_arcaneheart.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_arcaneheart.tres new file mode 100644 index 0000000..b790c4b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_arcaneheart.tres @@ -0,0 +1,347 @@ +[gd_resource type="SpriteFrames" load_steps=50 format=3 uid="uid://c4upr7c3hefru"] + +[ext_resource type="Texture2D" uid="uid://r1v8nsspp868" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png" id="1_vep2l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w435p"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sysgf"] +atlas = ExtResource("1_vep2l") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnamm"] +atlas = ExtResource("1_vep2l") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2jih"] +atlas = ExtResource("1_vep2l") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcfbc"] +atlas = ExtResource("1_vep2l") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_658o8"] +atlas = ExtResource("1_vep2l") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsp03"] +atlas = ExtResource("1_vep2l") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn30i"] +atlas = ExtResource("1_vep2l") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjl1o"] +atlas = ExtResource("1_vep2l") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drt75"] +atlas = ExtResource("1_vep2l") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irgtt"] +atlas = ExtResource("1_vep2l") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_542oc"] +atlas = ExtResource("1_vep2l") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on8v7"] +atlas = ExtResource("1_vep2l") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8kjm"] +atlas = ExtResource("1_vep2l") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aigjn"] +atlas = ExtResource("1_vep2l") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mabra"] +atlas = ExtResource("1_vep2l") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7rtw"] +atlas = ExtResource("1_vep2l") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfng7"] +atlas = ExtResource("1_vep2l") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76xyx"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6eh6"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_artcv"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i1h2"] +atlas = ExtResource("1_vep2l") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpplu"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2w4l"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2tve"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pii11"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnyoe"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um873"] +atlas = ExtResource("1_vep2l") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou5uk"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2rcs"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyue1"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gllx"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veuw5"] +atlas = ExtResource("1_vep2l") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4axgo"] +atlas = ExtResource("1_vep2l") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlgnw"] +atlas = ExtResource("1_vep2l") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky4m7"] +atlas = ExtResource("1_vep2l") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na5vd"] +atlas = ExtResource("1_vep2l") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av6r0"] +atlas = ExtResource("1_vep2l") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnf6l"] +atlas = ExtResource("1_vep2l") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u620o"] +atlas = ExtResource("1_vep2l") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ndt4"] +atlas = ExtResource("1_vep2l") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx3gc"] +atlas = ExtResource("1_vep2l") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydbo7"] +atlas = ExtResource("1_vep2l") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtvu"] +atlas = ExtResource("1_vep2l") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp2g0"] +atlas = ExtResource("1_vep2l") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orhkl"] +atlas = ExtResource("1_vep2l") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvr1a"] +atlas = ExtResource("1_vep2l") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wskei"] +atlas = ExtResource("1_vep2l") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w435p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sysgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnamm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2jih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcfbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_658o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsp03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn30i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjl1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drt75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irgtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_542oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on8v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8kjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aigjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mabra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7rtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfng7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76xyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6eh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_artcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i1h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpplu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2w4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2tve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pii11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnyoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um873") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou5uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2rcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyue1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gllx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veuw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4axgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlgnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky4m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na5vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av6r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnf6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u620o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ndt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx3gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydbo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp2g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orhkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvr1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wskei") +}], +"loop": true, +"name": &"arcaneheart", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_blink.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_blink.tres new file mode 100644 index 0000000..39e9810 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_blink.tres @@ -0,0 +1,319 @@ +[gd_resource type="SpriteFrames" load_steps=46 format=3 uid="uid://rcm2d20861b8"] + +[ext_resource type="Texture2D" uid="uid://d2c04q4xp2v8c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png" id="1_2os14"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqgdw"] +atlas = ExtResource("1_2os14") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80yn8"] +atlas = ExtResource("1_2os14") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51jpy"] +atlas = ExtResource("1_2os14") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3f6g"] +atlas = ExtResource("1_2os14") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r7y7"] +atlas = ExtResource("1_2os14") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ixmf"] +atlas = ExtResource("1_2os14") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5o43"] +atlas = ExtResource("1_2os14") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjy86"] +atlas = ExtResource("1_2os14") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox376"] +atlas = ExtResource("1_2os14") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkb3c"] +atlas = ExtResource("1_2os14") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq056"] +atlas = ExtResource("1_2os14") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f20do"] +atlas = ExtResource("1_2os14") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ms1w"] +atlas = ExtResource("1_2os14") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g3vb"] +atlas = ExtResource("1_2os14") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5tx1"] +atlas = ExtResource("1_2os14") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ujkn"] +atlas = ExtResource("1_2os14") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pilxu"] +atlas = ExtResource("1_2os14") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0fn0"] +atlas = ExtResource("1_2os14") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruf83"] +atlas = ExtResource("1_2os14") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5xwg"] +atlas = ExtResource("1_2os14") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwpti"] +atlas = ExtResource("1_2os14") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6d3r"] +atlas = ExtResource("1_2os14") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r62jo"] +atlas = ExtResource("1_2os14") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wikxb"] +atlas = ExtResource("1_2os14") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7ebk"] +atlas = ExtResource("1_2os14") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peysw"] +atlas = ExtResource("1_2os14") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpstv"] +atlas = ExtResource("1_2os14") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn85l"] +atlas = ExtResource("1_2os14") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv3b0"] +atlas = ExtResource("1_2os14") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3ctr"] +atlas = ExtResource("1_2os14") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1myr"] +atlas = ExtResource("1_2os14") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plqto"] +atlas = ExtResource("1_2os14") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flx0k"] +atlas = ExtResource("1_2os14") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vlik"] +atlas = ExtResource("1_2os14") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohqne"] +atlas = ExtResource("1_2os14") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57emt"] +atlas = ExtResource("1_2os14") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yebgj"] +atlas = ExtResource("1_2os14") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjunp"] +atlas = ExtResource("1_2os14") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxofl"] +atlas = ExtResource("1_2os14") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq7ce"] +atlas = ExtResource("1_2os14") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bijr"] +atlas = ExtResource("1_2os14") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hugal"] +atlas = ExtResource("1_2os14") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osf2m"] +atlas = ExtResource("1_2os14") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c0md"] +atlas = ExtResource("1_2os14") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqgdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80yn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51jpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3f6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r7y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ixmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5o43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjy86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox376") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkb3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq056") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f20do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ms1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g3vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5tx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ujkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pilxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0fn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruf83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5xwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwpti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6d3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r62jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wikxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7ebk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peysw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpstv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn85l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv3b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3ctr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1myr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plqto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flx0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vlik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohqne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57emt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yebgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjunp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxofl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq7ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bijr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hugal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osf2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c0md") +}], +"loop": true, +"name": &"blink", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_spellsword.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_spellsword.tres new file mode 100644 index 0000000..34b1f19 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_bbs_spellsword.tres @@ -0,0 +1,361 @@ +[gd_resource type="SpriteFrames" load_steps=52 format=3 uid="uid://cf8juo3l0qakd"] + +[ext_resource type="Texture2D" uid="uid://d0yyrobfyecnv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png" id="1_uoa5q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mpg0"] +atlas = ExtResource("1_uoa5q") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvnnn"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1629, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b6bm"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1629, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l32ib"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1629, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kv7o"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ndkn"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh448"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iigy3"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inqqb"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86g7x"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdmrg"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs343"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xyvs"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86xb5"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2psc"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x68td"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4ode"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwx6s"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbaof"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1we32"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kh2y"] +atlas = ExtResource("1_uoa5q") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m38l0"] +atlas = ExtResource("1_uoa5q") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb0fy"] +atlas = ExtResource("1_uoa5q") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us71o"] +atlas = ExtResource("1_uoa5q") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72igl"] +atlas = ExtResource("1_uoa5q") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ip5m"] +atlas = ExtResource("1_uoa5q") +region = Rect2(1629, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5uek"] +atlas = ExtResource("1_uoa5q") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rxk1"] +atlas = ExtResource("1_uoa5q") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddpv3"] +atlas = ExtResource("1_uoa5q") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg7ae"] +atlas = ExtResource("1_uoa5q") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekfqg"] +atlas = ExtResource("1_uoa5q") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5a4u"] +atlas = ExtResource("1_uoa5q") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj3pa"] +atlas = ExtResource("1_uoa5q") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dbqa"] +atlas = ExtResource("1_uoa5q") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7d5w"] +atlas = ExtResource("1_uoa5q") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm5cq"] +atlas = ExtResource("1_uoa5q") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky6lh"] +atlas = ExtResource("1_uoa5q") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxro4"] +atlas = ExtResource("1_uoa5q") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq17m"] +atlas = ExtResource("1_uoa5q") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t45g8"] +atlas = ExtResource("1_uoa5q") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhj7g"] +atlas = ExtResource("1_uoa5q") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84lui"] +atlas = ExtResource("1_uoa5q") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlbeo"] +atlas = ExtResource("1_uoa5q") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frfgu"] +atlas = ExtResource("1_uoa5q") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ykxv"] +atlas = ExtResource("1_uoa5q") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtolj"] +atlas = ExtResource("1_uoa5q") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7641n"] +atlas = ExtResource("1_uoa5q") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayt3t"] +atlas = ExtResource("1_uoa5q") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3388"] +atlas = ExtResource("1_uoa5q") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xirww"] +atlas = ExtResource("1_uoa5q") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mpg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvnnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b6bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l32ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kv7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ndkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh448") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iigy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inqqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86g7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdmrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs343") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xyvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86xb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2psc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x68td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4ode") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwx6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbaof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1we32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kh2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m38l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb0fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us71o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72igl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ip5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5uek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rxk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddpv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg7ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekfqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5a4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj3pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dbqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7d5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm5cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky6lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxro4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq17m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t45g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhj7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84lui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlbeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frfgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ykxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtolj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7641n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayt3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3388") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xirww") +}], +"loop": true, +"name": &"spellsword", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_deathstrikeseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_deathstrikeseal.tres new file mode 100644 index 0000000..83849b6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_deathstrikeseal.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://dnteamhb7vge5"] + +[ext_resource type="Texture2D" uid="uid://c8a33aqvyklrf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png" id="1_mb02e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfk0c"] +atlas = ExtResource("1_mb02e") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh8gh"] +atlas = ExtResource("1_mb02e") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46ij3"] +atlas = ExtResource("1_mb02e") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cf2m"] +atlas = ExtResource("1_mb02e") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4bn0"] +atlas = ExtResource("1_mb02e") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7lkf"] +atlas = ExtResource("1_mb02e") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7r8y"] +atlas = ExtResource("1_mb02e") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfwtf"] +atlas = ExtResource("1_mb02e") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scxjb"] +atlas = ExtResource("1_mb02e") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0plc"] +atlas = ExtResource("1_mb02e") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1la62"] +atlas = ExtResource("1_mb02e") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs6w7"] +atlas = ExtResource("1_mb02e") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3dng"] +atlas = ExtResource("1_mb02e") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4og2"] +atlas = ExtResource("1_mb02e") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyvj5"] +atlas = ExtResource("1_mb02e") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkgar"] +atlas = ExtResource("1_mb02e") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5ya3"] +atlas = ExtResource("1_mb02e") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss6bv"] +atlas = ExtResource("1_mb02e") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5fr8"] +atlas = ExtResource("1_mb02e") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs5ll"] +atlas = ExtResource("1_mb02e") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6236"] +atlas = ExtResource("1_mb02e") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhsnf"] +atlas = ExtResource("1_mb02e") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4ove"] +atlas = ExtResource("1_mb02e") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3c5g"] +atlas = ExtResource("1_mb02e") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr3pm"] +atlas = ExtResource("1_mb02e") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb5eb"] +atlas = ExtResource("1_mb02e") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfg8i"] +atlas = ExtResource("1_mb02e") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpft6"] +atlas = ExtResource("1_mb02e") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86b4b"] +atlas = ExtResource("1_mb02e") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srrmc"] +atlas = ExtResource("1_mb02e") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ect"] +atlas = ExtResource("1_mb02e") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfk0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh8gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46ij3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cf2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4bn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7lkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7r8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfwtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scxjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0plc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1la62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs6w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3dng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4og2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyvj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkgar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5ya3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss6bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5fr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6236") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhsnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4ove") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3c5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr3pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb5eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfg8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpft6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86b4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srrmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ect") +}], +"loop": true, +"name": &"deathstrikeseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_bluelotus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_bluelotus.tres new file mode 100644 index 0000000..20e7dca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_bluelotus.tres @@ -0,0 +1,256 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://b01pcb4eu6cs"] + +[ext_resource type="Texture2D" uid="uid://cikgu4o7x0gl4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png" id="1_xus0e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sku2t"] +atlas = ExtResource("1_xus0e") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjsx3"] +atlas = ExtResource("1_xus0e") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o5t7"] +atlas = ExtResource("1_xus0e") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xahlr"] +atlas = ExtResource("1_xus0e") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac60g"] +atlas = ExtResource("1_xus0e") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54lnd"] +atlas = ExtResource("1_xus0e") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklu4"] +atlas = ExtResource("1_xus0e") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0anjo"] +atlas = ExtResource("1_xus0e") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxua6"] +atlas = ExtResource("1_xus0e") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2emx"] +atlas = ExtResource("1_xus0e") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7vtd"] +atlas = ExtResource("1_xus0e") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnomh"] +atlas = ExtResource("1_xus0e") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbkmr"] +atlas = ExtResource("1_xus0e") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo4gf"] +atlas = ExtResource("1_xus0e") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b51r4"] +atlas = ExtResource("1_xus0e") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ixl1"] +atlas = ExtResource("1_xus0e") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s2jl"] +atlas = ExtResource("1_xus0e") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah0mv"] +atlas = ExtResource("1_xus0e") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6utc"] +atlas = ExtResource("1_xus0e") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhj4q"] +atlas = ExtResource("1_xus0e") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yytn"] +atlas = ExtResource("1_xus0e") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfcry"] +atlas = ExtResource("1_xus0e") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72q5y"] +atlas = ExtResource("1_xus0e") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4tdc"] +atlas = ExtResource("1_xus0e") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owime"] +atlas = ExtResource("1_xus0e") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udloi"] +atlas = ExtResource("1_xus0e") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfh17"] +atlas = ExtResource("1_xus0e") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25mkm"] +atlas = ExtResource("1_xus0e") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnnr6"] +atlas = ExtResource("1_xus0e") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vldm"] +atlas = ExtResource("1_xus0e") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2o3s"] +atlas = ExtResource("1_xus0e") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_natte"] +atlas = ExtResource("1_xus0e") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo8d1"] +atlas = ExtResource("1_xus0e") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n57g"] +atlas = ExtResource("1_xus0e") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elk35"] +atlas = ExtResource("1_xus0e") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sku2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjsx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o5t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xahlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac60g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54lnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tklu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0anjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxua6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2emx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7vtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnomh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo4gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b51r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ixl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s2jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah0mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6utc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhj4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yytn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfcry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72q5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4tdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owime") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udloi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfh17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25mkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnnr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vldm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2o3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_natte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo8d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n57g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elk35") +}], +"loop": true, +"name": &"bluelotus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_purpleflame.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_purpleflame.tres new file mode 100644 index 0000000..f351d49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_purpleflame.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://dnuq0mo18tedx"] + +[ext_resource type="Texture2D" uid="uid://bfoos20mt7oix" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png" id="1_mhe6x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkbmt"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agwcy"] +atlas = ExtResource("1_mhe6x") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo3yi"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocuwf"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qru8"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8inp"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52u3q"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4yvl"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asuqr"] +atlas = ExtResource("1_mhe6x") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_katpf"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v3ak"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gavus"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ageag"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b7as"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlge1"] +atlas = ExtResource("1_mhe6x") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0m63"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j1cr"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kqay"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa8ai"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxs0v"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xlf5"] +atlas = ExtResource("1_mhe6x") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmn5j"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwl3i"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ed4"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asntx"] +atlas = ExtResource("1_mhe6x") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cokjc"] +atlas = ExtResource("1_mhe6x") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al2qo"] +atlas = ExtResource("1_mhe6x") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pgeh"] +atlas = ExtResource("1_mhe6x") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5qwd"] +atlas = ExtResource("1_mhe6x") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7ucm"] +atlas = ExtResource("1_mhe6x") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogxkg"] +atlas = ExtResource("1_mhe6x") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkbmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agwcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo3yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocuwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qru8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8inp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52u3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4yvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asuqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_katpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v3ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gavus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ageag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b7as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlge1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0m63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j1cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kqay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa8ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxs0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xlf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmn5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwl3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ed4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asntx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cokjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al2qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pgeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5qwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7ucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogxkg") +}], +"loop": true, +"name": &"purpleflame", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_teallotus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_teallotus.tres new file mode 100644 index 0000000..578edcc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_eightgates_teallotus.tres @@ -0,0 +1,256 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://cvdw4cyly6hkp"] + +[ext_resource type="Texture2D" uid="uid://cxjtxc20fhbh5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png" id="1_1u4tn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxnt3"] +atlas = ExtResource("1_1u4tn") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ksg"] +atlas = ExtResource("1_1u4tn") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boudu"] +atlas = ExtResource("1_1u4tn") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntabs"] +atlas = ExtResource("1_1u4tn") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hef3q"] +atlas = ExtResource("1_1u4tn") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lk8d"] +atlas = ExtResource("1_1u4tn") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca8a1"] +atlas = ExtResource("1_1u4tn") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwca8"] +atlas = ExtResource("1_1u4tn") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5uca"] +atlas = ExtResource("1_1u4tn") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmwgi"] +atlas = ExtResource("1_1u4tn") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd1pn"] +atlas = ExtResource("1_1u4tn") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2fwt"] +atlas = ExtResource("1_1u4tn") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ues5f"] +atlas = ExtResource("1_1u4tn") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onyd4"] +atlas = ExtResource("1_1u4tn") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1okde"] +atlas = ExtResource("1_1u4tn") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4piso"] +atlas = ExtResource("1_1u4tn") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj218"] +atlas = ExtResource("1_1u4tn") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1shkj"] +atlas = ExtResource("1_1u4tn") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2yi8"] +atlas = ExtResource("1_1u4tn") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st2we"] +atlas = ExtResource("1_1u4tn") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0sfq"] +atlas = ExtResource("1_1u4tn") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s73jr"] +atlas = ExtResource("1_1u4tn") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfh07"] +atlas = ExtResource("1_1u4tn") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc42j"] +atlas = ExtResource("1_1u4tn") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_milf8"] +atlas = ExtResource("1_1u4tn") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acxqe"] +atlas = ExtResource("1_1u4tn") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqwqh"] +atlas = ExtResource("1_1u4tn") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txs3v"] +atlas = ExtResource("1_1u4tn") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymadp"] +atlas = ExtResource("1_1u4tn") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhfwt"] +atlas = ExtResource("1_1u4tn") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3m2v"] +atlas = ExtResource("1_1u4tn") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqovm"] +atlas = ExtResource("1_1u4tn") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alp3r"] +atlas = ExtResource("1_1u4tn") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h468b"] +atlas = ExtResource("1_1u4tn") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxl4i"] +atlas = ExtResource("1_1u4tn") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxnt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ksg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boudu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntabs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hef3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lk8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca8a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwca8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5uca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmwgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd1pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2fwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ues5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onyd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1okde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4piso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj218") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1shkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2yi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st2we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0sfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s73jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfh07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc42j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_milf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acxqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqwqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txs3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymadp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhfwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3m2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqovm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alp3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h468b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxl4i") +}], +"loop": true, +"name": &"teallotus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_heavenseclipse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_heavenseclipse.tres new file mode 100644 index 0000000..796cff4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_heavenseclipse.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://btto0t53kejlt"] + +[ext_resource type="Texture2D" uid="uid://vdq1yr0u6j1p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png" id="1_jc48j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlor4"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqjtc"] +atlas = ExtResource("1_jc48j") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0gk0"] +atlas = ExtResource("1_jc48j") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_848ao"] +atlas = ExtResource("1_jc48j") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa0kn"] +atlas = ExtResource("1_jc48j") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8su8"] +atlas = ExtResource("1_jc48j") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl0at"] +atlas = ExtResource("1_jc48j") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvrd7"] +atlas = ExtResource("1_jc48j") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4sna"] +atlas = ExtResource("1_jc48j") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i7mx"] +atlas = ExtResource("1_jc48j") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acvv2"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7owp"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6kid"] +atlas = ExtResource("1_jc48j") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h34j8"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oolh"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30fw4"] +atlas = ExtResource("1_jc48j") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3tsi"] +atlas = ExtResource("1_jc48j") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ghsr"] +atlas = ExtResource("1_jc48j") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn46a"] +atlas = ExtResource("1_jc48j") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ael3e"] +atlas = ExtResource("1_jc48j") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ngnw"] +atlas = ExtResource("1_jc48j") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgfs2"] +atlas = ExtResource("1_jc48j") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pjor"] +atlas = ExtResource("1_jc48j") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yxgg"] +atlas = ExtResource("1_jc48j") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3hxd"] +atlas = ExtResource("1_jc48j") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2mkp"] +atlas = ExtResource("1_jc48j") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlor4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqjtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0gk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_848ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa0kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8su8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl0at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvrd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4sna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i7mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acvv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7owp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6kid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h34j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oolh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30fw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3tsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ghsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn46a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ael3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ngnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgfs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pjor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yxgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3hxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2mkp") +}], +"loop": true, +"name": &"heavenseclipse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_innerfocus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_innerfocus.tres new file mode 100644 index 0000000..7b59e6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_innerfocus.tres @@ -0,0 +1,214 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://hg81t2fgt5kb"] + +[ext_resource type="Texture2D" uid="uid://duivbduxieb7g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png" id="1_bc7kd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_82sru"] +atlas = ExtResource("1_bc7kd") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba35q"] +atlas = ExtResource("1_bc7kd") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2nd1"] +atlas = ExtResource("1_bc7kd") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r45d0"] +atlas = ExtResource("1_bc7kd") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0fpd"] +atlas = ExtResource("1_bc7kd") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flw8d"] +atlas = ExtResource("1_bc7kd") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhycu"] +atlas = ExtResource("1_bc7kd") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h3nn"] +atlas = ExtResource("1_bc7kd") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmbt0"] +atlas = ExtResource("1_bc7kd") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn8uu"] +atlas = ExtResource("1_bc7kd") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k04y"] +atlas = ExtResource("1_bc7kd") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnmrg"] +atlas = ExtResource("1_bc7kd") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct76a"] +atlas = ExtResource("1_bc7kd") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtsc4"] +atlas = ExtResource("1_bc7kd") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi2se"] +atlas = ExtResource("1_bc7kd") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6nwc"] +atlas = ExtResource("1_bc7kd") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwu7l"] +atlas = ExtResource("1_bc7kd") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pmfj"] +atlas = ExtResource("1_bc7kd") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjcos"] +atlas = ExtResource("1_bc7kd") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2t17"] +atlas = ExtResource("1_bc7kd") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q1c8"] +atlas = ExtResource("1_bc7kd") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbu2r"] +atlas = ExtResource("1_bc7kd") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl8n8"] +atlas = ExtResource("1_bc7kd") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsvs1"] +atlas = ExtResource("1_bc7kd") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru1tc"] +atlas = ExtResource("1_bc7kd") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn38a"] +atlas = ExtResource("1_bc7kd") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kia2o"] +atlas = ExtResource("1_bc7kd") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqs14"] +atlas = ExtResource("1_bc7kd") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xs4b"] +atlas = ExtResource("1_bc7kd") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_82sru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba35q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2nd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r45d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0fpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flw8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhycu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h3nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmbt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn8uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k04y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnmrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct76a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtsc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi2se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6nwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwu7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pmfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjcos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2t17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q1c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbu2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl8n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsvs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru1tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn38a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kia2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqs14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xs4b") +}], +"loop": true, +"name": &"innerfocus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_killingedge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_killingedge.tres new file mode 100644 index 0000000..bb268cd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_killingedge.tres @@ -0,0 +1,305 @@ +[gd_resource type="SpriteFrames" load_steps=44 format=3 uid="uid://bvocs1sa6tovt"] + +[ext_resource type="Texture2D" uid="uid://b2oec1nm6j18" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png" id="1_wj5qt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt6h5"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m3n0"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1407, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c4lo"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1407, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hblfe"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1407, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su6hg"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1407, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8ei4"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1407, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtnkm"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1206, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlpeb"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1206, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v3x3"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1206, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ofex"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1206, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulejm"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1206, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7we7x"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1005, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0kix"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxn4d"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltwv3"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftrtv"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyec2"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkpeb"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6sbi"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asov5"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xgw1"] +atlas = ExtResource("1_wj5qt") +region = Rect2(1608, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bojbu"] +atlas = ExtResource("1_wj5qt") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyi1w"] +atlas = ExtResource("1_wj5qt") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67k7l"] +atlas = ExtResource("1_wj5qt") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eawga"] +atlas = ExtResource("1_wj5qt") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om0te"] +atlas = ExtResource("1_wj5qt") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g77oq"] +atlas = ExtResource("1_wj5qt") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ilmv"] +atlas = ExtResource("1_wj5qt") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8y44"] +atlas = ExtResource("1_wj5qt") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs78x"] +atlas = ExtResource("1_wj5qt") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8qtb"] +atlas = ExtResource("1_wj5qt") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubkrk"] +atlas = ExtResource("1_wj5qt") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg6l5"] +atlas = ExtResource("1_wj5qt") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk4hb"] +atlas = ExtResource("1_wj5qt") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl7qt"] +atlas = ExtResource("1_wj5qt") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxhns"] +atlas = ExtResource("1_wj5qt") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvrt6"] +atlas = ExtResource("1_wj5qt") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhpyn"] +atlas = ExtResource("1_wj5qt") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7weqd"] +atlas = ExtResource("1_wj5qt") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf2tr"] +atlas = ExtResource("1_wj5qt") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp1gj"] +atlas = ExtResource("1_wj5qt") +region = Rect2(0, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s18yp"] +atlas = ExtResource("1_wj5qt") +region = Rect2(804, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt6h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m3n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c4lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hblfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su6hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8ei4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtnkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlpeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v3x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ofex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulejm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7we7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0kix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxn4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltwv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftrtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkpeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6sbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asov5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xgw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bojbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyi1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67k7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eawga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om0te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g77oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ilmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8y44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs78x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8qtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubkrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg6l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk4hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl7qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxhns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvrt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhpyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7weqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf2tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp1gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s18yp") +}], +"loop": true, +"name": &"killingedge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_koanofhorns.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_koanofhorns.tres new file mode 100644 index 0000000..8b818bd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_koanofhorns.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://b4selik1d7j5i"] + +[ext_resource type="Texture2D" uid="uid://bfqgtdhn0mvjc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png" id="1_1kc6w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0x5m"] +atlas = ExtResource("1_1kc6w") +region = Rect2(442, 663, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ui5t"] +atlas = ExtResource("1_1kc6w") +region = Rect2(1105, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_henhs"] +atlas = ExtResource("1_1kc6w") +region = Rect2(1105, 0, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvbdu"] +atlas = ExtResource("1_1kc6w") +region = Rect2(884, 663, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjm45"] +atlas = ExtResource("1_1kc6w") +region = Rect2(884, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bma0k"] +atlas = ExtResource("1_1kc6w") +region = Rect2(884, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c8gb"] +atlas = ExtResource("1_1kc6w") +region = Rect2(884, 0, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j45i"] +atlas = ExtResource("1_1kc6w") +region = Rect2(663, 663, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nonv8"] +atlas = ExtResource("1_1kc6w") +region = Rect2(663, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov4xb"] +atlas = ExtResource("1_1kc6w") +region = Rect2(663, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v52p7"] +atlas = ExtResource("1_1kc6w") +region = Rect2(663, 0, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7c1n"] +atlas = ExtResource("1_1kc6w") +region = Rect2(1105, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oefbd"] +atlas = ExtResource("1_1kc6w") +region = Rect2(442, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6rt1"] +atlas = ExtResource("1_1kc6w") +region = Rect2(442, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut3rl"] +atlas = ExtResource("1_1kc6w") +region = Rect2(442, 0, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdnm1"] +atlas = ExtResource("1_1kc6w") +region = Rect2(221, 663, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv2ud"] +atlas = ExtResource("1_1kc6w") +region = Rect2(221, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j5mg"] +atlas = ExtResource("1_1kc6w") +region = Rect2(221, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qism6"] +atlas = ExtResource("1_1kc6w") +region = Rect2(221, 0, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt4x0"] +atlas = ExtResource("1_1kc6w") +region = Rect2(0, 663, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53r8v"] +atlas = ExtResource("1_1kc6w") +region = Rect2(0, 442, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm76p"] +atlas = ExtResource("1_1kc6w") +region = Rect2(0, 221, 220, 220) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yvpp"] +atlas = ExtResource("1_1kc6w") +region = Rect2(0, 0, 220, 220) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0x5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ui5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_henhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvbdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjm45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bma0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c8gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j45i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nonv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov4xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v52p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7c1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oefbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6rt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut3rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdnm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv2ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j5mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qism6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt4x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53r8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm76p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yvpp") +}], +"loop": true, +"name": &"koanofhorns", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_manavortex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_manavortex.tres new file mode 100644 index 0000000..12a2e45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_manavortex.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://cvy2qw5e32vpl"] + +[ext_resource type="Texture2D" uid="uid://dcp8u5wrofgry" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png" id="1_ipw5i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fsen"] +atlas = ExtResource("1_ipw5i") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcft5"] +atlas = ExtResource("1_ipw5i") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b70li"] +atlas = ExtResource("1_ipw5i") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8k0c"] +atlas = ExtResource("1_ipw5i") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd5mg"] +atlas = ExtResource("1_ipw5i") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n3f8"] +atlas = ExtResource("1_ipw5i") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_524ly"] +atlas = ExtResource("1_ipw5i") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aawxd"] +atlas = ExtResource("1_ipw5i") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6we2"] +atlas = ExtResource("1_ipw5i") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8g7m"] +atlas = ExtResource("1_ipw5i") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if3ry"] +atlas = ExtResource("1_ipw5i") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bmgk"] +atlas = ExtResource("1_ipw5i") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js6xj"] +atlas = ExtResource("1_ipw5i") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yga3x"] +atlas = ExtResource("1_ipw5i") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u5vs"] +atlas = ExtResource("1_ipw5i") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlh85"] +atlas = ExtResource("1_ipw5i") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqhv5"] +atlas = ExtResource("1_ipw5i") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkdcc"] +atlas = ExtResource("1_ipw5i") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g71ut"] +atlas = ExtResource("1_ipw5i") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2634"] +atlas = ExtResource("1_ipw5i") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwmfx"] +atlas = ExtResource("1_ipw5i") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frrpy"] +atlas = ExtResource("1_ipw5i") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2o6d"] +atlas = ExtResource("1_ipw5i") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy4os"] +atlas = ExtResource("1_ipw5i") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0atk"] +atlas = ExtResource("1_ipw5i") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fsen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcft5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b70li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8k0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd5mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n3f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_524ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aawxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6we2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8g7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if3ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bmgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js6xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yga3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u5vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlh85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqhv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkdcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g71ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2634") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwmfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frrpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2o6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy4os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0atk") +}], +"loop": true, +"name": &"manavortex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_mistdragonseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_mistdragonseal.tres new file mode 100644 index 0000000..3db49a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_mistdragonseal.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://ca7vkk7e7f3iu"] + +[ext_resource type="Texture2D" uid="uid://iiyfpjnl7r7c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png" id="1_5v80c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx4sd"] +atlas = ExtResource("1_5v80c") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywkb3"] +atlas = ExtResource("1_5v80c") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciwxg"] +atlas = ExtResource("1_5v80c") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssxne"] +atlas = ExtResource("1_5v80c") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s65u8"] +atlas = ExtResource("1_5v80c") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftg3t"] +atlas = ExtResource("1_5v80c") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olu56"] +atlas = ExtResource("1_5v80c") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfjpd"] +atlas = ExtResource("1_5v80c") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abvm5"] +atlas = ExtResource("1_5v80c") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpb5h"] +atlas = ExtResource("1_5v80c") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gebvg"] +atlas = ExtResource("1_5v80c") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siswc"] +atlas = ExtResource("1_5v80c") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87w7q"] +atlas = ExtResource("1_5v80c") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42a7f"] +atlas = ExtResource("1_5v80c") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnmd6"] +atlas = ExtResource("1_5v80c") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geutk"] +atlas = ExtResource("1_5v80c") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gm4c"] +atlas = ExtResource("1_5v80c") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur5mm"] +atlas = ExtResource("1_5v80c") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwf51"] +atlas = ExtResource("1_5v80c") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xibnp"] +atlas = ExtResource("1_5v80c") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5mya"] +atlas = ExtResource("1_5v80c") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67cbo"] +atlas = ExtResource("1_5v80c") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rql3m"] +atlas = ExtResource("1_5v80c") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j66ot"] +atlas = ExtResource("1_5v80c") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn1un"] +atlas = ExtResource("1_5v80c") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5v7k"] +atlas = ExtResource("1_5v80c") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkimd"] +atlas = ExtResource("1_5v80c") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q48me"] +atlas = ExtResource("1_5v80c") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skmy5"] +atlas = ExtResource("1_5v80c") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny5ui"] +atlas = ExtResource("1_5v80c") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tpyy"] +atlas = ExtResource("1_5v80c") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx4sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywkb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciwxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssxne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s65u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftg3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olu56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfjpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abvm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpb5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gebvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siswc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87w7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42a7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnmd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geutk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gm4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur5mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwf51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xibnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5mya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67cbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rql3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j66ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn1un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5v7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkimd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q48me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skmy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny5ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tpyy") +}], +"loop": true, +"name": &"mistdragonseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_onyxbearseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_onyxbearseal.tres new file mode 100644 index 0000000..ecbe356 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_onyxbearseal.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://beio23vwcvt17"] + +[ext_resource type="Texture2D" uid="uid://bn33moocudywn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png" id="1_i3gyc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x7ci"] +atlas = ExtResource("1_i3gyc") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvb23"] +atlas = ExtResource("1_i3gyc") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byxc8"] +atlas = ExtResource("1_i3gyc") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5wj0"] +atlas = ExtResource("1_i3gyc") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2syp7"] +atlas = ExtResource("1_i3gyc") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30v54"] +atlas = ExtResource("1_i3gyc") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wddo"] +atlas = ExtResource("1_i3gyc") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byfp3"] +atlas = ExtResource("1_i3gyc") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo1lv"] +atlas = ExtResource("1_i3gyc") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxtag"] +atlas = ExtResource("1_i3gyc") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7tcl"] +atlas = ExtResource("1_i3gyc") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n1ux"] +atlas = ExtResource("1_i3gyc") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw1o7"] +atlas = ExtResource("1_i3gyc") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofqa4"] +atlas = ExtResource("1_i3gyc") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ij3a"] +atlas = ExtResource("1_i3gyc") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ihg"] +atlas = ExtResource("1_i3gyc") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fwtr"] +atlas = ExtResource("1_i3gyc") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0j4l"] +atlas = ExtResource("1_i3gyc") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfomr"] +atlas = ExtResource("1_i3gyc") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxphi"] +atlas = ExtResource("1_i3gyc") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8umae"] +atlas = ExtResource("1_i3gyc") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvdqs"] +atlas = ExtResource("1_i3gyc") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ky8"] +atlas = ExtResource("1_i3gyc") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu8mm"] +atlas = ExtResource("1_i3gyc") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m4ru"] +atlas = ExtResource("1_i3gyc") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqo8m"] +atlas = ExtResource("1_i3gyc") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61xip"] +atlas = ExtResource("1_i3gyc") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o0ub"] +atlas = ExtResource("1_i3gyc") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qb74"] +atlas = ExtResource("1_i3gyc") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83l1s"] +atlas = ExtResource("1_i3gyc") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuh4v"] +atlas = ExtResource("1_i3gyc") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x7ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvb23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byxc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5wj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2syp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30v54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wddo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byfp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo1lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxtag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7tcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n1ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw1o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofqa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ij3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ihg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fwtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0j4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfomr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxphi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8umae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvdqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ky8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu8mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m4ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqo8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61xip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o0ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qb74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83l1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuh4v") +}], +"loop": true, +"name": &"onyxbearseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_phoenixfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_phoenixfire.tres new file mode 100644 index 0000000..08fa868 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_phoenixfire.tres @@ -0,0 +1,277 @@ +[gd_resource type="SpriteFrames" load_steps=40 format=3 uid="uid://c4n46jvsnjumo"] + +[ext_resource type="Texture2D" uid="uid://bw5wicvl78ja2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png" id="1_fo53a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bly31"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt63c"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3v76"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syp8w"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vkpi"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i2bd"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pkca"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btlmj"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n1tl"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fllku"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj36d"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crxht"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvjb"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82you"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pywk3"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pe7b"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vij2"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp3yb"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ymy"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtyr"] +atlas = ExtResource("1_fo53a") +region = Rect2(302, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx7df"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21j2h"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37d1y"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w102x"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fyhl"] +atlas = ExtResource("1_fo53a") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfvpj"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibimt"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l31e"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ty1v"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3a0a"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp50m"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f0jp"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cmju"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jayny"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kutel"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy4ul"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbvo"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nh5w"] +atlas = ExtResource("1_fo53a") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bly31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt63c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3v76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syp8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vkpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i2bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pkca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btlmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n1tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fllku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj36d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crxht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82you") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pywk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pe7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vij2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp3yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ymy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewtyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx7df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21j2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37d1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w102x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fyhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfvpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibimt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l31e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ty1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3a0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp50m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f0jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cmju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jayny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kutel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy4ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwbvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nh5w") +}], +"loop": true, +"name": &"phoenixfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_saberspineseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_saberspineseal.tres new file mode 100644 index 0000000..063396a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_saberspineseal.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://drwujue0btk6s"] + +[ext_resource type="Texture2D" uid="uid://be63g00qlmeku" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png" id="1_yxdvf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m8ym"] +atlas = ExtResource("1_yxdvf") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq5pt"] +atlas = ExtResource("1_yxdvf") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52kx2"] +atlas = ExtResource("1_yxdvf") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2df6m"] +atlas = ExtResource("1_yxdvf") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cyh2"] +atlas = ExtResource("1_yxdvf") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pega4"] +atlas = ExtResource("1_yxdvf") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sdpn"] +atlas = ExtResource("1_yxdvf") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esb34"] +atlas = ExtResource("1_yxdvf") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhrxi"] +atlas = ExtResource("1_yxdvf") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43w34"] +atlas = ExtResource("1_yxdvf") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulrx7"] +atlas = ExtResource("1_yxdvf") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx3yr"] +atlas = ExtResource("1_yxdvf") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n0so"] +atlas = ExtResource("1_yxdvf") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxmsb"] +atlas = ExtResource("1_yxdvf") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ito3q"] +atlas = ExtResource("1_yxdvf") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euovc"] +atlas = ExtResource("1_yxdvf") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40x4c"] +atlas = ExtResource("1_yxdvf") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dcw6"] +atlas = ExtResource("1_yxdvf") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwssb"] +atlas = ExtResource("1_yxdvf") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3osa"] +atlas = ExtResource("1_yxdvf") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn8be"] +atlas = ExtResource("1_yxdvf") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xav6n"] +atlas = ExtResource("1_yxdvf") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x43h0"] +atlas = ExtResource("1_yxdvf") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3d5x"] +atlas = ExtResource("1_yxdvf") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh5s3"] +atlas = ExtResource("1_yxdvf") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijuqt"] +atlas = ExtResource("1_yxdvf") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2snsr"] +atlas = ExtResource("1_yxdvf") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdxpv"] +atlas = ExtResource("1_yxdvf") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa3bw"] +atlas = ExtResource("1_yxdvf") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68lha"] +atlas = ExtResource("1_yxdvf") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh1e2"] +atlas = ExtResource("1_yxdvf") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m8ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq5pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52kx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2df6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cyh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pega4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sdpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esb34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhrxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43w34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulrx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx3yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n0so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxmsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ito3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euovc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40x4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dcw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwssb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3osa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn8be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xav6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x43h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3d5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh5s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijuqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2snsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdxpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa3bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68lha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh1e2") +}], +"loop": true, +"name": &"saberspineseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_spiraltechnique02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_spiraltechnique02.tres new file mode 100644 index 0000000..de63dce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_spiraltechnique02.tres @@ -0,0 +1,242 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://cdrog1roxh07s"] + +[ext_resource type="Texture2D" uid="uid://uqbjplm5hfi7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png" id="1_v2ogx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n843y"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n32om"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sew2t"] +atlas = ExtResource("1_v2ogx") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lenm"] +atlas = ExtResource("1_v2ogx") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffln0"] +atlas = ExtResource("1_v2ogx") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08irp"] +atlas = ExtResource("1_v2ogx") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmq28"] +atlas = ExtResource("1_v2ogx") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lv3l"] +atlas = ExtResource("1_v2ogx") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv4r3"] +atlas = ExtResource("1_v2ogx") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a61s2"] +atlas = ExtResource("1_v2ogx") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfmkc"] +atlas = ExtResource("1_v2ogx") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfbqe"] +atlas = ExtResource("1_v2ogx") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kcwl"] +atlas = ExtResource("1_v2ogx") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t6c3"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdm2r"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a3hl"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsoqw"] +atlas = ExtResource("1_v2ogx") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfdja"] +atlas = ExtResource("1_v2ogx") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cnwu"] +atlas = ExtResource("1_v2ogx") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bruxt"] +atlas = ExtResource("1_v2ogx") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfqlp"] +atlas = ExtResource("1_v2ogx") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8y6y"] +atlas = ExtResource("1_v2ogx") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jily"] +atlas = ExtResource("1_v2ogx") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b32ea"] +atlas = ExtResource("1_v2ogx") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awmba"] +atlas = ExtResource("1_v2ogx") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd2v3"] +atlas = ExtResource("1_v2ogx") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2shwo"] +atlas = ExtResource("1_v2ogx") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky483"] +atlas = ExtResource("1_v2ogx") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b36ag"] +atlas = ExtResource("1_v2ogx") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv205"] +atlas = ExtResource("1_v2ogx") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i5xj"] +atlas = ExtResource("1_v2ogx") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q302"] +atlas = ExtResource("1_v2ogx") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfapx"] +atlas = ExtResource("1_v2ogx") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n843y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n32om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sew2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lenm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffln0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08irp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmq28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lv3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv4r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a61s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfmkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfbqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kcwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t6c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdm2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a3hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsoqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfdja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cnwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bruxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfqlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8y6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jily") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b32ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awmba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd2v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2shwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky483") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b36ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv205") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i5xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q302") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfapx") +}], +"loop": true, +"name": &"spiraltechnique02", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_teleport.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_teleport.tres new file mode 100644 index 0000000..4546ca1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_teleport.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://ftwo13ifl0xi"] + +[ext_resource type="Texture2D" uid="uid://m4t1yd8wnokq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png" id="1_3sh6u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp0jk"] +atlas = ExtResource("1_3sh6u") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1dx1"] +atlas = ExtResource("1_3sh6u") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6bxr"] +atlas = ExtResource("1_3sh6u") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42lcd"] +atlas = ExtResource("1_3sh6u") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfq4h"] +atlas = ExtResource("1_3sh6u") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skmrn"] +atlas = ExtResource("1_3sh6u") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilx0v"] +atlas = ExtResource("1_3sh6u") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51oj8"] +atlas = ExtResource("1_3sh6u") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp0jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1dx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6bxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42lcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfq4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skmrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilx0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51oj8") +}], +"loop": true, +"name": &"teleport", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twilightreiki.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twilightreiki.tres new file mode 100644 index 0000000..a38073d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twilightreiki.tres @@ -0,0 +1,235 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://bp16y70oaqp2j"] + +[ext_resource type="Texture2D" uid="uid://rh1dfwcv1unm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png" id="1_vhv7d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjvvd"] +atlas = ExtResource("1_vhv7d") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ginkl"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1206, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsmqv"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1005, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_625fx"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36eql"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nius7"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jck5o"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg4mp"] +atlas = ExtResource("1_vhv7d") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbct"] +atlas = ExtResource("1_vhv7d") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbmnq"] +atlas = ExtResource("1_vhv7d") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adfms"] +atlas = ExtResource("1_vhv7d") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rradj"] +atlas = ExtResource("1_vhv7d") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v3et"] +atlas = ExtResource("1_vhv7d") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h5qt"] +atlas = ExtResource("1_vhv7d") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u28ji"] +atlas = ExtResource("1_vhv7d") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ldbw"] +atlas = ExtResource("1_vhv7d") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t173h"] +atlas = ExtResource("1_vhv7d") +region = Rect2(1206, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn8ka"] +atlas = ExtResource("1_vhv7d") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_breyq"] +atlas = ExtResource("1_vhv7d") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53ual"] +atlas = ExtResource("1_vhv7d") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8ejn"] +atlas = ExtResource("1_vhv7d") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbdkq"] +atlas = ExtResource("1_vhv7d") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt24u"] +atlas = ExtResource("1_vhv7d") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y41mj"] +atlas = ExtResource("1_vhv7d") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnj43"] +atlas = ExtResource("1_vhv7d") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c53d"] +atlas = ExtResource("1_vhv7d") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faq6a"] +atlas = ExtResource("1_vhv7d") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c1ob"] +atlas = ExtResource("1_vhv7d") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8lf5"] +atlas = ExtResource("1_vhv7d") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_716kg"] +atlas = ExtResource("1_vhv7d") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ryq3"] +atlas = ExtResource("1_vhv7d") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j6d7"] +atlas = ExtResource("1_vhv7d") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjvvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ginkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsmqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_625fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36eql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nius7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jck5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg4mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbmnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adfms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rradj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v3et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h5qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u28ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ldbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t173h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn8ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_breyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53ual") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8ejn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbdkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt24u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y41mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnj43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c53d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faq6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c1ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8lf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_716kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ryq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j6d7") +}], +"loop": true, +"name": &"twilightreiki", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike.tres new file mode 100644 index 0000000..13eee22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike.tres @@ -0,0 +1,165 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://d1ik24ydsnleq"] + +[ext_resource type="Texture2D" uid="uid://crstk608aups8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png" id="1_j3gsc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4vxx"] +atlas = ExtResource("1_j3gsc") +region = Rect2(702, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybdh1"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1404, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiw1t"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1053, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sncyl"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1053, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de48b"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1053, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5xhj"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1053, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap2wp"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1053, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0d5t"] +atlas = ExtResource("1_j3gsc") +region = Rect2(702, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmiwi"] +atlas = ExtResource("1_j3gsc") +region = Rect2(702, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8csu7"] +atlas = ExtResource("1_j3gsc") +region = Rect2(702, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mdpf"] +atlas = ExtResource("1_j3gsc") +region = Rect2(702, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dahw6"] +atlas = ExtResource("1_j3gsc") +region = Rect2(1404, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28qfl"] +atlas = ExtResource("1_j3gsc") +region = Rect2(351, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2vv5"] +atlas = ExtResource("1_j3gsc") +region = Rect2(351, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekli7"] +atlas = ExtResource("1_j3gsc") +region = Rect2(351, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o10rp"] +atlas = ExtResource("1_j3gsc") +region = Rect2(351, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq87p"] +atlas = ExtResource("1_j3gsc") +region = Rect2(351, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6nuo"] +atlas = ExtResource("1_j3gsc") +region = Rect2(0, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmsl"] +atlas = ExtResource("1_j3gsc") +region = Rect2(0, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqkdf"] +atlas = ExtResource("1_j3gsc") +region = Rect2(0, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxvpl"] +atlas = ExtResource("1_j3gsc") +region = Rect2(0, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ec2r"] +atlas = ExtResource("1_j3gsc") +region = Rect2(0, 0, 350, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4vxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybdh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiw1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sncyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de48b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5xhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap2wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0d5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmiwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8csu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mdpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dahw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28qfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2vv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekli7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o10rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq87p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6nuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqkdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxvpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ec2r") +}], +"loop": true, +"name": &"twinstrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike_part2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike_part2.tres new file mode 100644 index 0000000..8787b64 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f2_twinstrike_part2.tres @@ -0,0 +1,165 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://b7oxfkssoemjt"] + +[ext_resource type="Texture2D" uid="uid://e86wc5ysl58a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png" id="1_14ysy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_11cku"] +atlas = ExtResource("1_14ysy") +region = Rect2(702, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a3s7"] +atlas = ExtResource("1_14ysy") +region = Rect2(1404, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvos4"] +atlas = ExtResource("1_14ysy") +region = Rect2(1053, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll4ld"] +atlas = ExtResource("1_14ysy") +region = Rect2(1053, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l75wx"] +atlas = ExtResource("1_14ysy") +region = Rect2(1053, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08egd"] +atlas = ExtResource("1_14ysy") +region = Rect2(1053, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfins"] +atlas = ExtResource("1_14ysy") +region = Rect2(1053, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3rds"] +atlas = ExtResource("1_14ysy") +region = Rect2(702, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhswp"] +atlas = ExtResource("1_14ysy") +region = Rect2(702, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nogjt"] +atlas = ExtResource("1_14ysy") +region = Rect2(702, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ul4"] +atlas = ExtResource("1_14ysy") +region = Rect2(702, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pps78"] +atlas = ExtResource("1_14ysy") +region = Rect2(1404, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8udj4"] +atlas = ExtResource("1_14ysy") +region = Rect2(351, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh1wg"] +atlas = ExtResource("1_14ysy") +region = Rect2(351, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wt1w"] +atlas = ExtResource("1_14ysy") +region = Rect2(351, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4ihm"] +atlas = ExtResource("1_14ysy") +region = Rect2(351, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csm5h"] +atlas = ExtResource("1_14ysy") +region = Rect2(351, 0, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfn0k"] +atlas = ExtResource("1_14ysy") +region = Rect2(0, 724, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pldp"] +atlas = ExtResource("1_14ysy") +region = Rect2(0, 543, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gltua"] +atlas = ExtResource("1_14ysy") +region = Rect2(0, 362, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h78e4"] +atlas = ExtResource("1_14ysy") +region = Rect2(0, 181, 350, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8laqa"] +atlas = ExtResource("1_14ysy") +region = Rect2(0, 0, 350, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_11cku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a3s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvos4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll4ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l75wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08egd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfins") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3rds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhswp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nogjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ul4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pps78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8udj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh1wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wt1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4ihm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csm5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfn0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pldp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gltua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h78e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8laqa") +}], +"loop": true, +"name": &"part2", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_aurorastears.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_aurorastears.tres new file mode 100644 index 0000000..9960487 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_aurorastears.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://cg1xk3clvmi1p"] + +[ext_resource type="Texture2D" uid="uid://doxmoe2swibv8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png" id="1_spxo3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ytc"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gr5v"] +atlas = ExtResource("1_spxo3") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5vo6"] +atlas = ExtResource("1_spxo3") +region = Rect2(843, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfo5e"] +atlas = ExtResource("1_spxo3") +region = Rect2(843, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu5ie"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgx7a"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1h0j"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb6h4"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ikot"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft3wl"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adc0h"] +atlas = ExtResource("1_spxo3") +region = Rect2(562, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0syrv"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcql3"] +atlas = ExtResource("1_spxo3") +region = Rect2(843, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8gmm"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7svd"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4qs2"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqig4"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dahaj"] +atlas = ExtResource("1_spxo3") +region = Rect2(281, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2a8y"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4s5g"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m44w"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptjp3"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6of0"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp2i2"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umoc7"] +atlas = ExtResource("1_spxo3") +region = Rect2(0, 0, 280, 280) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ytc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gr5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5vo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfo5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu5ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgx7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1h0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb6h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ikot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft3wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adc0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0syrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcql3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8gmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7svd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4qs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqig4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dahaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2a8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4s5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m44w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptjp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6of0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp2i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umoc7") +}], +"loop": true, +"name": &"aurorastears", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_hex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_hex.tres new file mode 100644 index 0000000..8b34a35 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_hex.tres @@ -0,0 +1,361 @@ +[gd_resource type="SpriteFrames" load_steps=52 format=3 uid="uid://dk3a67w8vmttb"] + +[ext_resource type="Texture2D" uid="uid://cwtkkqtf8hnrw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png" id="1_6yvji"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6sxu"] +atlas = ExtResource("1_6yvji") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmdi3"] +atlas = ExtResource("1_6yvji") +region = Rect2(1629, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2bxe"] +atlas = ExtResource("1_6yvji") +region = Rect2(1629, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6lik"] +atlas = ExtResource("1_6yvji") +region = Rect2(1629, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxeyn"] +atlas = ExtResource("1_6yvji") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sv8q"] +atlas = ExtResource("1_6yvji") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo1dg"] +atlas = ExtResource("1_6yvji") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn1xj"] +atlas = ExtResource("1_6yvji") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0io5"] +atlas = ExtResource("1_6yvji") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_absdf"] +atlas = ExtResource("1_6yvji") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04jrw"] +atlas = ExtResource("1_6yvji") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjv6k"] +atlas = ExtResource("1_6yvji") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h87l"] +atlas = ExtResource("1_6yvji") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a2mh"] +atlas = ExtResource("1_6yvji") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuevv"] +atlas = ExtResource("1_6yvji") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t58wn"] +atlas = ExtResource("1_6yvji") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j6ve"] +atlas = ExtResource("1_6yvji") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uymby"] +atlas = ExtResource("1_6yvji") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm1sk"] +atlas = ExtResource("1_6yvji") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b1yg"] +atlas = ExtResource("1_6yvji") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tehyj"] +atlas = ExtResource("1_6yvji") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usldi"] +atlas = ExtResource("1_6yvji") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djfsr"] +atlas = ExtResource("1_6yvji") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nkts"] +atlas = ExtResource("1_6yvji") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkco4"] +atlas = ExtResource("1_6yvji") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra8wn"] +atlas = ExtResource("1_6yvji") +region = Rect2(1629, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvhpv"] +atlas = ExtResource("1_6yvji") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_086jj"] +atlas = ExtResource("1_6yvji") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cttk2"] +atlas = ExtResource("1_6yvji") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3moj"] +atlas = ExtResource("1_6yvji") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1upoy"] +atlas = ExtResource("1_6yvji") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quj7k"] +atlas = ExtResource("1_6yvji") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1wf8"] +atlas = ExtResource("1_6yvji") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkb1d"] +atlas = ExtResource("1_6yvji") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxjn7"] +atlas = ExtResource("1_6yvji") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jg4s"] +atlas = ExtResource("1_6yvji") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx7iq"] +atlas = ExtResource("1_6yvji") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swemt"] +atlas = ExtResource("1_6yvji") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rpct"] +atlas = ExtResource("1_6yvji") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ncx"] +atlas = ExtResource("1_6yvji") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4njp"] +atlas = ExtResource("1_6yvji") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyfuw"] +atlas = ExtResource("1_6yvji") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ap5"] +atlas = ExtResource("1_6yvji") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7h2o"] +atlas = ExtResource("1_6yvji") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqrvr"] +atlas = ExtResource("1_6yvji") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7xsf"] +atlas = ExtResource("1_6yvji") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4npw"] +atlas = ExtResource("1_6yvji") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs4mf"] +atlas = ExtResource("1_6yvji") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c5hv"] +atlas = ExtResource("1_6yvji") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fycns"] +atlas = ExtResource("1_6yvji") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6sxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmdi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2bxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6lik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxeyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sv8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo1dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn1xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0io5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_absdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04jrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjv6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h87l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a2mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuevv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t58wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j6ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uymby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm1sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b1yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tehyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usldi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djfsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nkts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkco4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra8wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvhpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_086jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cttk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3moj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1upoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quj7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1wf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkb1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxjn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jg4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx7iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swemt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rpct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ncx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4njp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyfuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ap5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7h2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqrvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7xsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4npw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs4mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c5hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fycns") +}], +"loop": true, +"name": &"hex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_ironshroud.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_ironshroud.tres new file mode 100644 index 0000000..79c8f98 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_ironshroud.tres @@ -0,0 +1,319 @@ +[gd_resource type="SpriteFrames" load_steps=46 format=3 uid="uid://cdf40085sdarp"] + +[ext_resource type="Texture2D" uid="uid://bbyt21ytshihx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png" id="1_re44r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7da0a"] +atlas = ExtResource("1_re44r") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pki70"] +atlas = ExtResource("1_re44r") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtry2"] +atlas = ExtResource("1_re44r") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chhag"] +atlas = ExtResource("1_re44r") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kocut"] +atlas = ExtResource("1_re44r") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q6vt"] +atlas = ExtResource("1_re44r") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwpf8"] +atlas = ExtResource("1_re44r") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdcs7"] +atlas = ExtResource("1_re44r") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgtnq"] +atlas = ExtResource("1_re44r") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l7nl"] +atlas = ExtResource("1_re44r") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qbr3"] +atlas = ExtResource("1_re44r") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvppk"] +atlas = ExtResource("1_re44r") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnxbt"] +atlas = ExtResource("1_re44r") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5dv5"] +atlas = ExtResource("1_re44r") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la5j4"] +atlas = ExtResource("1_re44r") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwipn"] +atlas = ExtResource("1_re44r") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bneym"] +atlas = ExtResource("1_re44r") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fujmf"] +atlas = ExtResource("1_re44r") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bejxa"] +atlas = ExtResource("1_re44r") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8puv0"] +atlas = ExtResource("1_re44r") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02x4j"] +atlas = ExtResource("1_re44r") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c81sw"] +atlas = ExtResource("1_re44r") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x2ho"] +atlas = ExtResource("1_re44r") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkxjp"] +atlas = ExtResource("1_re44r") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nt3o"] +atlas = ExtResource("1_re44r") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88ode"] +atlas = ExtResource("1_re44r") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbqko"] +atlas = ExtResource("1_re44r") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqcmj"] +atlas = ExtResource("1_re44r") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtt67"] +atlas = ExtResource("1_re44r") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x66m5"] +atlas = ExtResource("1_re44r") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obxkt"] +atlas = ExtResource("1_re44r") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1asek"] +atlas = ExtResource("1_re44r") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ceb"] +atlas = ExtResource("1_re44r") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkqa7"] +atlas = ExtResource("1_re44r") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0op52"] +atlas = ExtResource("1_re44r") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs7cn"] +atlas = ExtResource("1_re44r") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx58y"] +atlas = ExtResource("1_re44r") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyc3r"] +atlas = ExtResource("1_re44r") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boduy"] +atlas = ExtResource("1_re44r") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quq1i"] +atlas = ExtResource("1_re44r") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu47a"] +atlas = ExtResource("1_re44r") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtven"] +atlas = ExtResource("1_re44r") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orj7t"] +atlas = ExtResource("1_re44r") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glby3"] +atlas = ExtResource("1_re44r") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7da0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pki70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtry2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chhag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kocut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q6vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwpf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdcs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgtnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l7nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qbr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvppk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnxbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5dv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la5j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwipn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bneym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fujmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bejxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8puv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02x4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c81sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x2ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkxjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nt3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88ode") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbqko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqcmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtt67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x66m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obxkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1asek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ceb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkqa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0op52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs7cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx58y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyc3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boduy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quq1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu47a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtven") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orj7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glby3") +}], +"loop": true, +"name": &"ironshroud", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_psyonicstrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_psyonicstrike.tres new file mode 100644 index 0000000..6dca869 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_bbs_psyonicstrike.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://7nfpxn54dgg5"] + +[ext_resource type="Texture2D" uid="uid://cudhp4ls4a64c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png" id="1_fkddc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx4fs"] +atlas = ExtResource("1_fkddc") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn6x7"] +atlas = ExtResource("1_fkddc") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hjlf"] +atlas = ExtResource("1_fkddc") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j4ms"] +atlas = ExtResource("1_fkddc") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71utt"] +atlas = ExtResource("1_fkddc") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06pp4"] +atlas = ExtResource("1_fkddc") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43q51"] +atlas = ExtResource("1_fkddc") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00vsr"] +atlas = ExtResource("1_fkddc") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kahv"] +atlas = ExtResource("1_fkddc") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0gww"] +atlas = ExtResource("1_fkddc") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo1i0"] +atlas = ExtResource("1_fkddc") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7plw2"] +atlas = ExtResource("1_fkddc") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lerl"] +atlas = ExtResource("1_fkddc") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oykrq"] +atlas = ExtResource("1_fkddc") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpi1k"] +atlas = ExtResource("1_fkddc") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77sw0"] +atlas = ExtResource("1_fkddc") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3f4l"] +atlas = ExtResource("1_fkddc") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ef2"] +atlas = ExtResource("1_fkddc") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tul4a"] +atlas = ExtResource("1_fkddc") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh4p3"] +atlas = ExtResource("1_fkddc") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgbv7"] +atlas = ExtResource("1_fkddc") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab0xd"] +atlas = ExtResource("1_fkddc") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvfg"] +atlas = ExtResource("1_fkddc") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sgcg"] +atlas = ExtResource("1_fkddc") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqgxc"] +atlas = ExtResource("1_fkddc") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iu8e"] +atlas = ExtResource("1_fkddc") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxyf7"] +atlas = ExtResource("1_fkddc") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hednf"] +atlas = ExtResource("1_fkddc") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxoe5"] +atlas = ExtResource("1_fkddc") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3f7h"] +atlas = ExtResource("1_fkddc") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llpcd"] +atlas = ExtResource("1_fkddc") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdrps"] +atlas = ExtResource("1_fkddc") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6qhg"] +atlas = ExtResource("1_fkddc") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lijhc"] +atlas = ExtResource("1_fkddc") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ao6q"] +atlas = ExtResource("1_fkddc") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3ji4"] +atlas = ExtResource("1_fkddc") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7ne5"] +atlas = ExtResource("1_fkddc") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w4u2"] +atlas = ExtResource("1_fkddc") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erugs"] +atlas = ExtResource("1_fkddc") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxhr7"] +atlas = ExtResource("1_fkddc") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx4fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn6x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hjlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j4ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71utt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06pp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43q51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00vsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kahv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0gww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo1i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7plw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lerl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oykrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpi1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77sw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3f4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ef2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tul4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh4p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgbv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab0xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sgcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqgxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iu8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxyf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hednf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxoe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3f7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llpcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdrps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6qhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lijhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ao6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3ji4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7ne5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w4u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erugs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxhr7") +}], +"loop": true, +"name": &"psyonicstrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blast.tres new file mode 100644 index 0000000..76f0c33 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blast.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://b3vm2s5aljcr2"] + +[ext_resource type="Texture2D" uid="uid://6dqxaib1ibug" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png" id="1_vos7s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t07o"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 793, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pury8"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 549, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo0gw"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 488, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd0oh"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 427, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n1wo"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 366, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdb61"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 305, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8cy0"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 244, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqnxb"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 183, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl3ba"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 122, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fo43"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 61, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prren"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 0, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8rt0"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 915, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k56j7"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 854, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jngux"] +atlas = ExtResource("1_vos7s") +region = Rect2(451, 610, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgjly"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 732, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r0fp"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 671, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osi5j"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 610, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjyd4"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 549, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v08ar"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 488, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktch6"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 427, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1g0j"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 366, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s4xv"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 305, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olrpq"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 244, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5n3y"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 183, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vmfr"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 122, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gdkw"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 61, 450, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p76fj"] +atlas = ExtResource("1_vos7s") +region = Rect2(0, 0, 450, 60) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t07o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pury8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo0gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd0oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n1wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdb61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8cy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqnxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl3ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fo43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prren") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8rt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k56j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jngux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgjly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r0fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osi5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjyd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v08ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktch6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1g0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s4xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olrpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5n3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vmfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gdkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p76fj") +}], +"loop": true, +"name": &"blast", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blaststarfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blaststarfire.tres new file mode 100644 index 0000000..3154362 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blaststarfire.tres @@ -0,0 +1,179 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://cm7goohkq6hho"] + +[ext_resource type="Texture2D" uid="uid://dqyhxcfoyx6g3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png" id="1_kuevv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy4em"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 891, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t32fw"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 810, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaopf"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 729, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvij7"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 648, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytiaw"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 567, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8nls"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 486, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_016fr"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 405, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbvle"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 324, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rfr7"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 243, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv7o4"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 162, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3km5f"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 81, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmhvq"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 0, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnf24"] +atlas = ExtResource("1_kuevv") +region = Rect2(481, 891, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4627"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 810, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbsfn"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 729, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb1fo"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 648, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqxtx"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 567, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0evx"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 486, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m16d"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 405, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gitr"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 324, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii8kj"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 243, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc5n7"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 162, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofgsv"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 81, 480, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn03d"] +atlas = ExtResource("1_kuevv") +region = Rect2(0, 0, 480, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy4em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t32fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaopf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvij7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytiaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8nls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_016fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbvle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rfr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv7o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3km5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmhvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnf24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4627") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbsfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb1fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqxtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0evx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m16d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gitr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii8kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc5n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofgsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn03d") +}], +"loop": true, +"name": &"blaststarfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blindscorch.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blindscorch.tres new file mode 100644 index 0000000..f0cdcba --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_blindscorch.tres @@ -0,0 +1,298 @@ +[gd_resource type="SpriteFrames" load_steps=43 format=3 uid="uid://cdjg58vim76kj"] + +[ext_resource type="Texture2D" uid="uid://cbo8h4qfqtao1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png" id="1_luupp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtjum"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxs7o"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qkm8"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yephx"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te4q5"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf0d8"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygjn5"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ap1"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frn0h"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v0uo"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4w6i"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi8d6"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw8tm"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7arf"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdroj"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53pof"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhnb0"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh2jf"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgc13"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npea3"] +atlas = ExtResource("1_luupp") +region = Rect2(843, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0uyx"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c30ke"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yi52"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11fu6"] +atlas = ExtResource("1_luupp") +region = Rect2(1124, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_540jo"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8mgy"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbd6v"] +atlas = ExtResource("1_luupp") +region = Rect2(562, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7y3h"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdwnn"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fbry"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk085"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l84rk"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trrpn"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5p3c"] +atlas = ExtResource("1_luupp") +region = Rect2(281, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qyc5"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0q8e"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3i47"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4lu0"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3kno"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q45v2"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucdkr"] +atlas = ExtResource("1_luupp") +region = Rect2(0, 0, 280, 280) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtjum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxs7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qkm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yephx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te4q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf0d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygjn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ap1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frn0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v0uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4w6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi8d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw8tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7arf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdroj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53pof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhnb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh2jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgc13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npea3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0uyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c30ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yi52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11fu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_540jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8mgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbd6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7y3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdwnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fbry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk085") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l84rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trrpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5p3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qyc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0q8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3i47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4lu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3kno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q45v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucdkr") +}], +"loop": true, +"name": &"blindscorch", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_boneswarm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_boneswarm.tres new file mode 100644 index 0000000..bcbfc2c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_boneswarm.tres @@ -0,0 +1,165 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://b3vyii1lottwg"] + +[ext_resource type="Texture2D" uid="uid://cqxbl4yv2vay2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png" id="1_fu8dt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qugd0"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bwtq"] +atlas = ExtResource("1_fu8dt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64151"] +atlas = ExtResource("1_fu8dt") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4woqa"] +atlas = ExtResource("1_fu8dt") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lvvy"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8gxh"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81m7q"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgxny"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbjm"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ext3v"] +atlas = ExtResource("1_fu8dt") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax5xe"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cev35"] +atlas = ExtResource("1_fu8dt") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55kj4"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arjrt"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b5wy"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wugy0"] +atlas = ExtResource("1_fu8dt") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isl6p"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e47xw"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jed67"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f35qv"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swsyr"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vng4"] +atlas = ExtResource("1_fu8dt") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qugd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bwtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64151") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4woqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lvvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8gxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81m7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgxny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fbjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ext3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax5xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cev35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55kj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arjrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b5wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wugy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isl6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e47xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jed67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f35qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swsyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vng4") +}], +"loop": true, +"name": &"boneswarm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cataclysmicfault.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cataclysmicfault.tres new file mode 100644 index 0000000..5b02281 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cataclysmicfault.tres @@ -0,0 +1,284 @@ +[gd_resource type="SpriteFrames" load_steps=41 format=3 uid="uid://bhhlj116pln5y"] + +[ext_resource type="Texture2D" uid="uid://btu2x2w007agn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png" id="1_q2kjj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7woy"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 753, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2351"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 1255, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e12lm"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 1004, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5hto"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 753, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idn2f"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 502, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pv63"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 251, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe0pu"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 0, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cugnk"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 1757, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qom2w"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 1506, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gduvq"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 1255, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5dpo"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 1004, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lsvy"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 753, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7eof"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 502, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt08t"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 251, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4tfm"] +atlas = ExtResource("1_q2kjj") +region = Rect2(753, 0, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqovi"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 1757, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23kku"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 1506, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ieg6"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 1255, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k56tg"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 1004, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljtp3"] +atlas = ExtResource("1_q2kjj") +region = Rect2(1004, 1506, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tydp0"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 502, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ifw"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 251, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfr12"] +atlas = ExtResource("1_q2kjj") +region = Rect2(502, 0, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21wv0"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 1757, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u3js"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 1506, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl84v"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 1255, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_earvi"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 1004, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u11uy"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 753, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18sxc"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 502, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q4n7"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 251, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43agl"] +atlas = ExtResource("1_q2kjj") +region = Rect2(251, 0, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfmmf"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 1757, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql4r3"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 1506, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seyoc"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 1255, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehsdg"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 1004, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o620q"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 753, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjr48"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 502, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlfm1"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 251, 250, 250) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqni0"] +atlas = ExtResource("1_q2kjj") +region = Rect2(0, 0, 250, 250) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7woy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2351") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e12lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5hto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idn2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pv63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe0pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cugnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qom2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gduvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5dpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lsvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7eof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt08t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4tfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqovi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23kku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ieg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k56tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljtp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tydp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ifw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfr12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21wv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u3js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl84v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_earvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u11uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18sxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q4n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43agl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfmmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql4r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seyoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehsdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o620q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjr48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlfm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqni0") +}], +"loop": true, +"name": &"cataclysmicfault", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cosmicflesh.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cosmicflesh.tres new file mode 100644 index 0000000..c8dadb0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_cosmicflesh.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://3aww66cpo241"] + +[ext_resource type="Texture2D" uid="uid://gihpqwxlnljf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png" id="1_rk64k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q35bx"] +atlas = ExtResource("1_rk64k") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bdmx"] +atlas = ExtResource("1_rk64k") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qhwq"] +atlas = ExtResource("1_rk64k") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eykjd"] +atlas = ExtResource("1_rk64k") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cc3l"] +atlas = ExtResource("1_rk64k") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykwo4"] +atlas = ExtResource("1_rk64k") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p5e3"] +atlas = ExtResource("1_rk64k") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_davyd"] +atlas = ExtResource("1_rk64k") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfdvs"] +atlas = ExtResource("1_rk64k") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpywd"] +atlas = ExtResource("1_rk64k") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u5f1"] +atlas = ExtResource("1_rk64k") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbyue"] +atlas = ExtResource("1_rk64k") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0c6r"] +atlas = ExtResource("1_rk64k") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dabdl"] +atlas = ExtResource("1_rk64k") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0teor"] +atlas = ExtResource("1_rk64k") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqb0d"] +atlas = ExtResource("1_rk64k") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul8fx"] +atlas = ExtResource("1_rk64k") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb0jq"] +atlas = ExtResource("1_rk64k") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o3y0"] +atlas = ExtResource("1_rk64k") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofbw5"] +atlas = ExtResource("1_rk64k") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1albs"] +atlas = ExtResource("1_rk64k") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75cac"] +atlas = ExtResource("1_rk64k") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ypmf"] +atlas = ExtResource("1_rk64k") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hhil"] +atlas = ExtResource("1_rk64k") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7n3v"] +atlas = ExtResource("1_rk64k") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23yaf"] +atlas = ExtResource("1_rk64k") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiki2"] +atlas = ExtResource("1_rk64k") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q35bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bdmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qhwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eykjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cc3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykwo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p5e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_davyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfdvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpywd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u5f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbyue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0c6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dabdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0teor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqb0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul8fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb0jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o3y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofbw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1albs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75cac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ypmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hhil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7n3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23yaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiki2") +}], +"loop": true, +"name": &"cosmicflesh", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_dominatewill.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_dominatewill.tres new file mode 100644 index 0000000..c27b821 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_dominatewill.tres @@ -0,0 +1,249 @@ +[gd_resource type="SpriteFrames" load_steps=36 format=3 uid="uid://co5ouyoce6n60"] + +[ext_resource type="Texture2D" uid="uid://cbl07gfnvrnpu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png" id="1_72inf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ftb2"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 1364, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f6un"] +atlas = ExtResource("1_72inf") +region = Rect2(1705, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83swu"] +atlas = ExtResource("1_72inf") +region = Rect2(1705, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nepm3"] +atlas = ExtResource("1_72inf") +region = Rect2(1705, 0, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nic4"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 1705, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knsbl"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 1364, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkq55"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctix4"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpxpj"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p0na"] +atlas = ExtResource("1_72inf") +region = Rect2(1364, 0, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_namsg"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 1705, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr8rp"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 1364, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dofom"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahbxm"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap35y"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bs5t"] +atlas = ExtResource("1_72inf") +region = Rect2(1023, 0, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw5kv"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 1705, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_webri"] +atlas = ExtResource("1_72inf") +region = Rect2(1705, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wyq4"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q2ft"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tct2n"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts4fx"] +atlas = ExtResource("1_72inf") +region = Rect2(682, 0, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ago"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 1705, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wdsv"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 1364, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8knq"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sjy0"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtl7l"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vxtf"] +atlas = ExtResource("1_72inf") +region = Rect2(341, 0, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkii2"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 1705, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4j5t"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 1364, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqfoj"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 1023, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeg3h"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 682, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihave"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 341, 340, 340) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp6yw"] +atlas = ExtResource("1_72inf") +region = Rect2(0, 0, 340, 340) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ftb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f6un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83swu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nepm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nic4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knsbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkq55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctix4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpxpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p0na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_namsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr8rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dofom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahbxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap35y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bs5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw5kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_webri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wyq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q2ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tct2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts4fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ago") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wdsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8knq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sjy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtl7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vxtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkii2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4j5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqfoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeg3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihave") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp6yw") +}], +"loop": true, +"name": &"dominatewill", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_drainmorale.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_drainmorale.tres new file mode 100644 index 0000000..c561350 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_drainmorale.tres @@ -0,0 +1,158 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://ci0d5h6xb04ik"] + +[ext_resource type="Texture2D" uid="uid://b27752er1qn38" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png" id="1_k2h52"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ve8g"] +atlas = ExtResource("1_k2h52") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c523"] +atlas = ExtResource("1_k2h52") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofxcu"] +atlas = ExtResource("1_k2h52") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp6ca"] +atlas = ExtResource("1_k2h52") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jmn0"] +atlas = ExtResource("1_k2h52") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i8gm"] +atlas = ExtResource("1_k2h52") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk87l"] +atlas = ExtResource("1_k2h52") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t0to"] +atlas = ExtResource("1_k2h52") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4o2o"] +atlas = ExtResource("1_k2h52") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrj46"] +atlas = ExtResource("1_k2h52") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py0oh"] +atlas = ExtResource("1_k2h52") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b3nx"] +atlas = ExtResource("1_k2h52") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6kp2"] +atlas = ExtResource("1_k2h52") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84kic"] +atlas = ExtResource("1_k2h52") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhcj2"] +atlas = ExtResource("1_k2h52") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3g6d"] +atlas = ExtResource("1_k2h52") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouh1a"] +atlas = ExtResource("1_k2h52") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_copfw"] +atlas = ExtResource("1_k2h52") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li0e1"] +atlas = ExtResource("1_k2h52") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8r3e"] +atlas = ExtResource("1_k2h52") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5igsr"] +atlas = ExtResource("1_k2h52") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ve8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c523") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofxcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp6ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jmn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i8gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk87l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t0to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4o2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrj46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py0oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b3nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6kp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84kic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhcj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3g6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouh1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_copfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li0e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8r3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5igsr") +}], +"loop": true, +"name": &"drainmorale", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_fountainofyouth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_fountainofyouth.tres new file mode 100644 index 0000000..461e3ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_fountainofyouth.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://81qtkknkrfuc"] + +[ext_resource type="Texture2D" uid="uid://we8j4memeydp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png" id="1_wc44c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cmm5"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6cms"] +atlas = ExtResource("1_wc44c") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34w4k"] +atlas = ExtResource("1_wc44c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht1sl"] +atlas = ExtResource("1_wc44c") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ytc0"] +atlas = ExtResource("1_wc44c") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m7y6"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf2ag"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jage6"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq2mm"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgxqd"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdadc"] +atlas = ExtResource("1_wc44c") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbkmo"] +atlas = ExtResource("1_wc44c") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm3d7"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ual34"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cess6"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7i8m"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4sbr"] +atlas = ExtResource("1_wc44c") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_symd7"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ods8"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpnai"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01vgc"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u34x"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_strri"] +atlas = ExtResource("1_wc44c") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cmm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6cms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34w4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht1sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ytc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m7y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf2ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jage6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq2mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgxqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdadc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbkmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm3d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ual34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cess6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7i8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4sbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_symd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ods8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpnai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01vgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u34x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_strri") +}], +"loop": true, +"name": &"fountainofyouth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_rashascurse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_rashascurse.tres new file mode 100644 index 0000000..e531c73 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_rashascurse.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://c0ctpk2qfbxcl"] + +[ext_resource type="Texture2D" uid="uid://ck25l58xt8j46" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png" id="1_1747p"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7ram"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wkgt"] +atlas = ExtResource("1_1747p") +region = Rect2(843, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbj8"] +atlas = ExtResource("1_1747p") +region = Rect2(843, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_342u2"] +atlas = ExtResource("1_1747p") +region = Rect2(843, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qfgk"] +atlas = ExtResource("1_1747p") +region = Rect2(843, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnmcr"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sor71"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55wp5"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd8nd"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siomh"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r72wv"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvoy4"] +atlas = ExtResource("1_1747p") +region = Rect2(562, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca2yo"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ytn"] +atlas = ExtResource("1_1747p") +region = Rect2(843, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it11k"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gldpn"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3ovk"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8a5v"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbrad"] +atlas = ExtResource("1_1747p") +region = Rect2(281, 0, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw56y"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 1686, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eey22"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 1405, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2l16"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 1124, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ni0r"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 843, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bn7j"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 562, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5hbv"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 281, 280, 280) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fk44"] +atlas = ExtResource("1_1747p") +region = Rect2(0, 0, 280, 280) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7ram") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wkgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmbj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_342u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qfgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnmcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sor71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55wp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd8nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siomh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r72wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvoy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca2yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ytn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it11k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gldpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3ovk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8a5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbrad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw56y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eey22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2l16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ni0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bn7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5hbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fk44") +}], +"loop": true, +"name": &"rashascurse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_sandportal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_sandportal.tres new file mode 100644 index 0000000..0b6a9dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_sandportal.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://bnivl4uyv3j5n"] + +[ext_resource type="Texture2D" uid="uid://dugyihlcllv1t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png" id="1_11ypw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiop4"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntkni"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eti0"] +atlas = ExtResource("1_11ypw") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgcg2"] +atlas = ExtResource("1_11ypw") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbumq"] +atlas = ExtResource("1_11ypw") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28iv2"] +atlas = ExtResource("1_11ypw") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv8yp"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcr2u"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vriku"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7p5t"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlcvt"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7cuv"] +atlas = ExtResource("1_11ypw") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixlcw"] +atlas = ExtResource("1_11ypw") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k47ap"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shefu"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q503l"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_365c3"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq6tb"] +atlas = ExtResource("1_11ypw") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chayq"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi3tr"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4jwg"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0f3m"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7su5"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gkrd"] +atlas = ExtResource("1_11ypw") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiop4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntkni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eti0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgcg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbumq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28iv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv8yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcr2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vriku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7p5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlcvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7cuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixlcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k47ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shefu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q503l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_365c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq6tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chayq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi3tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4jwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0f3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7su5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gkrd") +}], +"loop": true, +"name": &"sandportal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsfirstwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsfirstwish.tres new file mode 100644 index 0000000..770962e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsfirstwish.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://dfkp5pr4d7ew2"] + +[ext_resource type="Texture2D" uid="uid://cvqlrxc3hf47p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png" id="1_6qap3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye1b6"] +atlas = ExtResource("1_6qap3") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7fiw"] +atlas = ExtResource("1_6qap3") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kajuv"] +atlas = ExtResource("1_6qap3") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c6nv"] +atlas = ExtResource("1_6qap3") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc24t"] +atlas = ExtResource("1_6qap3") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1uxi"] +atlas = ExtResource("1_6qap3") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_647mv"] +atlas = ExtResource("1_6qap3") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2ar6"] +atlas = ExtResource("1_6qap3") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yww52"] +atlas = ExtResource("1_6qap3") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsgve"] +atlas = ExtResource("1_6qap3") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb316"] +atlas = ExtResource("1_6qap3") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x7ud"] +atlas = ExtResource("1_6qap3") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gica"] +atlas = ExtResource("1_6qap3") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytvxp"] +atlas = ExtResource("1_6qap3") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsj2u"] +atlas = ExtResource("1_6qap3") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwamk"] +atlas = ExtResource("1_6qap3") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd06s"] +atlas = ExtResource("1_6qap3") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5rsr"] +atlas = ExtResource("1_6qap3") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0di05"] +atlas = ExtResource("1_6qap3") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw2s7"] +atlas = ExtResource("1_6qap3") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i7nr"] +atlas = ExtResource("1_6qap3") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omxna"] +atlas = ExtResource("1_6qap3") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsm2m"] +atlas = ExtResource("1_6qap3") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v62tr"] +atlas = ExtResource("1_6qap3") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp6kx"] +atlas = ExtResource("1_6qap3") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uhuy"] +atlas = ExtResource("1_6qap3") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4munw"] +atlas = ExtResource("1_6qap3") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yydww"] +atlas = ExtResource("1_6qap3") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2056"] +atlas = ExtResource("1_6qap3") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efi3p"] +atlas = ExtResource("1_6qap3") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhqtw"] +atlas = ExtResource("1_6qap3") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye1b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7fiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kajuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c6nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc24t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1uxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_647mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2ar6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yww52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsgve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb316") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x7ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gica") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytvxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsj2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwamk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd06s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5rsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0di05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw2s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i7nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omxna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsm2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v62tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp6kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uhuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4munw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yydww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2056") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efi3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhqtw") +}], +"loop": true, +"name": &"scionsfirstwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionssecondwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionssecondwish.tres new file mode 100644 index 0000000..a17088e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionssecondwish.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://c37f2khby8ndn"] + +[ext_resource type="Texture2D" uid="uid://be1m3j7mfrl1y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png" id="1_227f4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3np"] +atlas = ExtResource("1_227f4") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vtcp"] +atlas = ExtResource("1_227f4") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydtdc"] +atlas = ExtResource("1_227f4") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbvls"] +atlas = ExtResource("1_227f4") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvplr"] +atlas = ExtResource("1_227f4") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g17x2"] +atlas = ExtResource("1_227f4") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_073bp"] +atlas = ExtResource("1_227f4") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4nlm"] +atlas = ExtResource("1_227f4") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqsbb"] +atlas = ExtResource("1_227f4") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shs7h"] +atlas = ExtResource("1_227f4") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b2gl"] +atlas = ExtResource("1_227f4") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2jho"] +atlas = ExtResource("1_227f4") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04o5t"] +atlas = ExtResource("1_227f4") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cthsh"] +atlas = ExtResource("1_227f4") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ccry"] +atlas = ExtResource("1_227f4") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mfi6"] +atlas = ExtResource("1_227f4") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh6hy"] +atlas = ExtResource("1_227f4") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyg5t"] +atlas = ExtResource("1_227f4") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxp84"] +atlas = ExtResource("1_227f4") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7okhw"] +atlas = ExtResource("1_227f4") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5xfg"] +atlas = ExtResource("1_227f4") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7t80"] +atlas = ExtResource("1_227f4") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp2oq"] +atlas = ExtResource("1_227f4") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da21r"] +atlas = ExtResource("1_227f4") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg6wo"] +atlas = ExtResource("1_227f4") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmoxe"] +atlas = ExtResource("1_227f4") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3phg1"] +atlas = ExtResource("1_227f4") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi6jr"] +atlas = ExtResource("1_227f4") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tfea"] +atlas = ExtResource("1_227f4") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grsj7"] +atlas = ExtResource("1_227f4") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wydc1"] +atlas = ExtResource("1_227f4") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vtcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydtdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbvls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvplr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g17x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_073bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4nlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqsbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shs7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b2gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2jho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04o5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cthsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ccry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mfi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh6hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyg5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxp84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7okhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5xfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7t80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp2oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da21r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg6wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmoxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3phg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi6jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tfea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grsj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wydc1") +}], +"loop": true, +"name": &"scionssecondwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsthirdwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsthirdwish.tres new file mode 100644 index 0000000..620039e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_scionsthirdwish.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://bcu5m2quphlut"] + +[ext_resource type="Texture2D" uid="uid://cxkdkjvvn1wxv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png" id="1_s83yg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_no85c"] +atlas = ExtResource("1_s83yg") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lui3"] +atlas = ExtResource("1_s83yg") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4456"] +atlas = ExtResource("1_s83yg") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaa52"] +atlas = ExtResource("1_s83yg") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5kxj"] +atlas = ExtResource("1_s83yg") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lljw6"] +atlas = ExtResource("1_s83yg") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5tri"] +atlas = ExtResource("1_s83yg") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0dcx"] +atlas = ExtResource("1_s83yg") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wch56"] +atlas = ExtResource("1_s83yg") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bk1o"] +atlas = ExtResource("1_s83yg") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vasgp"] +atlas = ExtResource("1_s83yg") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aodli"] +atlas = ExtResource("1_s83yg") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71wfd"] +atlas = ExtResource("1_s83yg") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfi3v"] +atlas = ExtResource("1_s83yg") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poggp"] +atlas = ExtResource("1_s83yg") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u3yi"] +atlas = ExtResource("1_s83yg") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r2ee"] +atlas = ExtResource("1_s83yg") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okcjr"] +atlas = ExtResource("1_s83yg") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tgyp"] +atlas = ExtResource("1_s83yg") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3tvj"] +atlas = ExtResource("1_s83yg") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc0mx"] +atlas = ExtResource("1_s83yg") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhl28"] +atlas = ExtResource("1_s83yg") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wykq1"] +atlas = ExtResource("1_s83yg") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ogl"] +atlas = ExtResource("1_s83yg") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo13a"] +atlas = ExtResource("1_s83yg") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utlss"] +atlas = ExtResource("1_s83yg") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4eks"] +atlas = ExtResource("1_s83yg") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thlq2"] +atlas = ExtResource("1_s83yg") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33oe2"] +atlas = ExtResource("1_s83yg") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6f85"] +atlas = ExtResource("1_s83yg") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srwhc"] +atlas = ExtResource("1_s83yg") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_no85c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lui3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4456") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaa52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5kxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lljw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5tri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0dcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wch56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bk1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vasgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aodli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71wfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfi3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poggp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u3yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r2ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okcjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tgyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3tvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc0mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhl28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wykq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ogl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo13a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utlss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4eks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thlq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33oe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6f85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srwhc") +}], +"loop": true, +"name": &"scionsthirdwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_starsfury.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_starsfury.tres new file mode 100644 index 0000000..e8e74be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f3_starsfury.tres @@ -0,0 +1,333 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://derd5h8i8ej0t"] + +[ext_resource type="Texture2D" uid="uid://c8fm3uoy402ib" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png" id="1_h88dp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mri6q"] +atlas = ExtResource("1_h88dp") +region = Rect2(366, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtc53"] +atlas = ExtResource("1_h88dp") +region = Rect2(793, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2cc3"] +atlas = ExtResource("1_h88dp") +region = Rect2(732, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h36uv"] +atlas = ExtResource("1_h88dp") +region = Rect2(732, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4y8k"] +atlas = ExtResource("1_h88dp") +region = Rect2(671, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1nxy"] +atlas = ExtResource("1_h88dp") +region = Rect2(671, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdls6"] +atlas = ExtResource("1_h88dp") +region = Rect2(610, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ji5p"] +atlas = ExtResource("1_h88dp") +region = Rect2(610, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsdm0"] +atlas = ExtResource("1_h88dp") +region = Rect2(549, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkl5q"] +atlas = ExtResource("1_h88dp") +region = Rect2(671, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewwhe"] +atlas = ExtResource("1_h88dp") +region = Rect2(549, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyo75"] +atlas = ExtResource("1_h88dp") +region = Rect2(610, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy88f"] +atlas = ExtResource("1_h88dp") +region = Rect2(549, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m52t"] +atlas = ExtResource("1_h88dp") +region = Rect2(671, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pttdl"] +atlas = ExtResource("1_h88dp") +region = Rect2(549, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qp06"] +atlas = ExtResource("1_h88dp") +region = Rect2(549, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnf6r"] +atlas = ExtResource("1_h88dp") +region = Rect2(488, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqfbi"] +atlas = ExtResource("1_h88dp") +region = Rect2(488, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc5o5"] +atlas = ExtResource("1_h88dp") +region = Rect2(427, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oecf"] +atlas = ExtResource("1_h88dp") +region = Rect2(427, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pxl7"] +atlas = ExtResource("1_h88dp") +region = Rect2(793, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pb3q"] +atlas = ExtResource("1_h88dp") +region = Rect2(366, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch0ms"] +atlas = ExtResource("1_h88dp") +region = Rect2(305, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpp15"] +atlas = ExtResource("1_h88dp") +region = Rect2(305, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2s6a"] +atlas = ExtResource("1_h88dp") +region = Rect2(244, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alo6x"] +atlas = ExtResource("1_h88dp") +region = Rect2(244, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kli1r"] +atlas = ExtResource("1_h88dp") +region = Rect2(305, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x34wm"] +atlas = ExtResource("1_h88dp") +region = Rect2(244, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tnh6"] +atlas = ExtResource("1_h88dp") +region = Rect2(244, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vb20"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiob8"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46itq"] +atlas = ExtResource("1_h88dp") +region = Rect2(122, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdii8"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwc8s"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui1kv"] +atlas = ExtResource("1_h88dp") +region = Rect2(122, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcjlm"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnrmr"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxacy"] +atlas = ExtResource("1_h88dp") +region = Rect2(122, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htab5"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb11b"] +atlas = ExtResource("1_h88dp") +region = Rect2(183, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brr1j"] +atlas = ExtResource("1_h88dp") +region = Rect2(122, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3opw0"] +atlas = ExtResource("1_h88dp") +region = Rect2(61, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1ofc"] +atlas = ExtResource("1_h88dp") +region = Rect2(61, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfkbr"] +atlas = ExtResource("1_h88dp") +region = Rect2(0, 451, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8b0a"] +atlas = ExtResource("1_h88dp") +region = Rect2(0, 0, 60, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6in8"] +atlas = ExtResource("1_h88dp") +region = Rect2(366, 451, 60, 450) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mri6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtc53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2cc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h36uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4y8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1nxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdls6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ji5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsdm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkl5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewwhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyo75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy88f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m52t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pttdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qp06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnf6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqfbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc5o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oecf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pxl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pb3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch0ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpp15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2s6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alo6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kli1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x34wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tnh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vb20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiob8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46itq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwc8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui1kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcjlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnrmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxacy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htab5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb11b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brr1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3opw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1ofc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfkbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8b0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6in8") +}], +"loop": true, +"name": &"starsfury", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_abyssalscar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_abyssalscar.tres new file mode 100644 index 0000000..aea62f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_abyssalscar.tres @@ -0,0 +1,312 @@ +[gd_resource type="SpriteFrames" load_steps=45 format=3 uid="uid://ccwkijmwx87tg"] + +[ext_resource type="Texture2D" uid="uid://bfj12qn417h13" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png" id="1_i5qbe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wni1w"] +atlas = ExtResource("1_i5qbe") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2wil"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edvkd"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at5ef"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfyxp"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woaaf"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1crl"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qoyc"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06f7s"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8r3t"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8rjn"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwfh"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxbak"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukl7u"] +atlas = ExtResource("1_i5qbe") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0is0"] +atlas = ExtResource("1_i5qbe") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia2m6"] +atlas = ExtResource("1_i5qbe") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu583"] +atlas = ExtResource("1_i5qbe") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypfu8"] +atlas = ExtResource("1_i5qbe") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvnw7"] +atlas = ExtResource("1_i5qbe") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx4db"] +atlas = ExtResource("1_i5qbe") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3qfa"] +atlas = ExtResource("1_i5qbe") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlygh"] +atlas = ExtResource("1_i5qbe") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o26g4"] +atlas = ExtResource("1_i5qbe") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae5yj"] +atlas = ExtResource("1_i5qbe") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htthd"] +atlas = ExtResource("1_i5qbe") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s16y"] +atlas = ExtResource("1_i5qbe") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5kly"] +atlas = ExtResource("1_i5qbe") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r32gd"] +atlas = ExtResource("1_i5qbe") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66fap"] +atlas = ExtResource("1_i5qbe") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1a8e"] +atlas = ExtResource("1_i5qbe") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyw3b"] +atlas = ExtResource("1_i5qbe") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js302"] +atlas = ExtResource("1_i5qbe") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l86lo"] +atlas = ExtResource("1_i5qbe") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngkyb"] +atlas = ExtResource("1_i5qbe") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi2c2"] +atlas = ExtResource("1_i5qbe") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbcj7"] +atlas = ExtResource("1_i5qbe") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3wqo"] +atlas = ExtResource("1_i5qbe") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu61d"] +atlas = ExtResource("1_i5qbe") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy00a"] +atlas = ExtResource("1_i5qbe") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2b7j"] +atlas = ExtResource("1_i5qbe") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6w61"] +atlas = ExtResource("1_i5qbe") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vdn1"] +atlas = ExtResource("1_i5qbe") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y78kr"] +atlas = ExtResource("1_i5qbe") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wni1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2wil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edvkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at5ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfyxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woaaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1crl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qoyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06f7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8r3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8rjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxwfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxbak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukl7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0is0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia2m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu583") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypfu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvnw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx4db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3qfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlygh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o26g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae5yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htthd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s16y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5kly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r32gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66fap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1a8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyw3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js302") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l86lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngkyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi2c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbcj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3wqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu61d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy00a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2b7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6w61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vdn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y78kr") +}], +"loop": true, +"name": &"abyssalscar", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_husk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_husk.tres new file mode 100644 index 0000000..f57b9be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_husk.tres @@ -0,0 +1,396 @@ +[gd_resource type="SpriteFrames" load_steps=57 format=3 uid="uid://ce0toa4k57bpp"] + +[ext_resource type="Texture2D" uid="uid://d0vu02lf1mygj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png" id="1_nd8vj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqmju"] +atlas = ExtResource("1_nd8vj") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dbh6"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1810, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yuwx"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1629, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01vrc"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1629, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugv4q"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1629, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hmfg"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1629, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jusgb"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5re67"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28rkq"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wceu4"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37w68"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g8pl"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p00lf"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjpmp"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jld3p"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmrj3"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgyw7"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7qc8"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enhqw"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ycef"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj144"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc05j"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klcfs"] +atlas = ExtResource("1_nd8vj") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npxrj"] +atlas = ExtResource("1_nd8vj") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgtlq"] +atlas = ExtResource("1_nd8vj") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol0rn"] +atlas = ExtResource("1_nd8vj") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybfyi"] +atlas = ExtResource("1_nd8vj") +region = Rect2(1810, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvpaq"] +atlas = ExtResource("1_nd8vj") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pasqh"] +atlas = ExtResource("1_nd8vj") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owvev"] +atlas = ExtResource("1_nd8vj") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyt6v"] +atlas = ExtResource("1_nd8vj") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epc4m"] +atlas = ExtResource("1_nd8vj") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t36t5"] +atlas = ExtResource("1_nd8vj") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd2im"] +atlas = ExtResource("1_nd8vj") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5jkx"] +atlas = ExtResource("1_nd8vj") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grhfj"] +atlas = ExtResource("1_nd8vj") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oemhx"] +atlas = ExtResource("1_nd8vj") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k65ef"] +atlas = ExtResource("1_nd8vj") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25pwj"] +atlas = ExtResource("1_nd8vj") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhppw"] +atlas = ExtResource("1_nd8vj") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi7k4"] +atlas = ExtResource("1_nd8vj") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o0vv"] +atlas = ExtResource("1_nd8vj") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlig4"] +atlas = ExtResource("1_nd8vj") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efe7u"] +atlas = ExtResource("1_nd8vj") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k53wg"] +atlas = ExtResource("1_nd8vj") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o10ft"] +atlas = ExtResource("1_nd8vj") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhyx4"] +atlas = ExtResource("1_nd8vj") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smyws"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpmxp"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiq2c"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t52ef"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vjy8"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjgqm"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2x2h"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d1gv"] +atlas = ExtResource("1_nd8vj") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqmju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dbh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yuwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01vrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugv4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hmfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jusgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5re67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28rkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wceu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37w68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g8pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p00lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjpmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jld3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmrj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgyw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7qc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enhqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ycef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj144") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc05j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klcfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npxrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgtlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol0rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybfyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvpaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pasqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owvev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyt6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epc4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t36t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd2im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5jkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grhfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oemhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k65ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25pwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhppw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi7k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o0vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlig4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efe7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k53wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o10ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhyx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smyws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpmxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiq2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t52ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vjy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjgqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2x2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d1gv") +}], +"loop": true, +"name": &"husk", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_shadowspawn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_shadowspawn.tres new file mode 100644 index 0000000..bdce9d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_bbs_shadowspawn.tres @@ -0,0 +1,319 @@ +[gd_resource type="SpriteFrames" load_steps=46 format=3 uid="uid://deoynt0hd8sgo"] + +[ext_resource type="Texture2D" uid="uid://cfchgk7wjmmhb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png" id="1_cpvdc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_db5m8"] +atlas = ExtResource("1_cpvdc") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fn6j"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yos32"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl04l"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u1qj"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifox4"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lnrc"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl4rv"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85ou1"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke2la"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cbc1"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj43f"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa55i"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2c4l"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4x14"] +atlas = ExtResource("1_cpvdc") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbi76"] +atlas = ExtResource("1_cpvdc") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvped"] +atlas = ExtResource("1_cpvdc") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esi61"] +atlas = ExtResource("1_cpvdc") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxckd"] +atlas = ExtResource("1_cpvdc") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y284i"] +atlas = ExtResource("1_cpvdc") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hfhl"] +atlas = ExtResource("1_cpvdc") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrocj"] +atlas = ExtResource("1_cpvdc") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si4gi"] +atlas = ExtResource("1_cpvdc") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ers2d"] +atlas = ExtResource("1_cpvdc") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggsno"] +atlas = ExtResource("1_cpvdc") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwflc"] +atlas = ExtResource("1_cpvdc") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n6je"] +atlas = ExtResource("1_cpvdc") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp06g"] +atlas = ExtResource("1_cpvdc") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ire1d"] +atlas = ExtResource("1_cpvdc") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp4mp"] +atlas = ExtResource("1_cpvdc") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atu2r"] +atlas = ExtResource("1_cpvdc") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmtvp"] +atlas = ExtResource("1_cpvdc") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp8eu"] +atlas = ExtResource("1_cpvdc") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs7qd"] +atlas = ExtResource("1_cpvdc") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bxrs"] +atlas = ExtResource("1_cpvdc") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rfig"] +atlas = ExtResource("1_cpvdc") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr87f"] +atlas = ExtResource("1_cpvdc") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sge84"] +atlas = ExtResource("1_cpvdc") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqsgk"] +atlas = ExtResource("1_cpvdc") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctok0"] +atlas = ExtResource("1_cpvdc") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ya78"] +atlas = ExtResource("1_cpvdc") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svdcl"] +atlas = ExtResource("1_cpvdc") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsnls"] +atlas = ExtResource("1_cpvdc") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw3qo"] +atlas = ExtResource("1_cpvdc") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_db5m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fn6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yos32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl04l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u1qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifox4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lnrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl4rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85ou1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke2la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cbc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj43f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa55i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2c4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4x14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbi76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvped") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esi61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxckd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y284i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hfhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrocj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si4gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ers2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggsno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwflc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n6je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp06g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ire1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp4mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atu2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmtvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp8eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs7qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bxrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rfig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr87f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sge84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqsgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctok0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ya78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svdcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsnls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw3qo") +}], +"loop": true, +"name": &"shadowspawn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_consumingrebirth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_consumingrebirth.tres new file mode 100644 index 0000000..7f96e25 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_consumingrebirth.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://bekwrh4yv156s"] + +[ext_resource type="Texture2D" uid="uid://bobi4xbcoasej" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png" id="1_andol"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gspc"] +atlas = ExtResource("1_andol") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc7eu"] +atlas = ExtResource("1_andol") +region = Rect2(906, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3w5f"] +atlas = ExtResource("1_andol") +region = Rect2(906, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryhmh"] +atlas = ExtResource("1_andol") +region = Rect2(906, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu4ai"] +atlas = ExtResource("1_andol") +region = Rect2(755, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qfl4"] +atlas = ExtResource("1_andol") +region = Rect2(755, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgb0x"] +atlas = ExtResource("1_andol") +region = Rect2(755, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63cpc"] +atlas = ExtResource("1_andol") +region = Rect2(755, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdx0c"] +atlas = ExtResource("1_andol") +region = Rect2(755, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrt8l"] +atlas = ExtResource("1_andol") +region = Rect2(755, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pucoj"] +atlas = ExtResource("1_andol") +region = Rect2(604, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br854"] +atlas = ExtResource("1_andol") +region = Rect2(604, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq5bf"] +atlas = ExtResource("1_andol") +region = Rect2(604, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2i8g"] +atlas = ExtResource("1_andol") +region = Rect2(604, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uayoe"] +atlas = ExtResource("1_andol") +region = Rect2(604, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tog8k"] +atlas = ExtResource("1_andol") +region = Rect2(604, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbba0"] +atlas = ExtResource("1_andol") +region = Rect2(453, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n06jn"] +atlas = ExtResource("1_andol") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5utns"] +atlas = ExtResource("1_andol") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qgp0"] +atlas = ExtResource("1_andol") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4bfc"] +atlas = ExtResource("1_andol") +region = Rect2(906, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw3ps"] +atlas = ExtResource("1_andol") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twr8y"] +atlas = ExtResource("1_andol") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8kv"] +atlas = ExtResource("1_andol") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6svks"] +atlas = ExtResource("1_andol") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx05f"] +atlas = ExtResource("1_andol") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch2p0"] +atlas = ExtResource("1_andol") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmhdf"] +atlas = ExtResource("1_andol") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdu6s"] +atlas = ExtResource("1_andol") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drbw4"] +atlas = ExtResource("1_andol") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptcis"] +atlas = ExtResource("1_andol") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp0ye"] +atlas = ExtResource("1_andol") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq4v4"] +atlas = ExtResource("1_andol") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vks0a"] +atlas = ExtResource("1_andol") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjnrj"] +atlas = ExtResource("1_andol") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty7ag"] +atlas = ExtResource("1_andol") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xge1r"] +atlas = ExtResource("1_andol") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0a3m"] +atlas = ExtResource("1_andol") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216jk"] +atlas = ExtResource("1_andol") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdtoq"] +atlas = ExtResource("1_andol") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gspc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc7eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3w5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryhmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu4ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qfl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgb0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63cpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdx0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrt8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pucoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br854") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq5bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2i8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uayoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tog8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbba0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n06jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5utns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qgp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4bfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw3ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twr8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q8kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6svks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx05f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch2p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmhdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdu6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drbw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptcis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp0ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq4v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vks0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjnrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty7ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xge1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0a3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdtoq") +}], +"loop": true, +"name": &"consumingrebirth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_curseofagony.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_curseofagony.tres new file mode 100644 index 0000000..a2786a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_curseofagony.tres @@ -0,0 +1,158 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://dbmm3jbmmirwn"] + +[ext_resource type="Texture2D" uid="uid://c3cfjnphbkg4o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png" id="1_xgl1n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpvp0"] +atlas = ExtResource("1_xgl1n") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fcyi"] +atlas = ExtResource("1_xgl1n") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po4yt"] +atlas = ExtResource("1_xgl1n") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmb4r"] +atlas = ExtResource("1_xgl1n") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sec55"] +atlas = ExtResource("1_xgl1n") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvfb"] +atlas = ExtResource("1_xgl1n") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idqkq"] +atlas = ExtResource("1_xgl1n") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4eu5"] +atlas = ExtResource("1_xgl1n") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6hrn"] +atlas = ExtResource("1_xgl1n") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu2me"] +atlas = ExtResource("1_xgl1n") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fgmx"] +atlas = ExtResource("1_xgl1n") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stotk"] +atlas = ExtResource("1_xgl1n") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd4pp"] +atlas = ExtResource("1_xgl1n") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ujhx"] +atlas = ExtResource("1_xgl1n") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx87r"] +atlas = ExtResource("1_xgl1n") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj0u2"] +atlas = ExtResource("1_xgl1n") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj17o"] +atlas = ExtResource("1_xgl1n") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbhjs"] +atlas = ExtResource("1_xgl1n") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v3kf"] +atlas = ExtResource("1_xgl1n") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k82af"] +atlas = ExtResource("1_xgl1n") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmacy"] +atlas = ExtResource("1_xgl1n") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpvp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fcyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po4yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmb4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sec55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idqkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4eu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6hrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu2me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fgmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stotk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd4pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ujhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx87r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj0u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj17o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbhjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v3kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k82af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmacy") +}], +"loop": true, +"name": &"curseofagony", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_daemoniclure.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_daemoniclure.tres new file mode 100644 index 0000000..d47d7b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_daemoniclure.tres @@ -0,0 +1,221 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bok14iolbcmkn"] + +[ext_resource type="Texture2D" uid="uid://0qoy7fmj8p7g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png" id="1_use5h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dtcx"] +atlas = ExtResource("1_use5h") +region = Rect2(352, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16jfb"] +atlas = ExtResource("1_use5h") +region = Rect2(880, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw5cg"] +atlas = ExtResource("1_use5h") +region = Rect2(880, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nylyf"] +atlas = ExtResource("1_use5h") +region = Rect2(880, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwvy4"] +atlas = ExtResource("1_use5h") +region = Rect2(880, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx8wt"] +atlas = ExtResource("1_use5h") +region = Rect2(704, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc1pt"] +atlas = ExtResource("1_use5h") +region = Rect2(704, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7sps"] +atlas = ExtResource("1_use5h") +region = Rect2(704, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4oxq"] +atlas = ExtResource("1_use5h") +region = Rect2(704, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm8s2"] +atlas = ExtResource("1_use5h") +region = Rect2(704, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4yjd"] +atlas = ExtResource("1_use5h") +region = Rect2(528, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wtvp"] +atlas = ExtResource("1_use5h") +region = Rect2(528, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuq17"] +atlas = ExtResource("1_use5h") +region = Rect2(528, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhh3x"] +atlas = ExtResource("1_use5h") +region = Rect2(528, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdy35"] +atlas = ExtResource("1_use5h") +region = Rect2(528, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxkxi"] +atlas = ExtResource("1_use5h") +region = Rect2(880, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stfcw"] +atlas = ExtResource("1_use5h") +region = Rect2(352, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1rfw"] +atlas = ExtResource("1_use5h") +region = Rect2(352, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewbb7"] +atlas = ExtResource("1_use5h") +region = Rect2(352, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05din"] +atlas = ExtResource("1_use5h") +region = Rect2(352, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iis7"] +atlas = ExtResource("1_use5h") +region = Rect2(176, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbjli"] +atlas = ExtResource("1_use5h") +region = Rect2(176, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vihx"] +atlas = ExtResource("1_use5h") +region = Rect2(176, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_341ls"] +atlas = ExtResource("1_use5h") +region = Rect2(176, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a6uy"] +atlas = ExtResource("1_use5h") +region = Rect2(176, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqk6n"] +atlas = ExtResource("1_use5h") +region = Rect2(0, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwpe4"] +atlas = ExtResource("1_use5h") +region = Rect2(0, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq2mx"] +atlas = ExtResource("1_use5h") +region = Rect2(0, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l11uo"] +atlas = ExtResource("1_use5h") +region = Rect2(0, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7tg0"] +atlas = ExtResource("1_use5h") +region = Rect2(0, 0, 175, 175) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dtcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16jfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw5cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nylyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwvy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx8wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc1pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7sps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4oxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm8s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4yjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wtvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuq17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhh3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdy35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxkxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stfcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1rfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewbb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05din") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iis7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbjli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vihx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_341ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a6uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqk6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwpe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq2mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l11uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7tg0") +}], +"loop": true, +"name": &"daemoniclure", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiresacrifice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiresacrifice.tres new file mode 100644 index 0000000..ee4eb8a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiresacrifice.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://nmyp4r1l67ih"] + +[ext_resource type="Texture2D" uid="uid://dilkwahjrqjg0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png" id="1_tidnm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h7m1"] +atlas = ExtResource("1_tidnm") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjpxc"] +atlas = ExtResource("1_tidnm") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_343k0"] +atlas = ExtResource("1_tidnm") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l535c"] +atlas = ExtResource("1_tidnm") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_supf1"] +atlas = ExtResource("1_tidnm") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk2ir"] +atlas = ExtResource("1_tidnm") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rakuq"] +atlas = ExtResource("1_tidnm") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6qca"] +atlas = ExtResource("1_tidnm") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d17ts"] +atlas = ExtResource("1_tidnm") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a1il"] +atlas = ExtResource("1_tidnm") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h347w"] +atlas = ExtResource("1_tidnm") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw51i"] +atlas = ExtResource("1_tidnm") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flgkg"] +atlas = ExtResource("1_tidnm") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e1um"] +atlas = ExtResource("1_tidnm") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp03d"] +atlas = ExtResource("1_tidnm") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm4q6"] +atlas = ExtResource("1_tidnm") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bd1x"] +atlas = ExtResource("1_tidnm") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siee1"] +atlas = ExtResource("1_tidnm") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui1cy"] +atlas = ExtResource("1_tidnm") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsind"] +atlas = ExtResource("1_tidnm") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mojfc"] +atlas = ExtResource("1_tidnm") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvsdh"] +atlas = ExtResource("1_tidnm") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y1pb"] +atlas = ExtResource("1_tidnm") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfyfk"] +atlas = ExtResource("1_tidnm") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykjps"] +atlas = ExtResource("1_tidnm") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h7m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjpxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_343k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l535c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_supf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk2ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rakuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6qca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d17ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a1il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h347w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw51i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flgkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e1um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp03d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm4q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bd1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siee1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui1cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsind") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mojfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvsdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y1pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfyfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykjps") +}], +"loop": true, +"name": &"darkfiresacrifice", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiretransformation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiretransformation.tres new file mode 100644 index 0000000..6fabec5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkfiretransformation.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://qqmh2xfyaoig"] + +[ext_resource type="Texture2D" uid="uid://ct78xixc0g1ut" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png" id="1_13sje"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gulww"] +atlas = ExtResource("1_13sje") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc47q"] +atlas = ExtResource("1_13sje") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3vxa"] +atlas = ExtResource("1_13sje") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td168"] +atlas = ExtResource("1_13sje") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t60gm"] +atlas = ExtResource("1_13sje") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0mwe"] +atlas = ExtResource("1_13sje") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oid3p"] +atlas = ExtResource("1_13sje") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqjve"] +atlas = ExtResource("1_13sje") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fj5w"] +atlas = ExtResource("1_13sje") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnkp1"] +atlas = ExtResource("1_13sje") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yijk7"] +atlas = ExtResource("1_13sje") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pknbl"] +atlas = ExtResource("1_13sje") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndl7l"] +atlas = ExtResource("1_13sje") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jgi3"] +atlas = ExtResource("1_13sje") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqq3h"] +atlas = ExtResource("1_13sje") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxl1a"] +atlas = ExtResource("1_13sje") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0krp"] +atlas = ExtResource("1_13sje") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dffp5"] +atlas = ExtResource("1_13sje") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap1id"] +atlas = ExtResource("1_13sje") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1yvw"] +atlas = ExtResource("1_13sje") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ddre"] +atlas = ExtResource("1_13sje") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl0pf"] +atlas = ExtResource("1_13sje") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm44f"] +atlas = ExtResource("1_13sje") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_337mj"] +atlas = ExtResource("1_13sje") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7k17"] +atlas = ExtResource("1_13sje") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkqjk"] +atlas = ExtResource("1_13sje") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gulww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc47q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3vxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td168") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t60gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0mwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oid3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqjve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fj5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnkp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yijk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pknbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndl7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jgi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqq3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxl1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0krp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dffp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap1id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1yvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ddre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl0pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm44f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_337mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7k17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkqjk") +}], +"loop": true, +"name": &"darkfiretransformation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkseed.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkseed.tres new file mode 100644 index 0000000..215bd4b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_darkseed.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://21r7vourb6qj"] + +[ext_resource type="Texture2D" uid="uid://bx4n21fwo8qgb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png" id="1_qvr6k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpxwb"] +atlas = ExtResource("1_qvr6k") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bsb2"] +atlas = ExtResource("1_qvr6k") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4nkg"] +atlas = ExtResource("1_qvr6k") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k11r3"] +atlas = ExtResource("1_qvr6k") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u348f"] +atlas = ExtResource("1_qvr6k") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5ymi"] +atlas = ExtResource("1_qvr6k") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c20u"] +atlas = ExtResource("1_qvr6k") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ni75"] +atlas = ExtResource("1_qvr6k") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp2pr"] +atlas = ExtResource("1_qvr6k") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4be2"] +atlas = ExtResource("1_qvr6k") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxwn2"] +atlas = ExtResource("1_qvr6k") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrucv"] +atlas = ExtResource("1_qvr6k") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4du2"] +atlas = ExtResource("1_qvr6k") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d25oj"] +atlas = ExtResource("1_qvr6k") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0i8u"] +atlas = ExtResource("1_qvr6k") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ep8"] +atlas = ExtResource("1_qvr6k") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgbvr"] +atlas = ExtResource("1_qvr6k") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwlw3"] +atlas = ExtResource("1_qvr6k") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y35le"] +atlas = ExtResource("1_qvr6k") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nbfl"] +atlas = ExtResource("1_qvr6k") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5mgc"] +atlas = ExtResource("1_qvr6k") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y153w"] +atlas = ExtResource("1_qvr6k") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5h7c"] +atlas = ExtResource("1_qvr6k") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxq6w"] +atlas = ExtResource("1_qvr6k") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bim3n"] +atlas = ExtResource("1_qvr6k") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpxwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bsb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4nkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k11r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u348f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5ymi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c20u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ni75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp2pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4be2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxwn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrucv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4du2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d25oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0i8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ep8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgbvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwlw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y35le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nbfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5mgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y153w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5h7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxq6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bim3n") +}], +"loop": true, +"name": &"darkseed", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_deathfire_crescendo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_deathfire_crescendo.tres new file mode 100644 index 0000000..e3f92be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_deathfire_crescendo.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://7nxmiecjgtc8"] + +[ext_resource type="Texture2D" uid="uid://d1uiitco7amv6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png" id="1_4ijwe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6a38"] +atlas = ExtResource("1_4ijwe") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxbxt"] +atlas = ExtResource("1_4ijwe") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ml3"] +atlas = ExtResource("1_4ijwe") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58111"] +atlas = ExtResource("1_4ijwe") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bylf"] +atlas = ExtResource("1_4ijwe") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgsu0"] +atlas = ExtResource("1_4ijwe") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37vcb"] +atlas = ExtResource("1_4ijwe") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvs8o"] +atlas = ExtResource("1_4ijwe") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngjkh"] +atlas = ExtResource("1_4ijwe") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltyad"] +atlas = ExtResource("1_4ijwe") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw3dl"] +atlas = ExtResource("1_4ijwe") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc0wn"] +atlas = ExtResource("1_4ijwe") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odfgk"] +atlas = ExtResource("1_4ijwe") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fssxa"] +atlas = ExtResource("1_4ijwe") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6htg0"] +atlas = ExtResource("1_4ijwe") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h60es"] +atlas = ExtResource("1_4ijwe") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ipu0"] +atlas = ExtResource("1_4ijwe") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3ssf"] +atlas = ExtResource("1_4ijwe") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1217"] +atlas = ExtResource("1_4ijwe") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nngs"] +atlas = ExtResource("1_4ijwe") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2bx2"] +atlas = ExtResource("1_4ijwe") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gx2t"] +atlas = ExtResource("1_4ijwe") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3xpw"] +atlas = ExtResource("1_4ijwe") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgybi"] +atlas = ExtResource("1_4ijwe") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmn65"] +atlas = ExtResource("1_4ijwe") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4ng4"] +atlas = ExtResource("1_4ijwe") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ml55"] +atlas = ExtResource("1_4ijwe") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6a38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxbxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ml3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58111") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bylf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgsu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37vcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvs8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngjkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltyad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw3dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc0wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odfgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fssxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6htg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h60es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ipu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3ssf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1217") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nngs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2bx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gx2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3xpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgybi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmn65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4ng4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ml55") +}], +"loop": true, +"name": &"crescendo", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_doom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_doom.tres new file mode 100644 index 0000000..019ac36 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_doom.tres @@ -0,0 +1,242 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://ca6b88h754m7k"] + +[ext_resource type="Texture2D" uid="uid://cfupibp2qmnmf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png" id="1_et2ny"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqrr0"] +atlas = ExtResource("1_et2ny") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5fi8"] +atlas = ExtResource("1_et2ny") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b74ei"] +atlas = ExtResource("1_et2ny") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36dpu"] +atlas = ExtResource("1_et2ny") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlolf"] +atlas = ExtResource("1_et2ny") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy24q"] +atlas = ExtResource("1_et2ny") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpwtf"] +atlas = ExtResource("1_et2ny") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntx5h"] +atlas = ExtResource("1_et2ny") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w040j"] +atlas = ExtResource("1_et2ny") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_416ip"] +atlas = ExtResource("1_et2ny") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emmyp"] +atlas = ExtResource("1_et2ny") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_671rs"] +atlas = ExtResource("1_et2ny") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giplp"] +atlas = ExtResource("1_et2ny") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbj2f"] +atlas = ExtResource("1_et2ny") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62u0u"] +atlas = ExtResource("1_et2ny") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsqwd"] +atlas = ExtResource("1_et2ny") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipsaf"] +atlas = ExtResource("1_et2ny") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yicmi"] +atlas = ExtResource("1_et2ny") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6j8s"] +atlas = ExtResource("1_et2ny") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kidao"] +atlas = ExtResource("1_et2ny") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ion1"] +atlas = ExtResource("1_et2ny") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8heg"] +atlas = ExtResource("1_et2ny") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4m1c"] +atlas = ExtResource("1_et2ny") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dihk"] +atlas = ExtResource("1_et2ny") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh1l4"] +atlas = ExtResource("1_et2ny") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2n2i"] +atlas = ExtResource("1_et2ny") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwcvw"] +atlas = ExtResource("1_et2ny") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyv4w"] +atlas = ExtResource("1_et2ny") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nh73"] +atlas = ExtResource("1_et2ny") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mca7w"] +atlas = ExtResource("1_et2ny") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc6ig"] +atlas = ExtResource("1_et2ny") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odbas"] +atlas = ExtResource("1_et2ny") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f8mp"] +atlas = ExtResource("1_et2ny") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqrr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5fi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b74ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36dpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlolf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy24q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpwtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntx5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w040j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_416ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emmyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_671rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giplp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbj2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62u0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsqwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipsaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yicmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6j8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kidao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ion1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8heg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4m1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dihk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh1l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2n2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwcvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyv4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nh73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mca7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc6ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odbas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f8mp") +}], +"loop": true, +"name": &"doom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_nethersummoning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_nethersummoning.tres new file mode 100644 index 0000000..6f3cc3f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_nethersummoning.tres @@ -0,0 +1,284 @@ +[gd_resource type="SpriteFrames" load_steps=41 format=3 uid="uid://epi3441fdnlu"] + +[ext_resource type="Texture2D" uid="uid://c66xgfeuekw4q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png" id="1_hefn0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvcy0"] +atlas = ExtResource("1_hefn0") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6h01"] +atlas = ExtResource("1_hefn0") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ebdo"] +atlas = ExtResource("1_hefn0") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whd7q"] +atlas = ExtResource("1_hefn0") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccc01"] +atlas = ExtResource("1_hefn0") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4k75"] +atlas = ExtResource("1_hefn0") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orr1k"] +atlas = ExtResource("1_hefn0") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2p8r"] +atlas = ExtResource("1_hefn0") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v01ed"] +atlas = ExtResource("1_hefn0") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vhs5"] +atlas = ExtResource("1_hefn0") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3emrq"] +atlas = ExtResource("1_hefn0") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxgc7"] +atlas = ExtResource("1_hefn0") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlcav"] +atlas = ExtResource("1_hefn0") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvt68"] +atlas = ExtResource("1_hefn0") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pe3a"] +atlas = ExtResource("1_hefn0") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue2q7"] +atlas = ExtResource("1_hefn0") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy5ss"] +atlas = ExtResource("1_hefn0") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pank"] +atlas = ExtResource("1_hefn0") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1djn4"] +atlas = ExtResource("1_hefn0") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1vwx"] +atlas = ExtResource("1_hefn0") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80myu"] +atlas = ExtResource("1_hefn0") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvjqb"] +atlas = ExtResource("1_hefn0") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obpsi"] +atlas = ExtResource("1_hefn0") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyppc"] +atlas = ExtResource("1_hefn0") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8ppi"] +atlas = ExtResource("1_hefn0") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foave"] +atlas = ExtResource("1_hefn0") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21rp6"] +atlas = ExtResource("1_hefn0") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5lyh"] +atlas = ExtResource("1_hefn0") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_picwh"] +atlas = ExtResource("1_hefn0") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xbap"] +atlas = ExtResource("1_hefn0") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fsek"] +atlas = ExtResource("1_hefn0") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvp3f"] +atlas = ExtResource("1_hefn0") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tds4e"] +atlas = ExtResource("1_hefn0") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt52f"] +atlas = ExtResource("1_hefn0") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1dwu"] +atlas = ExtResource("1_hefn0") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_527w2"] +atlas = ExtResource("1_hefn0") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufr16"] +atlas = ExtResource("1_hefn0") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08hb3"] +atlas = ExtResource("1_hefn0") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1uhd"] +atlas = ExtResource("1_hefn0") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvcy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6h01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ebdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whd7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccc01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4k75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orr1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2p8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v01ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vhs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3emrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxgc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlcav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvt68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pe3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue2q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy5ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pank") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1djn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1vwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80myu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvjqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obpsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyppc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8ppi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foave") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21rp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5lyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_picwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xbap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fsek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvp3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tds4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt52f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1dwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_527w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufr16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08hb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1uhd") +}], +"loop": true, +"name": &"nethersummoning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_obliterate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_obliterate.tres new file mode 100644 index 0000000..5e2e637 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_obliterate.tres @@ -0,0 +1,207 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://cvjuft5qc7si0"] + +[ext_resource type="Texture2D" uid="uid://dx08jcaqhh0i6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png" id="1_8kjr1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yekmi"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqm7b"] +atlas = ExtResource("1_8kjr1") +region = Rect2(1204, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brdjb"] +atlas = ExtResource("1_8kjr1") +region = Rect2(1204, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlv2f"] +atlas = ExtResource("1_8kjr1") +region = Rect2(1204, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr24f"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mgs2"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nysrl"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkr5a"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8bap"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvp5x"] +atlas = ExtResource("1_8kjr1") +region = Rect2(903, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh6o3"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm1of"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b32g"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktv50"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukxp0"] +atlas = ExtResource("1_8kjr1") +region = Rect2(1204, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4vey"] +atlas = ExtResource("1_8kjr1") +region = Rect2(602, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75n20"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jge5s"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjr7o"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvl1e"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqmub"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijbgf"] +atlas = ExtResource("1_8kjr1") +region = Rect2(301, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_106ka"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8bbr"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27b6e"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a4iy"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtdpj"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dup35"] +atlas = ExtResource("1_8kjr1") +region = Rect2(0, 0, 300, 300) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yekmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqm7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brdjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlv2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr24f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mgs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nysrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkr5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8bap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvp5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh6o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b32g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktv50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukxp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4vey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75n20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jge5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjr7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvl1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqmub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijbgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_106ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8bbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27b6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a4iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtdpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dup35") +}], +"loop": true, +"name": &"obliterate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_riteundervault.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_riteundervault.tres new file mode 100644 index 0000000..a5e048a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_riteundervault.tres @@ -0,0 +1,417 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://b1mqes48hkjly"] + +[ext_resource type="Texture2D" uid="uid://dr7pxacjjp8wq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png" id="1_hvabs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_euxbm"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajih2"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ft1"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf16e"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm20c"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3mc6"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24guu"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcksn"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46f7e"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh5cw"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3oa0"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1u1o"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thwri"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00oe0"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsrug"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdpbt"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph408"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfss6"] +atlas = ExtResource("1_hvabs") +region = Rect2(900, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wrg1"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbrmf"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iddtd"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xmia"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsfxo"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6fl8"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woge0"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp5fm"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wisu2"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0035o"] +atlas = ExtResource("1_hvabs") +region = Rect2(1125, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq7fl"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hceli"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxq01"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1c6c"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gbnq"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4koj"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41jaq"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ajy"] +atlas = ExtResource("1_hvabs") +region = Rect2(450, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7glr"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i0ix"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7sdm"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tslr"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpba0"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ush"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbv6v"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbqye"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_770ny"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaftr"] +atlas = ExtResource("1_hvabs") +region = Rect2(675, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56jvu"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyidd"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ovn"] +atlas = ExtResource("1_hvabs") +region = Rect2(225, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j3p3"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 1800, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcgwh"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 1575, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60udn"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 1350, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vtct"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 1125, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtbya"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 900, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ox5o"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpsdx"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngw13"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3es3"] +atlas = ExtResource("1_hvabs") +region = Rect2(0, 0, 224, 224) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_euxbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajih2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ft1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf16e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm20c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3mc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24guu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcksn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46f7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh5cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3oa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1u1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thwri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00oe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsrug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdpbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph408") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfss6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wrg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbrmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iddtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xmia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsfxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6fl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woge0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp5fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wisu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0035o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq7fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hceli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxq01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1c6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gbnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4koj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41jaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ajy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7glr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i0ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7sdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tslr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpba0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56ush") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbv6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbqye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_770ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaftr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56jvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyidd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ovn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j3p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcgwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60udn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vtct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtbya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ox5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpsdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngw13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3es3") +}], +"loop": true, +"name": &"riteundervault", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadownova.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadownova.tres new file mode 100644 index 0000000..65e61b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadownova.tres @@ -0,0 +1,165 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://cxud7dau5o1e7"] + +[ext_resource type="Texture2D" uid="uid://beabf7qb0mdj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png" id="1_mhfej"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oib0c"] +atlas = ExtResource("1_mhfej") +region = Rect2(394, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sbcm"] +atlas = ExtResource("1_mhfej") +region = Rect2(788, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goooo"] +atlas = ExtResource("1_mhfej") +region = Rect2(591, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc7s6"] +atlas = ExtResource("1_mhfej") +region = Rect2(591, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe2lr"] +atlas = ExtResource("1_mhfej") +region = Rect2(591, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sael"] +atlas = ExtResource("1_mhfej") +region = Rect2(591, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34uxx"] +atlas = ExtResource("1_mhfej") +region = Rect2(591, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juvt0"] +atlas = ExtResource("1_mhfej") +region = Rect2(394, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfgix"] +atlas = ExtResource("1_mhfej") +region = Rect2(394, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5e3i"] +atlas = ExtResource("1_mhfej") +region = Rect2(394, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ht5"] +atlas = ExtResource("1_mhfej") +region = Rect2(394, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3whu"] +atlas = ExtResource("1_mhfej") +region = Rect2(788, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd1cw"] +atlas = ExtResource("1_mhfej") +region = Rect2(197, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_besl3"] +atlas = ExtResource("1_mhfej") +region = Rect2(197, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4vgq"] +atlas = ExtResource("1_mhfej") +region = Rect2(197, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlocx"] +atlas = ExtResource("1_mhfej") +region = Rect2(197, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nev8m"] +atlas = ExtResource("1_mhfej") +region = Rect2(197, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toja2"] +atlas = ExtResource("1_mhfej") +region = Rect2(0, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl8qh"] +atlas = ExtResource("1_mhfej") +region = Rect2(0, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgf4s"] +atlas = ExtResource("1_mhfej") +region = Rect2(0, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la4yu"] +atlas = ExtResource("1_mhfej") +region = Rect2(0, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0dgo"] +atlas = ExtResource("1_mhfej") +region = Rect2(0, 0, 196, 196) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oib0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sbcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goooo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc7s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe2lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sael") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34uxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juvt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfgix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5e3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ht5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3whu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd1cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_besl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4vgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nev8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toja2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl8qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgf4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la4yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0dgo") +}], +"loop": true, +"name": &"shadownova", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadowreflection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadowreflection.tres new file mode 100644 index 0000000..12ed55e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_shadowreflection.tres @@ -0,0 +1,214 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://bnkgep0vsdwoj"] + +[ext_resource type="Texture2D" uid="uid://drxjjvubwc8bg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png" id="1_4bywq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_py2y4"] +atlas = ExtResource("1_4bywq") +region = Rect2(352, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmbne"] +atlas = ExtResource("1_4bywq") +region = Rect2(880, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsnwu"] +atlas = ExtResource("1_4bywq") +region = Rect2(880, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul7vu"] +atlas = ExtResource("1_4bywq") +region = Rect2(880, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml5et"] +atlas = ExtResource("1_4bywq") +region = Rect2(704, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecb2x"] +atlas = ExtResource("1_4bywq") +region = Rect2(704, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x8c7"] +atlas = ExtResource("1_4bywq") +region = Rect2(704, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5s3w"] +atlas = ExtResource("1_4bywq") +region = Rect2(704, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uugus"] +atlas = ExtResource("1_4bywq") +region = Rect2(704, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seska"] +atlas = ExtResource("1_4bywq") +region = Rect2(528, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgk60"] +atlas = ExtResource("1_4bywq") +region = Rect2(528, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73cq5"] +atlas = ExtResource("1_4bywq") +region = Rect2(528, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6cpq"] +atlas = ExtResource("1_4bywq") +region = Rect2(528, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q52q6"] +atlas = ExtResource("1_4bywq") +region = Rect2(528, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5qwi"] +atlas = ExtResource("1_4bywq") +region = Rect2(880, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwp2n"] +atlas = ExtResource("1_4bywq") +region = Rect2(352, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3prm2"] +atlas = ExtResource("1_4bywq") +region = Rect2(352, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3c4x"] +atlas = ExtResource("1_4bywq") +region = Rect2(352, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyfsn"] +atlas = ExtResource("1_4bywq") +region = Rect2(352, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jre71"] +atlas = ExtResource("1_4bywq") +region = Rect2(176, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q52nv"] +atlas = ExtResource("1_4bywq") +region = Rect2(176, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh4e8"] +atlas = ExtResource("1_4bywq") +region = Rect2(176, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbnnv"] +atlas = ExtResource("1_4bywq") +region = Rect2(176, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8dv"] +atlas = ExtResource("1_4bywq") +region = Rect2(176, 0, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdsgd"] +atlas = ExtResource("1_4bywq") +region = Rect2(0, 704, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tfut"] +atlas = ExtResource("1_4bywq") +region = Rect2(0, 528, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug582"] +atlas = ExtResource("1_4bywq") +region = Rect2(0, 352, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbioh"] +atlas = ExtResource("1_4bywq") +region = Rect2(0, 176, 175, 175) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diyrm"] +atlas = ExtResource("1_4bywq") +region = Rect2(0, 0, 175, 175) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_py2y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmbne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsnwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul7vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml5et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecb2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x8c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5s3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uugus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seska") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgk60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73cq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6cpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q52q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5qwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwp2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3prm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3c4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyfsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jre71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q52nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh4e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbnnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdsgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tfut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug582") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbioh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diyrm") +}], +"loop": true, +"name": &"shadowreflection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_soulshatterpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_soulshatterpact.tres new file mode 100644 index 0000000..34e6f79 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_soulshatterpact.tres @@ -0,0 +1,158 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://pe50g4brmc5o"] + +[ext_resource type="Texture2D" uid="uid://bkqndf0yjep60" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png" id="1_qyqe7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_emsi5"] +atlas = ExtResource("1_qyqe7") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yog7"] +atlas = ExtResource("1_qyqe7") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia4df"] +atlas = ExtResource("1_qyqe7") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twfbg"] +atlas = ExtResource("1_qyqe7") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxvbl"] +atlas = ExtResource("1_qyqe7") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fygqp"] +atlas = ExtResource("1_qyqe7") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srwm8"] +atlas = ExtResource("1_qyqe7") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhexm"] +atlas = ExtResource("1_qyqe7") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyybt"] +atlas = ExtResource("1_qyqe7") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70133"] +atlas = ExtResource("1_qyqe7") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tequ"] +atlas = ExtResource("1_qyqe7") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqtg2"] +atlas = ExtResource("1_qyqe7") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsp1e"] +atlas = ExtResource("1_qyqe7") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec7r8"] +atlas = ExtResource("1_qyqe7") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqnf5"] +atlas = ExtResource("1_qyqe7") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gulke"] +atlas = ExtResource("1_qyqe7") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lg0a"] +atlas = ExtResource("1_qyqe7") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ns2"] +atlas = ExtResource("1_qyqe7") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6j6l"] +atlas = ExtResource("1_qyqe7") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qikci"] +atlas = ExtResource("1_qyqe7") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ejy"] +atlas = ExtResource("1_qyqe7") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emsi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yog7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia4df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twfbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxvbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fygqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srwm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhexm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyybt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70133") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tequ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqtg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsp1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec7r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqnf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gulke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lg0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ns2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6j6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qikci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ejy") +}], +"loop": true, +"name": &"soulshatterpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_voidpulse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_voidpulse.tres new file mode 100644 index 0000000..6cb81c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_voidpulse.tres @@ -0,0 +1,207 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://3cgwigphku1f"] + +[ext_resource type="Texture2D" uid="uid://s8shqitwy0bv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png" id="1_0iv7c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_866qm"] +atlas = ExtResource("1_0iv7c") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3bwt"] +atlas = ExtResource("1_0iv7c") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh3wk"] +atlas = ExtResource("1_0iv7c") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn5ja"] +atlas = ExtResource("1_0iv7c") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t52t6"] +atlas = ExtResource("1_0iv7c") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4emg"] +atlas = ExtResource("1_0iv7c") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58h82"] +atlas = ExtResource("1_0iv7c") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hic1"] +atlas = ExtResource("1_0iv7c") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlyw"] +atlas = ExtResource("1_0iv7c") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rafl"] +atlas = ExtResource("1_0iv7c") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl0mt"] +atlas = ExtResource("1_0iv7c") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b5ma"] +atlas = ExtResource("1_0iv7c") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5nea"] +atlas = ExtResource("1_0iv7c") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q73li"] +atlas = ExtResource("1_0iv7c") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tvkq"] +atlas = ExtResource("1_0iv7c") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biswy"] +atlas = ExtResource("1_0iv7c") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm3ab"] +atlas = ExtResource("1_0iv7c") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57dqg"] +atlas = ExtResource("1_0iv7c") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfxti"] +atlas = ExtResource("1_0iv7c") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a13gk"] +atlas = ExtResource("1_0iv7c") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35uec"] +atlas = ExtResource("1_0iv7c") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cdh4"] +atlas = ExtResource("1_0iv7c") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g62wf"] +atlas = ExtResource("1_0iv7c") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t73kd"] +atlas = ExtResource("1_0iv7c") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np355"] +atlas = ExtResource("1_0iv7c") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv231"] +atlas = ExtResource("1_0iv7c") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06fjl"] +atlas = ExtResource("1_0iv7c") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcoh6"] +atlas = ExtResource("1_0iv7c") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_866qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3bwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh3wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn5ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t52t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4emg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58h82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hic1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvlyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rafl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl0mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b5ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5nea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q73li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tvkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biswy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm3ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57dqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfxti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a13gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35uec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cdh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g62wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t73kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np355") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv231") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06fjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcoh6") +}], +"loop": true, +"name": &"voidpulse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_wraithlingfury.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_wraithlingfury.tres new file mode 100644 index 0000000..322ccb1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f4_wraithlingfury.tres @@ -0,0 +1,235 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://dhc03i61t1gvy"] + +[ext_resource type="Texture2D" uid="uid://bpw2tv7xv4sdy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png" id="1_f652x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8ov5"] +atlas = ExtResource("1_f652x") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quf03"] +atlas = ExtResource("1_f652x") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bblv5"] +atlas = ExtResource("1_f652x") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lih18"] +atlas = ExtResource("1_f652x") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvwiw"] +atlas = ExtResource("1_f652x") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2t02"] +atlas = ExtResource("1_f652x") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj616"] +atlas = ExtResource("1_f652x") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgycg"] +atlas = ExtResource("1_f652x") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l43c"] +atlas = ExtResource("1_f652x") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug2fn"] +atlas = ExtResource("1_f652x") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05qwr"] +atlas = ExtResource("1_f652x") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq04n"] +atlas = ExtResource("1_f652x") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ovu"] +atlas = ExtResource("1_f652x") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cjg0"] +atlas = ExtResource("1_f652x") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uhv6"] +atlas = ExtResource("1_f652x") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t101"] +atlas = ExtResource("1_f652x") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn33q"] +atlas = ExtResource("1_f652x") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlce3"] +atlas = ExtResource("1_f652x") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8b0i"] +atlas = ExtResource("1_f652x") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ra5"] +atlas = ExtResource("1_f652x") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w84p0"] +atlas = ExtResource("1_f652x") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4ohw"] +atlas = ExtResource("1_f652x") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7bo7"] +atlas = ExtResource("1_f652x") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es7dd"] +atlas = ExtResource("1_f652x") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7rsk"] +atlas = ExtResource("1_f652x") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r5rb"] +atlas = ExtResource("1_f652x") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l3co"] +atlas = ExtResource("1_f652x") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mukpk"] +atlas = ExtResource("1_f652x") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpf1o"] +atlas = ExtResource("1_f652x") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oescs"] +atlas = ExtResource("1_f652x") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x0uc"] +atlas = ExtResource("1_f652x") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lmad"] +atlas = ExtResource("1_f652x") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8ov5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quf03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bblv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lih18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvwiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2t02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj616") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgycg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l43c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug2fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05qwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq04n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ovu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cjg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uhv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t101") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn33q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8b0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ra5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w84p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4ohw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7bo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es7dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7rsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r5rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l3co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mukpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpf1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oescs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x0uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lmad") +}], +"loop": true, +"name": &"t", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_amplification.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_amplification.tres new file mode 100644 index 0000000..d9a5d22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_amplification.tres @@ -0,0 +1,186 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://bm037avahgxwv"] + +[ext_resource type="Texture2D" uid="uid://ce6asjyeouwkq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png" id="1_8adhr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_grc5t"] +atlas = ExtResource("1_8adhr") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et114"] +atlas = ExtResource("1_8adhr") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iin2"] +atlas = ExtResource("1_8adhr") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmxvx"] +atlas = ExtResource("1_8adhr") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm8w4"] +atlas = ExtResource("1_8adhr") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtihk"] +atlas = ExtResource("1_8adhr") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4gf"] +atlas = ExtResource("1_8adhr") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whqw0"] +atlas = ExtResource("1_8adhr") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ekm"] +atlas = ExtResource("1_8adhr") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdqdx"] +atlas = ExtResource("1_8adhr") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly4ni"] +atlas = ExtResource("1_8adhr") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gup36"] +atlas = ExtResource("1_8adhr") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5ayf"] +atlas = ExtResource("1_8adhr") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67w3a"] +atlas = ExtResource("1_8adhr") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jowpy"] +atlas = ExtResource("1_8adhr") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmo01"] +atlas = ExtResource("1_8adhr") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7587x"] +atlas = ExtResource("1_8adhr") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xne0l"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb8w4"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di76b"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bbsd"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kylhi"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qeqv"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk5kg"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umu4y"] +atlas = ExtResource("1_8adhr") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_grc5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et114") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iin2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmxvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm8w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtihk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb4gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whqw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ekm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdqdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly4ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gup36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5ayf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67w3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jowpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmo01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7587x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xne0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb8w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di76b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bbsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kylhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qeqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk5kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umu4y") +}], +"loop": true, +"name": &"amplification", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_egg.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_egg.tres new file mode 100644 index 0000000..e09ca05 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_egg.tres @@ -0,0 +1,445 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://dip6fn6adbj2"] + +[ext_resource type="Texture2D" uid="uid://8g2gtmrjrvjq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png" id="1_ruua3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hupc8"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 1086, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg8fc"] +atlas = ExtResource("1_ruua3") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78qji"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 1810, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2gs4"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 1629, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i463"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 1448, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxp6v"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 1267, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t12ss"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 1086, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdj53"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 905, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sox42"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em266"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qypig"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iqb6"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1h0g"] +atlas = ExtResource("1_ruua3") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs4b8"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 1810, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk7hq"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 1629, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gx33"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 1448, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4hll"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 1267, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojdey"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 1086, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtwpg"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 905, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt4un"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah0np"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycy1u"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa5yh"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nakei"] +atlas = ExtResource("1_ruua3") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw6u1"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 1810, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpkai"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 1629, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wqtm"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 1448, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1p5p"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 1267, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyrb3"] +atlas = ExtResource("1_ruua3") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0gnr"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 905, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gywfj"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmdsg"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu7k6"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jynj4"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5flj"] +atlas = ExtResource("1_ruua3") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81s4i"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 1810, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdjva"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 1629, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fro02"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 1448, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61f5e"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 1267, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl4lo"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 1086, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgyu3"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 905, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2a2a"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxeg7"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u00v"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k6xb"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr8mm"] +atlas = ExtResource("1_ruua3") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2s32"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 1810, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l42eb"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 1629, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uecjs"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 1448, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5crgf"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 1267, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm1yc"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 1086, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7jy1"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 905, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lbpg"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o16q"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vjal"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwu5j"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7jqn"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn7nh"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da6s0"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_354bw"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb5xr"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3okb3"] +atlas = ExtResource("1_ruua3") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hupc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg8fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78qji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2gs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i463") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxp6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t12ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdj53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sox42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em266") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qypig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iqb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1h0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs4b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk7hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gx33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4hll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojdey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtwpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt4un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah0np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycy1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa5yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nakei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw6u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpkai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wqtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1p5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyrb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0gnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gywfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmdsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu7k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jynj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5flj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81s4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdjva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fro02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61f5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl4lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgyu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2a2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxeg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u00v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k6xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr8mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2s32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l42eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uecjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5crgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm1yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7jy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lbpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o16q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vjal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwu5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7jqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn7nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da6s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_354bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb5xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3okb3") +}], +"loop": true, +"name": &"egg", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_overload.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_overload.tres new file mode 100644 index 0000000..f6e3ef6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_overload.tres @@ -0,0 +1,333 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://bchydlcw2jil"] + +[ext_resource type="Texture2D" uid="uid://3hlexsaiafju" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png" id="1_x7yh7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fqvu"] +atlas = ExtResource("1_x7yh7") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p7wc"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8wbv"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mr8e"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8otu5"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2jyh"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ke5m"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eukgw"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqiqh"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dvfd"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wugdb"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x656"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88heh"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pov7x"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dou3p"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hqtk"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2dnt"] +atlas = ExtResource("1_x7yh7") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd51u"] +atlas = ExtResource("1_x7yh7") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b5jl"] +atlas = ExtResource("1_x7yh7") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6htt"] +atlas = ExtResource("1_x7yh7") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yh6f"] +atlas = ExtResource("1_x7yh7") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rh8y"] +atlas = ExtResource("1_x7yh7") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwt6s"] +atlas = ExtResource("1_x7yh7") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lft88"] +atlas = ExtResource("1_x7yh7") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txjjm"] +atlas = ExtResource("1_x7yh7") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3p3i"] +atlas = ExtResource("1_x7yh7") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r87co"] +atlas = ExtResource("1_x7yh7") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdp4n"] +atlas = ExtResource("1_x7yh7") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj2wm"] +atlas = ExtResource("1_x7yh7") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebu25"] +atlas = ExtResource("1_x7yh7") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfcc4"] +atlas = ExtResource("1_x7yh7") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtafe"] +atlas = ExtResource("1_x7yh7") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2hyo"] +atlas = ExtResource("1_x7yh7") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ghkm"] +atlas = ExtResource("1_x7yh7") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eri2n"] +atlas = ExtResource("1_x7yh7") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr1vx"] +atlas = ExtResource("1_x7yh7") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cco6g"] +atlas = ExtResource("1_x7yh7") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66vj5"] +atlas = ExtResource("1_x7yh7") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf2sc"] +atlas = ExtResource("1_x7yh7") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6k6k"] +atlas = ExtResource("1_x7yh7") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2fb3"] +atlas = ExtResource("1_x7yh7") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugalv"] +atlas = ExtResource("1_x7yh7") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owmnw"] +atlas = ExtResource("1_x7yh7") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v22t7"] +atlas = ExtResource("1_x7yh7") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i718q"] +atlas = ExtResource("1_x7yh7") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tfav"] +atlas = ExtResource("1_x7yh7") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fqvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p7wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8wbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mr8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8otu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2jyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ke5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eukgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqiqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dvfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wugdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x656") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88heh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pov7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dou3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hqtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2dnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd51u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b5jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6htt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yh6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rh8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwt6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lft88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txjjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3p3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r87co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdp4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj2wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebu25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfcc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtafe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2hyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ghkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eri2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr1vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cco6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66vj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf2sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6k6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2fb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugalv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owmnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v22t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i718q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tfav") +}], +"loop": true, +"name": &"overload", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_seekingeye.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_seekingeye.tres new file mode 100644 index 0000000..fcbc4c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_bbs_seekingeye.tres @@ -0,0 +1,312 @@ +[gd_resource type="SpriteFrames" load_steps=45 format=3 uid="uid://bsmihpaq0digj"] + +[ext_resource type="Texture2D" uid="uid://dko7dn0x1v6a3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png" id="1_widxh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4iur"] +atlas = ExtResource("1_widxh") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvypv"] +atlas = ExtResource("1_widxh") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88yad"] +atlas = ExtResource("1_widxh") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vpb1"] +atlas = ExtResource("1_widxh") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7lsh"] +atlas = ExtResource("1_widxh") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg3o6"] +atlas = ExtResource("1_widxh") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqcis"] +atlas = ExtResource("1_widxh") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_378r4"] +atlas = ExtResource("1_widxh") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahjsf"] +atlas = ExtResource("1_widxh") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juxyh"] +atlas = ExtResource("1_widxh") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw8sx"] +atlas = ExtResource("1_widxh") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7isr"] +atlas = ExtResource("1_widxh") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hawyd"] +atlas = ExtResource("1_widxh") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq18a"] +atlas = ExtResource("1_widxh") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baqtl"] +atlas = ExtResource("1_widxh") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td7sm"] +atlas = ExtResource("1_widxh") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7axq"] +atlas = ExtResource("1_widxh") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra7g8"] +atlas = ExtResource("1_widxh") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kop15"] +atlas = ExtResource("1_widxh") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2b4e"] +atlas = ExtResource("1_widxh") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dhy7"] +atlas = ExtResource("1_widxh") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hibgy"] +atlas = ExtResource("1_widxh") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd1gr"] +atlas = ExtResource("1_widxh") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pe8a"] +atlas = ExtResource("1_widxh") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fghhf"] +atlas = ExtResource("1_widxh") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n486t"] +atlas = ExtResource("1_widxh") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll0lx"] +atlas = ExtResource("1_widxh") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6juk"] +atlas = ExtResource("1_widxh") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so8pi"] +atlas = ExtResource("1_widxh") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffsoh"] +atlas = ExtResource("1_widxh") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5suwo"] +atlas = ExtResource("1_widxh") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dw48"] +atlas = ExtResource("1_widxh") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi83n"] +atlas = ExtResource("1_widxh") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bwpt"] +atlas = ExtResource("1_widxh") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8g2s"] +atlas = ExtResource("1_widxh") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1yy6"] +atlas = ExtResource("1_widxh") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjrd8"] +atlas = ExtResource("1_widxh") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_konuf"] +atlas = ExtResource("1_widxh") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vhug"] +atlas = ExtResource("1_widxh") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1cvy"] +atlas = ExtResource("1_widxh") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ovx"] +atlas = ExtResource("1_widxh") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhnfe"] +atlas = ExtResource("1_widxh") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2os6"] +atlas = ExtResource("1_widxh") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4iur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvypv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88yad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vpb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7lsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg3o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqcis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_378r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahjsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juxyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw8sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7isr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hawyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq18a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baqtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td7sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7axq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra7g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kop15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2b4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dhy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hibgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd1gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pe8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fghhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n486t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll0lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6juk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so8pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffsoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5suwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dw48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi83n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bwpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8g2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1yy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjrd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_konuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vhug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1cvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ovx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhnfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2os6") +}], +"loop": true, +"name": &"seekingeye", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_boundedlife.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_boundedlife.tres new file mode 100644 index 0000000..ed35b5c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_boundedlife.tres @@ -0,0 +1,270 @@ +[gd_resource type="SpriteFrames" load_steps=39 format=3 uid="uid://dqb88bcmey4u4"] + +[ext_resource type="Texture2D" uid="uid://8tutrjpqo1f0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png" id="1_ia43e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea2f6"] +atlas = ExtResource("1_ia43e") +region = Rect2(900, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cclly"] +atlas = ExtResource("1_ia43e") +region = Rect2(1800, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w1l"] +atlas = ExtResource("1_ia43e") +region = Rect2(900, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rwxy"] +atlas = ExtResource("1_ia43e") +region = Rect2(1800, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6042"] +atlas = ExtResource("1_ia43e") +region = Rect2(1800, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksx27"] +atlas = ExtResource("1_ia43e") +region = Rect2(1575, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp83m"] +atlas = ExtResource("1_ia43e") +region = Rect2(1575, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2bmb"] +atlas = ExtResource("1_ia43e") +region = Rect2(1575, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoyj2"] +atlas = ExtResource("1_ia43e") +region = Rect2(1575, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu7mh"] +atlas = ExtResource("1_ia43e") +region = Rect2(1350, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yntng"] +atlas = ExtResource("1_ia43e") +region = Rect2(1350, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmacd"] +atlas = ExtResource("1_ia43e") +region = Rect2(1350, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go81n"] +atlas = ExtResource("1_ia43e") +region = Rect2(1350, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bccq7"] +atlas = ExtResource("1_ia43e") +region = Rect2(1125, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf81g"] +atlas = ExtResource("1_ia43e") +region = Rect2(1125, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q33qt"] +atlas = ExtResource("1_ia43e") +region = Rect2(1125, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sixo2"] +atlas = ExtResource("1_ia43e") +region = Rect2(1125, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sggw6"] +atlas = ExtResource("1_ia43e") +region = Rect2(900, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au8lh"] +atlas = ExtResource("1_ia43e") +region = Rect2(900, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5x0b"] +atlas = ExtResource("1_ia43e") +region = Rect2(1800, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5raiv"] +atlas = ExtResource("1_ia43e") +region = Rect2(900, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lffuk"] +atlas = ExtResource("1_ia43e") +region = Rect2(675, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88edy"] +atlas = ExtResource("1_ia43e") +region = Rect2(675, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cyha"] +atlas = ExtResource("1_ia43e") +region = Rect2(675, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wufd"] +atlas = ExtResource("1_ia43e") +region = Rect2(675, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e8ci"] +atlas = ExtResource("1_ia43e") +region = Rect2(450, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqekx"] +atlas = ExtResource("1_ia43e") +region = Rect2(450, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx3cc"] +atlas = ExtResource("1_ia43e") +region = Rect2(450, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c61dk"] +atlas = ExtResource("1_ia43e") +region = Rect2(450, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fofo"] +atlas = ExtResource("1_ia43e") +region = Rect2(225, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjywl"] +atlas = ExtResource("1_ia43e") +region = Rect2(225, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ks3"] +atlas = ExtResource("1_ia43e") +region = Rect2(225, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q3o3"] +atlas = ExtResource("1_ia43e") +region = Rect2(225, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_palt5"] +atlas = ExtResource("1_ia43e") +region = Rect2(0, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs6pq"] +atlas = ExtResource("1_ia43e") +region = Rect2(0, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mrx0"] +atlas = ExtResource("1_ia43e") +region = Rect2(0, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dii1a"] +atlas = ExtResource("1_ia43e") +region = Rect2(0, 0, 224, 224) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea2f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cclly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1w1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rwxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6042") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksx27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp83m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2bmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoyj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu7mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yntng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmacd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go81n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bccq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf81g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q33qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sixo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sggw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au8lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5x0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5raiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lffuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88edy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cyha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wufd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e8ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqekx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx3cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c61dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fofo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjywl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ks3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q3o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_palt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs6pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mrx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dii1a") +}], +"loop": true, +"name": &"boundedlife", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere.tres new file mode 100644 index 0000000..ac9b734 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://0hisg687pkyi"] + +[ext_resource type="Texture2D" uid="uid://bqcnyw5l6i24b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png" id="1_y1700"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_28d3h"] +atlas = ExtResource("1_y1700") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trwif"] +atlas = ExtResource("1_y1700") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o77wg"] +atlas = ExtResource("1_y1700") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3csx"] +atlas = ExtResource("1_y1700") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70g2t"] +atlas = ExtResource("1_y1700") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjjtv"] +atlas = ExtResource("1_y1700") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjesm"] +atlas = ExtResource("1_y1700") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xb16"] +atlas = ExtResource("1_y1700") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcrme"] +atlas = ExtResource("1_y1700") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo61f"] +atlas = ExtResource("1_y1700") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1qh7"] +atlas = ExtResource("1_y1700") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3q6q"] +atlas = ExtResource("1_y1700") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvnkt"] +atlas = ExtResource("1_y1700") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dg8d"] +atlas = ExtResource("1_y1700") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysi5h"] +atlas = ExtResource("1_y1700") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rno3k"] +atlas = ExtResource("1_y1700") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r17bi"] +atlas = ExtResource("1_y1700") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ambv2"] +atlas = ExtResource("1_y1700") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbbmj"] +atlas = ExtResource("1_y1700") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7pvd"] +atlas = ExtResource("1_y1700") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfuqt"] +atlas = ExtResource("1_y1700") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7rtf"] +atlas = ExtResource("1_y1700") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgjyq"] +atlas = ExtResource("1_y1700") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_477gv"] +atlas = ExtResource("1_y1700") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viukq"] +atlas = ExtResource("1_y1700") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juovy"] +atlas = ExtResource("1_y1700") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp6db"] +atlas = ExtResource("1_y1700") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e68g"] +atlas = ExtResource("1_y1700") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvclu"] +atlas = ExtResource("1_y1700") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r045u"] +atlas = ExtResource("1_y1700") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjys4"] +atlas = ExtResource("1_y1700") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_28d3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trwif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o77wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3csx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70g2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjjtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjesm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xb16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcrme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo61f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1qh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3q6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvnkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dg8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysi5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rno3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r17bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ambv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbbmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7pvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfuqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7rtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgjyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_477gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viukq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juovy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp6db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e68g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvclu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r045u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjys4") +}], +"loop": true, +"name": &"earthsphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_blue.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_blue.tres new file mode 100644 index 0000000..48c91d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_blue.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://b3bt4k2sunqeg"] + +[ext_resource type="Texture2D" uid="uid://mmvo7mhukes8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png" id="1_nrsd1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7qsg"] +atlas = ExtResource("1_nrsd1") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oum2v"] +atlas = ExtResource("1_nrsd1") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsxgm"] +atlas = ExtResource("1_nrsd1") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oe4k"] +atlas = ExtResource("1_nrsd1") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sutqr"] +atlas = ExtResource("1_nrsd1") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cioi"] +atlas = ExtResource("1_nrsd1") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38bkw"] +atlas = ExtResource("1_nrsd1") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehe6i"] +atlas = ExtResource("1_nrsd1") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l1cg"] +atlas = ExtResource("1_nrsd1") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icqll"] +atlas = ExtResource("1_nrsd1") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqfk"] +atlas = ExtResource("1_nrsd1") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw11j"] +atlas = ExtResource("1_nrsd1") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouxbg"] +atlas = ExtResource("1_nrsd1") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y5oa"] +atlas = ExtResource("1_nrsd1") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_webtb"] +atlas = ExtResource("1_nrsd1") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wscth"] +atlas = ExtResource("1_nrsd1") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruj21"] +atlas = ExtResource("1_nrsd1") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03pqq"] +atlas = ExtResource("1_nrsd1") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84qq6"] +atlas = ExtResource("1_nrsd1") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkc4f"] +atlas = ExtResource("1_nrsd1") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qih4"] +atlas = ExtResource("1_nrsd1") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xotmi"] +atlas = ExtResource("1_nrsd1") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx1tk"] +atlas = ExtResource("1_nrsd1") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1w6t"] +atlas = ExtResource("1_nrsd1") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gslr"] +atlas = ExtResource("1_nrsd1") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3jxj"] +atlas = ExtResource("1_nrsd1") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqcxj"] +atlas = ExtResource("1_nrsd1") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5apa"] +atlas = ExtResource("1_nrsd1") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5mnn"] +atlas = ExtResource("1_nrsd1") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx6b5"] +atlas = ExtResource("1_nrsd1") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksttg"] +atlas = ExtResource("1_nrsd1") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7qsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oum2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsxgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oe4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sutqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cioi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38bkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehe6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l1cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icqll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opqfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw11j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouxbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y5oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_webtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wscth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruj21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03pqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84qq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkc4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qih4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xotmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx1tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1w6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gslr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3jxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqcxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5apa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5mnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx6b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksttg") +}], +"loop": true, +"name": &"blue", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_orange.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_orange.tres new file mode 100644 index 0000000..32e1e9b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_earthsphere_orange.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://binneobsuydvp"] + +[ext_resource type="Texture2D" uid="uid://dhqgwqmiori8d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png" id="1_85w5d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_44dw1"] +atlas = ExtResource("1_85w5d") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f03u"] +atlas = ExtResource("1_85w5d") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm8y6"] +atlas = ExtResource("1_85w5d") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp4l6"] +atlas = ExtResource("1_85w5d") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjexs"] +atlas = ExtResource("1_85w5d") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwu51"] +atlas = ExtResource("1_85w5d") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73b84"] +atlas = ExtResource("1_85w5d") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5qsl"] +atlas = ExtResource("1_85w5d") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4311d"] +atlas = ExtResource("1_85w5d") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1n5e"] +atlas = ExtResource("1_85w5d") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03e1e"] +atlas = ExtResource("1_85w5d") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbn1s"] +atlas = ExtResource("1_85w5d") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkiak"] +atlas = ExtResource("1_85w5d") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccv3u"] +atlas = ExtResource("1_85w5d") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2igl"] +atlas = ExtResource("1_85w5d") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfg65"] +atlas = ExtResource("1_85w5d") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w5y8"] +atlas = ExtResource("1_85w5d") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vfuk"] +atlas = ExtResource("1_85w5d") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp5m2"] +atlas = ExtResource("1_85w5d") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc4wx"] +atlas = ExtResource("1_85w5d") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rve46"] +atlas = ExtResource("1_85w5d") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3fcu"] +atlas = ExtResource("1_85w5d") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5gdf"] +atlas = ExtResource("1_85w5d") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prt1p"] +atlas = ExtResource("1_85w5d") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtstw"] +atlas = ExtResource("1_85w5d") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yqfv"] +atlas = ExtResource("1_85w5d") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a2fm"] +atlas = ExtResource("1_85w5d") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy1xn"] +atlas = ExtResource("1_85w5d") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hip8k"] +atlas = ExtResource("1_85w5d") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bruhk"] +atlas = ExtResource("1_85w5d") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slulk"] +atlas = ExtResource("1_85w5d") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_44dw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f03u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm8y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp4l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjexs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwu51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73b84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5qsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4311d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1n5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03e1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbn1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkiak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccv3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2igl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfg65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w5y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vfuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp5m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc4wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rve46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3fcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5gdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prt1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtstw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yqfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a2fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy1xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hip8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bruhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slulk") +}], +"loop": true, +"name": &"orange", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_evolutionaryapex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_evolutionaryapex.tres new file mode 100644 index 0000000..5bf8c28 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_evolutionaryapex.tres @@ -0,0 +1,256 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://4qbgaxasfa35"] + +[ext_resource type="Texture2D" uid="uid://hvsfoxbihtdg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png" id="1_qsqyg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dfm6"] +atlas = ExtResource("1_qsqyg") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68crn"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1206, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r66bc"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1206, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kv68"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1206, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1w7c"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1206, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyn1a"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1005, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msefx"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bakhk"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g8r8"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2g7q"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe2mi"] +atlas = ExtResource("1_qsqyg") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v70o8"] +atlas = ExtResource("1_qsqyg") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njb1r"] +atlas = ExtResource("1_qsqyg") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc1qd"] +atlas = ExtResource("1_qsqyg") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dsgt"] +atlas = ExtResource("1_qsqyg") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63cuy"] +atlas = ExtResource("1_qsqyg") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsg1u"] +atlas = ExtResource("1_qsqyg") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si2ec"] +atlas = ExtResource("1_qsqyg") +region = Rect2(1206, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfo7q"] +atlas = ExtResource("1_qsqyg") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vdo5"] +atlas = ExtResource("1_qsqyg") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llapx"] +atlas = ExtResource("1_qsqyg") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctx27"] +atlas = ExtResource("1_qsqyg") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldirk"] +atlas = ExtResource("1_qsqyg") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mel84"] +atlas = ExtResource("1_qsqyg") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7kne"] +atlas = ExtResource("1_qsqyg") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2f5r"] +atlas = ExtResource("1_qsqyg") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox41a"] +atlas = ExtResource("1_qsqyg") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adb07"] +atlas = ExtResource("1_qsqyg") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c0dd"] +atlas = ExtResource("1_qsqyg") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q44ek"] +atlas = ExtResource("1_qsqyg") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpuxn"] +atlas = ExtResource("1_qsqyg") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf81h"] +atlas = ExtResource("1_qsqyg") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_226d0"] +atlas = ExtResource("1_qsqyg") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dyos"] +atlas = ExtResource("1_qsqyg") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufd0j"] +atlas = ExtResource("1_qsqyg") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dfm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68crn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r66bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kv68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1w7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyn1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msefx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bakhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g8r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2g7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe2mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v70o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njb1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc1qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dsgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63cuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsg1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si2ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfo7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vdo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llapx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctx27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldirk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mel84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7kne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2f5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox41a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adb07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c0dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q44ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpuxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf81h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_226d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dyos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufd0j") +}], +"loop": true, +"name": &"evolutionaryapex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_flashreincarnation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_flashreincarnation.tres new file mode 100644 index 0000000..cafa867 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_flashreincarnation.tres @@ -0,0 +1,179 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://wqv0khh5sl7y"] + +[ext_resource type="Texture2D" uid="uid://bqrucj6u6daxm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png" id="1_a7mr0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn7xd"] +atlas = ExtResource("1_a7mr0") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp7w2"] +atlas = ExtResource("1_a7mr0") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fwwo"] +atlas = ExtResource("1_a7mr0") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t42t"] +atlas = ExtResource("1_a7mr0") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu7kn"] +atlas = ExtResource("1_a7mr0") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrdfi"] +atlas = ExtResource("1_a7mr0") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwiw5"] +atlas = ExtResource("1_a7mr0") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqfsa"] +atlas = ExtResource("1_a7mr0") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1kjt"] +atlas = ExtResource("1_a7mr0") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bab2j"] +atlas = ExtResource("1_a7mr0") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0enbq"] +atlas = ExtResource("1_a7mr0") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qde0n"] +atlas = ExtResource("1_a7mr0") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy4be"] +atlas = ExtResource("1_a7mr0") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71pjp"] +atlas = ExtResource("1_a7mr0") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hgbe"] +atlas = ExtResource("1_a7mr0") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bm1a"] +atlas = ExtResource("1_a7mr0") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v3nj"] +atlas = ExtResource("1_a7mr0") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6167"] +atlas = ExtResource("1_a7mr0") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbygl"] +atlas = ExtResource("1_a7mr0") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1spxp"] +atlas = ExtResource("1_a7mr0") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq3c6"] +atlas = ExtResource("1_a7mr0") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdddg"] +atlas = ExtResource("1_a7mr0") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdyyw"] +atlas = ExtResource("1_a7mr0") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go50e"] +atlas = ExtResource("1_a7mr0") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn7xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp7w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fwwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t42t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu7kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrdfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwiw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqfsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1kjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bab2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0enbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qde0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy4be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71pjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hgbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bm1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v3nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6167") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbygl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1spxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq3c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdddg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdyyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go50e") +}], +"loop": true, +"name": &"flashreincarnation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_fractalreplication.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_fractalreplication.tres new file mode 100644 index 0000000..eef3ef1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_fractalreplication.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://qk7qs3ifs853"] + +[ext_resource type="Texture2D" uid="uid://c531hsb64ckf4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png" id="1_7kf1b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rofm0"] +atlas = ExtResource("1_7kf1b") +region = Rect2(450, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njb5q"] +atlas = ExtResource("1_7kf1b") +region = Rect2(1125, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0oae"] +atlas = ExtResource("1_7kf1b") +region = Rect2(1125, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8f2q"] +atlas = ExtResource("1_7kf1b") +region = Rect2(900, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0lnl"] +atlas = ExtResource("1_7kf1b") +region = Rect2(900, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcy1o"] +atlas = ExtResource("1_7kf1b") +region = Rect2(900, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pqw6"] +atlas = ExtResource("1_7kf1b") +region = Rect2(900, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7egr"] +atlas = ExtResource("1_7kf1b") +region = Rect2(675, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxw5t"] +atlas = ExtResource("1_7kf1b") +region = Rect2(675, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcr75"] +atlas = ExtResource("1_7kf1b") +region = Rect2(675, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p25fx"] +atlas = ExtResource("1_7kf1b") +region = Rect2(675, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qta6o"] +atlas = ExtResource("1_7kf1b") +region = Rect2(1125, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs8ct"] +atlas = ExtResource("1_7kf1b") +region = Rect2(450, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwvyh"] +atlas = ExtResource("1_7kf1b") +region = Rect2(450, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofywu"] +atlas = ExtResource("1_7kf1b") +region = Rect2(450, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x47ch"] +atlas = ExtResource("1_7kf1b") +region = Rect2(225, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wslvf"] +atlas = ExtResource("1_7kf1b") +region = Rect2(225, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skoge"] +atlas = ExtResource("1_7kf1b") +region = Rect2(225, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1eu7"] +atlas = ExtResource("1_7kf1b") +region = Rect2(225, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xodmh"] +atlas = ExtResource("1_7kf1b") +region = Rect2(0, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg4vi"] +atlas = ExtResource("1_7kf1b") +region = Rect2(0, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6fjc"] +atlas = ExtResource("1_7kf1b") +region = Rect2(0, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg8hk"] +atlas = ExtResource("1_7kf1b") +region = Rect2(0, 0, 224, 224) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rofm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njb5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0oae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8f2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0lnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcy1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pqw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7egr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxw5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcr75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p25fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qta6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs8ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwvyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofywu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x47ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wslvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skoge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1eu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xodmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg4vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6fjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg8hk") +}], +"loop": true, +"name": &"fractalreplication", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_kinectequilibrium.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_kinectequilibrium.tres new file mode 100644 index 0000000..e084565 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_kinectequilibrium.tres @@ -0,0 +1,158 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://pdipmnklq3qw"] + +[ext_resource type="Texture2D" uid="uid://dfkxgy5mgt3gs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png" id="1_yb7mo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbs8i"] +atlas = ExtResource("1_yb7mo") +region = Rect2(505, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdpwj"] +atlas = ExtResource("1_yb7mo") +region = Rect2(909, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkxl3"] +atlas = ExtResource("1_yb7mo") +region = Rect2(909, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_treq8"] +atlas = ExtResource("1_yb7mo") +region = Rect2(808, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtmid"] +atlas = ExtResource("1_yb7mo") +region = Rect2(808, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw2ia"] +atlas = ExtResource("1_yb7mo") +region = Rect2(707, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3350"] +atlas = ExtResource("1_yb7mo") +region = Rect2(707, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72r2l"] +atlas = ExtResource("1_yb7mo") +region = Rect2(606, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgriu"] +atlas = ExtResource("1_yb7mo") +region = Rect2(606, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj34m"] +atlas = ExtResource("1_yb7mo") +region = Rect2(505, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beaoi"] +atlas = ExtResource("1_yb7mo") +region = Rect2(1010, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3qno"] +atlas = ExtResource("1_yb7mo") +region = Rect2(404, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okc5g"] +atlas = ExtResource("1_yb7mo") +region = Rect2(404, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql44d"] +atlas = ExtResource("1_yb7mo") +region = Rect2(303, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lw36"] +atlas = ExtResource("1_yb7mo") +region = Rect2(303, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujyo3"] +atlas = ExtResource("1_yb7mo") +region = Rect2(202, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vyi6"] +atlas = ExtResource("1_yb7mo") +region = Rect2(202, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0it1e"] +atlas = ExtResource("1_yb7mo") +region = Rect2(101, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhufv"] +atlas = ExtResource("1_yb7mo") +region = Rect2(101, 0, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn2k5"] +atlas = ExtResource("1_yb7mo") +region = Rect2(0, 451, 100, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86fkk"] +atlas = ExtResource("1_yb7mo") +region = Rect2(0, 0, 100, 450) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbs8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdpwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkxl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_treq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtmid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw2ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3350") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72r2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgriu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj34m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beaoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3qno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okc5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql44d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lw36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vyi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0it1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhufv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn2k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86fkk") +}], +"loop": true, +"name": &"kinectequilibrium", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_manaburn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_manaburn.tres new file mode 100644 index 0000000..5e792b3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_manaburn.tres @@ -0,0 +1,179 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://cewd3gdv6iivs"] + +[ext_resource type="Texture2D" uid="uid://dqcj01b5cbdjf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png" id="1_lg0ap"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pe3k"] +atlas = ExtResource("1_lg0ap") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyqxo"] +atlas = ExtResource("1_lg0ap") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2urwa"] +atlas = ExtResource("1_lg0ap") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1605b"] +atlas = ExtResource("1_lg0ap") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiqlq"] +atlas = ExtResource("1_lg0ap") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ov2"] +atlas = ExtResource("1_lg0ap") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_824rs"] +atlas = ExtResource("1_lg0ap") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d48hs"] +atlas = ExtResource("1_lg0ap") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aqhu"] +atlas = ExtResource("1_lg0ap") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijwy8"] +atlas = ExtResource("1_lg0ap") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0ala"] +atlas = ExtResource("1_lg0ap") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y85rf"] +atlas = ExtResource("1_lg0ap") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rimhh"] +atlas = ExtResource("1_lg0ap") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv7g5"] +atlas = ExtResource("1_lg0ap") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aid3"] +atlas = ExtResource("1_lg0ap") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o15gl"] +atlas = ExtResource("1_lg0ap") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdu0t"] +atlas = ExtResource("1_lg0ap") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr7y2"] +atlas = ExtResource("1_lg0ap") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5y5r"] +atlas = ExtResource("1_lg0ap") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8kcm"] +atlas = ExtResource("1_lg0ap") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n488r"] +atlas = ExtResource("1_lg0ap") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noa0d"] +atlas = ExtResource("1_lg0ap") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l654"] +atlas = ExtResource("1_lg0ap") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6emkm"] +atlas = ExtResource("1_lg0ap") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pe3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyqxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2urwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1605b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiqlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ov2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_824rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d48hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aqhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijwy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0ala") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y85rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rimhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv7g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aid3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o15gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdu0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr7y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5y5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8kcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n488r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noa0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l654") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6emkm") +}], +"loop": true, +"name": &"manaburn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_mindsteal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_mindsteal.tres new file mode 100644 index 0000000..b857c22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_mindsteal.tres @@ -0,0 +1,207 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://bed36fi511gk8"] + +[ext_resource type="Texture2D" uid="uid://bombmqr3q0pdk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png" id="1_2ick3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nwyq"] +atlas = ExtResource("1_2ick3") +region = Rect2(675, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fstve"] +atlas = ExtResource("1_2ick3") +region = Rect2(1350, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eajwp"] +atlas = ExtResource("1_2ick3") +region = Rect2(1350, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mml1d"] +atlas = ExtResource("1_2ick3") +region = Rect2(1350, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdbdm"] +atlas = ExtResource("1_2ick3") +region = Rect2(1125, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa8pr"] +atlas = ExtResource("1_2ick3") +region = Rect2(1125, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq1co"] +atlas = ExtResource("1_2ick3") +region = Rect2(1125, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34yrf"] +atlas = ExtResource("1_2ick3") +region = Rect2(1125, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pgs2"] +atlas = ExtResource("1_2ick3") +region = Rect2(900, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfdda"] +atlas = ExtResource("1_2ick3") +region = Rect2(900, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2ct1"] +atlas = ExtResource("1_2ick3") +region = Rect2(900, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28v21"] +atlas = ExtResource("1_2ick3") +region = Rect2(900, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31wod"] +atlas = ExtResource("1_2ick3") +region = Rect2(675, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo1vt"] +atlas = ExtResource("1_2ick3") +region = Rect2(675, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw6wj"] +atlas = ExtResource("1_2ick3") +region = Rect2(1350, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ah4s"] +atlas = ExtResource("1_2ick3") +region = Rect2(675, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sl4w"] +atlas = ExtResource("1_2ick3") +region = Rect2(450, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1b3c"] +atlas = ExtResource("1_2ick3") +region = Rect2(450, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haxif"] +atlas = ExtResource("1_2ick3") +region = Rect2(450, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r46xo"] +atlas = ExtResource("1_2ick3") +region = Rect2(450, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6r3j"] +atlas = ExtResource("1_2ick3") +region = Rect2(225, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2cby"] +atlas = ExtResource("1_2ick3") +region = Rect2(225, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewawp"] +atlas = ExtResource("1_2ick3") +region = Rect2(225, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq517"] +atlas = ExtResource("1_2ick3") +region = Rect2(225, 0, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h4n7"] +atlas = ExtResource("1_2ick3") +region = Rect2(0, 675, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gchvy"] +atlas = ExtResource("1_2ick3") +region = Rect2(0, 450, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05heu"] +atlas = ExtResource("1_2ick3") +region = Rect2(0, 225, 224, 224) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oky51"] +atlas = ExtResource("1_2ick3") +region = Rect2(0, 0, 224, 224) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nwyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fstve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eajwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mml1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdbdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa8pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq1co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34yrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pgs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfdda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2ct1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28v21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31wod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo1vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw6wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ah4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sl4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1b3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haxif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r46xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6r3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2cby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewawp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq517") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h4n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gchvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05heu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oky51") +}], +"loop": true, +"name": &"mindsteal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_naturalselection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_naturalselection.tres new file mode 100644 index 0000000..8be281e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_naturalselection.tres @@ -0,0 +1,172 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bb2erkccnegmn"] + +[ext_resource type="Texture2D" uid="uid://dbomyqqkrkf2k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png" id="1_lpy04"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5sm5"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1oug"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k263"] +atlas = ExtResource("1_lpy04") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5y48"] +atlas = ExtResource("1_lpy04") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb1kh"] +atlas = ExtResource("1_lpy04") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pq2q"] +atlas = ExtResource("1_lpy04") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trvb7"] +atlas = ExtResource("1_lpy04") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv5nh"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj0ir"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p8s1"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjraf"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e16o2"] +atlas = ExtResource("1_lpy04") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kht5s"] +atlas = ExtResource("1_lpy04") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xodf1"] +atlas = ExtResource("1_lpy04") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqo4s"] +atlas = ExtResource("1_lpy04") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fymep"] +atlas = ExtResource("1_lpy04") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjqal"] +atlas = ExtResource("1_lpy04") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul8ng"] +atlas = ExtResource("1_lpy04") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgd4x"] +atlas = ExtResource("1_lpy04") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw64u"] +atlas = ExtResource("1_lpy04") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2118"] +atlas = ExtResource("1_lpy04") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14jf3"] +atlas = ExtResource("1_lpy04") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xccv2"] +atlas = ExtResource("1_lpy04") +region = Rect2(362, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5sm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1oug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k263") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5y48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb1kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pq2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trvb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv5nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj0ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p8s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjraf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e16o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kht5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xodf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqo4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fymep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjqal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul8ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgd4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw64u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2118") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14jf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xccv2") +}], +"loop": true, +"name": &"naturalselection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_primalmojo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_primalmojo.tres new file mode 100644 index 0000000..5575717 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_primalmojo.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://d34ksgcy5qmjv"] + +[ext_resource type="Texture2D" uid="uid://sok6o5fyg4ov" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png" id="1_c3kct"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0d62"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xwso"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66dv5"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncssg"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqr8h"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m14p"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3ld5"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py3ig"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh7lp"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yns2f"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udad7"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx1hn"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlcgd"] +atlas = ExtResource("1_c3kct") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6cf7"] +atlas = ExtResource("1_c3kct") +region = Rect2(453, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2qmh"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v4w2"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyv51"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh3qh"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tlt7"] +atlas = ExtResource("1_c3kct") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74j26"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hltk6"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqe2w"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbiec"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovlp8"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpr6y"] +atlas = ExtResource("1_c3kct") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0d62") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xwso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66dv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncssg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqr8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m14p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3ld5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py3ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh7lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yns2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udad7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx1hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlcgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6cf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2qmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v4w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyv51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh3qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tlt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74j26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hltk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqe2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbiec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovlp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpr6y") +}], +"loop": true, +"name": &"primalmojo", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_tremor.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_tremor.tres new file mode 100644 index 0000000..b17a7fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f5_tremor.tres @@ -0,0 +1,235 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://blj4i2hangtt1"] + +[ext_resource type="Texture2D" uid="uid://bkfhwd4a6pimb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png" id="1_duit2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke5vk"] +atlas = ExtResource("1_duit2") +region = Rect2(591, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x1bs"] +atlas = ExtResource("1_duit2") +region = Rect2(1182, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8foyc"] +atlas = ExtResource("1_duit2") +region = Rect2(985, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o74ih"] +atlas = ExtResource("1_duit2") +region = Rect2(985, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e5y8"] +atlas = ExtResource("1_duit2") +region = Rect2(985, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k1ir"] +atlas = ExtResource("1_duit2") +region = Rect2(985, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7yj7"] +atlas = ExtResource("1_duit2") +region = Rect2(985, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpjay"] +atlas = ExtResource("1_duit2") +region = Rect2(788, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebk0b"] +atlas = ExtResource("1_duit2") +region = Rect2(788, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6quit"] +atlas = ExtResource("1_duit2") +region = Rect2(788, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adbyp"] +atlas = ExtResource("1_duit2") +region = Rect2(788, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke8uq"] +atlas = ExtResource("1_duit2") +region = Rect2(788, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcgux"] +atlas = ExtResource("1_duit2") +region = Rect2(591, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm6to"] +atlas = ExtResource("1_duit2") +region = Rect2(591, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crvnj"] +atlas = ExtResource("1_duit2") +region = Rect2(591, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ors6x"] +atlas = ExtResource("1_duit2") +region = Rect2(591, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgoy0"] +atlas = ExtResource("1_duit2") +region = Rect2(1182, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcwbv"] +atlas = ExtResource("1_duit2") +region = Rect2(394, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncqrp"] +atlas = ExtResource("1_duit2") +region = Rect2(394, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xwt2"] +atlas = ExtResource("1_duit2") +region = Rect2(394, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kfxe"] +atlas = ExtResource("1_duit2") +region = Rect2(394, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc4m5"] +atlas = ExtResource("1_duit2") +region = Rect2(394, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw38b"] +atlas = ExtResource("1_duit2") +region = Rect2(197, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5wfx"] +atlas = ExtResource("1_duit2") +region = Rect2(197, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamst"] +atlas = ExtResource("1_duit2") +region = Rect2(197, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g487k"] +atlas = ExtResource("1_duit2") +region = Rect2(197, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhcxd"] +atlas = ExtResource("1_duit2") +region = Rect2(197, 0, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4afhn"] +atlas = ExtResource("1_duit2") +region = Rect2(0, 788, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jja77"] +atlas = ExtResource("1_duit2") +region = Rect2(0, 591, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqdld"] +atlas = ExtResource("1_duit2") +region = Rect2(0, 394, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u54xs"] +atlas = ExtResource("1_duit2") +region = Rect2(0, 197, 196, 196) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko28o"] +atlas = ExtResource("1_duit2") +region = Rect2(0, 0, 196, 196) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke5vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x1bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8foyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o74ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e5y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k1ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7yj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpjay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebk0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6quit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adbyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke8uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcgux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm6to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crvnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ors6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgoy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcwbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncqrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xwt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kfxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc4m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw38b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5wfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xamst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g487k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhcxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4afhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jja77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqdld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u54xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko28o") +}], +"loop": true, +"name": &"tremor", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_kinectsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_kinectsurge.tres new file mode 100644 index 0000000..2d52edb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_kinectsurge.tres @@ -0,0 +1,305 @@ +[gd_resource type="SpriteFrames" load_steps=44 format=3 uid="uid://cfnwunm3yb1h6"] + +[ext_resource type="Texture2D" uid="uid://brlplbf4h274p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png" id="1_nnea1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmrw3"] +atlas = ExtResource("1_nnea1") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1b5d"] +atlas = ExtResource("1_nnea1") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg3b4"] +atlas = ExtResource("1_nnea1") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aymch"] +atlas = ExtResource("1_nnea1") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxj2u"] +atlas = ExtResource("1_nnea1") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_078yu"] +atlas = ExtResource("1_nnea1") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp6n4"] +atlas = ExtResource("1_nnea1") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plc8p"] +atlas = ExtResource("1_nnea1") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2orvs"] +atlas = ExtResource("1_nnea1") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd33n"] +atlas = ExtResource("1_nnea1") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eye3"] +atlas = ExtResource("1_nnea1") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk1jc"] +atlas = ExtResource("1_nnea1") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqr7"] +atlas = ExtResource("1_nnea1") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62qi4"] +atlas = ExtResource("1_nnea1") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0be6r"] +atlas = ExtResource("1_nnea1") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpga7"] +atlas = ExtResource("1_nnea1") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1kek"] +atlas = ExtResource("1_nnea1") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye67d"] +atlas = ExtResource("1_nnea1") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70jlb"] +atlas = ExtResource("1_nnea1") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxlyk"] +atlas = ExtResource("1_nnea1") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so3fa"] +atlas = ExtResource("1_nnea1") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kor8m"] +atlas = ExtResource("1_nnea1") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n5gl"] +atlas = ExtResource("1_nnea1") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwamf"] +atlas = ExtResource("1_nnea1") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ycj1"] +atlas = ExtResource("1_nnea1") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlila"] +atlas = ExtResource("1_nnea1") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ashvo"] +atlas = ExtResource("1_nnea1") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvg4"] +atlas = ExtResource("1_nnea1") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m13y6"] +atlas = ExtResource("1_nnea1") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bel34"] +atlas = ExtResource("1_nnea1") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmrrl"] +atlas = ExtResource("1_nnea1") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5dig"] +atlas = ExtResource("1_nnea1") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul6da"] +atlas = ExtResource("1_nnea1") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxyyf"] +atlas = ExtResource("1_nnea1") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35neg"] +atlas = ExtResource("1_nnea1") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sncs"] +atlas = ExtResource("1_nnea1") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmja3"] +atlas = ExtResource("1_nnea1") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prgc7"] +atlas = ExtResource("1_nnea1") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4boa"] +atlas = ExtResource("1_nnea1") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nopj8"] +atlas = ExtResource("1_nnea1") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smrok"] +atlas = ExtResource("1_nnea1") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pir2"] +atlas = ExtResource("1_nnea1") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmrw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1b5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg3b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aymch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxj2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_078yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp6n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plc8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2orvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd33n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eye3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk1jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62qi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0be6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpga7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1kek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye67d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70jlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxlyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so3fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kor8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n5gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwamf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ycj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlila") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ashvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebvg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m13y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bel34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmrrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5dig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul6da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxyyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35neg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sncs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmja3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prgc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4boa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nopj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smrok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pir2") +}], +"loop": true, +"name": &"kinectsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_stun.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_stun.tres new file mode 100644 index 0000000..a5eb72b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_stun.tres @@ -0,0 +1,354 @@ +[gd_resource type="SpriteFrames" load_steps=51 format=3 uid="uid://x6wqpyp1oafy"] + +[ext_resource type="Texture2D" uid="uid://b3yw7e3itb0ld" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png" id="1_ggw8q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6815"] +atlas = ExtResource("1_ggw8q") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y6p5"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1629, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6g6f"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2kqf"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu478"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urm8s"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yww1n"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpov7"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ey3q"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ai2"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca2vb"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipeow"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uact"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amofn"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df1x2"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f82ob"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44f4t"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8878"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfppx"] +atlas = ExtResource("1_ggw8q") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ngwr"] +atlas = ExtResource("1_ggw8q") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3a6a"] +atlas = ExtResource("1_ggw8q") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0de3"] +atlas = ExtResource("1_ggw8q") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocfg2"] +atlas = ExtResource("1_ggw8q") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teglm"] +atlas = ExtResource("1_ggw8q") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lftu3"] +atlas = ExtResource("1_ggw8q") +region = Rect2(1629, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1cgh"] +atlas = ExtResource("1_ggw8q") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byq85"] +atlas = ExtResource("1_ggw8q") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnjvp"] +atlas = ExtResource("1_ggw8q") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b635n"] +atlas = ExtResource("1_ggw8q") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lba5g"] +atlas = ExtResource("1_ggw8q") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk2ae"] +atlas = ExtResource("1_ggw8q") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox3u6"] +atlas = ExtResource("1_ggw8q") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0eve"] +atlas = ExtResource("1_ggw8q") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edsya"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3u3h"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmxrw"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpnxu"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yanw1"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcfwy"] +atlas = ExtResource("1_ggw8q") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k8op"] +atlas = ExtResource("1_ggw8q") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3imx"] +atlas = ExtResource("1_ggw8q") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jpjd"] +atlas = ExtResource("1_ggw8q") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i7uf"] +atlas = ExtResource("1_ggw8q") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4qkj"] +atlas = ExtResource("1_ggw8q") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu5t8"] +atlas = ExtResource("1_ggw8q") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wud30"] +atlas = ExtResource("1_ggw8q") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r7t7"] +atlas = ExtResource("1_ggw8q") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daxax"] +atlas = ExtResource("1_ggw8q") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uics"] +atlas = ExtResource("1_ggw8q") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6815") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y6p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6g6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2kqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu478") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urm8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yww1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpov7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ey3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ai2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca2vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipeow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uact") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amofn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df1x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f82ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44f4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfppx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ngwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3a6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0de3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocfg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teglm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lftu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1cgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byq85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnjvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b635n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lba5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk2ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox3u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0eve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edsya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3u3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmxrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpnxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yanw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcfwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k8op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3imx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jpjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i7uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4qkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu5t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wud30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r7t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daxax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uics") +}], +"loop": true, +"name": &"stun", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_warbird.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_warbird.tres new file mode 100644 index 0000000..5fd8322 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_bbs_warbird.tres @@ -0,0 +1,333 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://bdq7fwcw85pco"] + +[ext_resource type="Texture2D" uid="uid://bhdo02lfcdnn7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png" id="1_plvxs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d8ks"] +atlas = ExtResource("1_plvxs") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clpqw"] +atlas = ExtResource("1_plvxs") +region = Rect2(1448, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4t32"] +atlas = ExtResource("1_plvxs") +region = Rect2(1448, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb3ac"] +atlas = ExtResource("1_plvxs") +region = Rect2(1448, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yphg"] +atlas = ExtResource("1_plvxs") +region = Rect2(1448, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h26ki"] +atlas = ExtResource("1_plvxs") +region = Rect2(1448, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar12x"] +atlas = ExtResource("1_plvxs") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mayxa"] +atlas = ExtResource("1_plvxs") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22u4t"] +atlas = ExtResource("1_plvxs") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkcrk"] +atlas = ExtResource("1_plvxs") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r0c4"] +atlas = ExtResource("1_plvxs") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm7ws"] +atlas = ExtResource("1_plvxs") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkqqd"] +atlas = ExtResource("1_plvxs") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1yx3"] +atlas = ExtResource("1_plvxs") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uxo2"] +atlas = ExtResource("1_plvxs") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohd8x"] +atlas = ExtResource("1_plvxs") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mewrf"] +atlas = ExtResource("1_plvxs") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kwa1"] +atlas = ExtResource("1_plvxs") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifvc2"] +atlas = ExtResource("1_plvxs") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smad4"] +atlas = ExtResource("1_plvxs") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q6il"] +atlas = ExtResource("1_plvxs") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi4ko"] +atlas = ExtResource("1_plvxs") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ft7t"] +atlas = ExtResource("1_plvxs") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx8sn"] +atlas = ExtResource("1_plvxs") +region = Rect2(1629, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew7nq"] +atlas = ExtResource("1_plvxs") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2rad"] +atlas = ExtResource("1_plvxs") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqbdv"] +atlas = ExtResource("1_plvxs") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnry4"] +atlas = ExtResource("1_plvxs") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_paoln"] +atlas = ExtResource("1_plvxs") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31gyj"] +atlas = ExtResource("1_plvxs") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ti5w"] +atlas = ExtResource("1_plvxs") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcsd6"] +atlas = ExtResource("1_plvxs") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqvuo"] +atlas = ExtResource("1_plvxs") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8ihg"] +atlas = ExtResource("1_plvxs") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqggb"] +atlas = ExtResource("1_plvxs") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukwu2"] +atlas = ExtResource("1_plvxs") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn1cm"] +atlas = ExtResource("1_plvxs") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mngdd"] +atlas = ExtResource("1_plvxs") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywoud"] +atlas = ExtResource("1_plvxs") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkd6d"] +atlas = ExtResource("1_plvxs") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xpwe"] +atlas = ExtResource("1_plvxs") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36oq3"] +atlas = ExtResource("1_plvxs") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v47vo"] +atlas = ExtResource("1_plvxs") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khim6"] +atlas = ExtResource("1_plvxs") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13jk2"] +atlas = ExtResource("1_plvxs") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sgs1"] +atlas = ExtResource("1_plvxs") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d8ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clpqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4t32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb3ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yphg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h26ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar12x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mayxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22u4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkcrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r0c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm7ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkqqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1yx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uxo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohd8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mewrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kwa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifvc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smad4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q6il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi4ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ft7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx8sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew7nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2rad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqbdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnry4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_paoln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31gyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ti5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcsd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqvuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8ihg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqggb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukwu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn1cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mngdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywoud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkd6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xpwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36oq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v47vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khim6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13jk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sgs1") +}], +"loop": true, +"name": &"warbird", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_chromaticcold.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_chromaticcold.tres new file mode 100644 index 0000000..087ab3c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_chromaticcold.tres @@ -0,0 +1,298 @@ +[gd_resource type="SpriteFrames" load_steps=43 format=3 uid="uid://d1cw7uj77267a"] + +[ext_resource type="Texture2D" uid="uid://bwsrxql5lwtg5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png" id="1_ukqia"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pqy0"] +atlas = ExtResource("1_ukqia") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f260"] +atlas = ExtResource("1_ukqia") +region = Rect2(1407, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ce84"] +atlas = ExtResource("1_ukqia") +region = Rect2(1407, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1n8m"] +atlas = ExtResource("1_ukqia") +region = Rect2(1407, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1jsg"] +atlas = ExtResource("1_ukqia") +region = Rect2(1407, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uenxa"] +atlas = ExtResource("1_ukqia") +region = Rect2(1407, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx0rv"] +atlas = ExtResource("1_ukqia") +region = Rect2(1206, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb3s7"] +atlas = ExtResource("1_ukqia") +region = Rect2(1206, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roxp7"] +atlas = ExtResource("1_ukqia") +region = Rect2(1206, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k43ya"] +atlas = ExtResource("1_ukqia") +region = Rect2(1206, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3gaa"] +atlas = ExtResource("1_ukqia") +region = Rect2(1206, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7exc7"] +atlas = ExtResource("1_ukqia") +region = Rect2(1005, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76pt5"] +atlas = ExtResource("1_ukqia") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqflj"] +atlas = ExtResource("1_ukqia") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1k6i"] +atlas = ExtResource("1_ukqia") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbbec"] +atlas = ExtResource("1_ukqia") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v5jv"] +atlas = ExtResource("1_ukqia") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nan2p"] +atlas = ExtResource("1_ukqia") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4atb"] +atlas = ExtResource("1_ukqia") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flayj"] +atlas = ExtResource("1_ukqia") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7hwj"] +atlas = ExtResource("1_ukqia") +region = Rect2(1608, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vf5h"] +atlas = ExtResource("1_ukqia") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3dtj"] +atlas = ExtResource("1_ukqia") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mleny"] +atlas = ExtResource("1_ukqia") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t15up"] +atlas = ExtResource("1_ukqia") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_richu"] +atlas = ExtResource("1_ukqia") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3qds"] +atlas = ExtResource("1_ukqia") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liys1"] +atlas = ExtResource("1_ukqia") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pxis"] +atlas = ExtResource("1_ukqia") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khdh7"] +atlas = ExtResource("1_ukqia") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26l20"] +atlas = ExtResource("1_ukqia") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd0fn"] +atlas = ExtResource("1_ukqia") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qugws"] +atlas = ExtResource("1_ukqia") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amhhf"] +atlas = ExtResource("1_ukqia") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37jbr"] +atlas = ExtResource("1_ukqia") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5sqy"] +atlas = ExtResource("1_ukqia") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov42r"] +atlas = ExtResource("1_ukqia") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rendj"] +atlas = ExtResource("1_ukqia") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibaf1"] +atlas = ExtResource("1_ukqia") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kpnm"] +atlas = ExtResource("1_ukqia") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxtsg"] +atlas = ExtResource("1_ukqia") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pqy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f260") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ce84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1n8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1jsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uenxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx0rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb3s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roxp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k43ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3gaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7exc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76pt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqflj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1k6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbbec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v5jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nan2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4atb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flayj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7hwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vf5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3dtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mleny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t15up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_richu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3qds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liys1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pxis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khdh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26l20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd0fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qugws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amhhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37jbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5sqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov42r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rendj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibaf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kpnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxtsg") +}], +"loop": true, +"name": &"chromaticcold", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_cryogenesis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_cryogenesis.tres new file mode 100644 index 0000000..c3a8d83 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_cryogenesis.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://tghpjc7wv0b0"] + +[ext_resource type="Texture2D" uid="uid://d35odmsity4dh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png" id="1_w5cea"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7k6g"] +atlas = ExtResource("1_w5cea") +region = Rect2(483, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ic3m"] +atlas = ExtResource("1_w5cea") +region = Rect2(805, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_631cc"] +atlas = ExtResource("1_w5cea") +region = Rect2(805, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akvhn"] +atlas = ExtResource("1_w5cea") +region = Rect2(805, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_602mu"] +atlas = ExtResource("1_w5cea") +region = Rect2(805, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smi3h"] +atlas = ExtResource("1_w5cea") +region = Rect2(644, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykbdv"] +atlas = ExtResource("1_w5cea") +region = Rect2(644, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r28g7"] +atlas = ExtResource("1_w5cea") +region = Rect2(644, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulnw5"] +atlas = ExtResource("1_w5cea") +region = Rect2(644, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs0sl"] +atlas = ExtResource("1_w5cea") +region = Rect2(483, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnlcq"] +atlas = ExtResource("1_w5cea") +region = Rect2(483, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mwgo"] +atlas = ExtResource("1_w5cea") +region = Rect2(483, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdac2"] +atlas = ExtResource("1_w5cea") +region = Rect2(966, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa3nn"] +atlas = ExtResource("1_w5cea") +region = Rect2(322, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3yk8"] +atlas = ExtResource("1_w5cea") +region = Rect2(322, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x021v"] +atlas = ExtResource("1_w5cea") +region = Rect2(322, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4cjf"] +atlas = ExtResource("1_w5cea") +region = Rect2(322, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmcm7"] +atlas = ExtResource("1_w5cea") +region = Rect2(322, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay0lp"] +atlas = ExtResource("1_w5cea") +region = Rect2(161, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxnwj"] +atlas = ExtResource("1_w5cea") +region = Rect2(161, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhwn2"] +atlas = ExtResource("1_w5cea") +region = Rect2(161, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ust1o"] +atlas = ExtResource("1_w5cea") +region = Rect2(161, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e85ad"] +atlas = ExtResource("1_w5cea") +region = Rect2(0, 1353, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6b5w"] +atlas = ExtResource("1_w5cea") +region = Rect2(0, 902, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kvn5"] +atlas = ExtResource("1_w5cea") +region = Rect2(0, 451, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpt64"] +atlas = ExtResource("1_w5cea") +region = Rect2(0, 0, 160, 450) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exvi4"] +atlas = ExtResource("1_w5cea") +region = Rect2(483, 0, 160, 450) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7k6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ic3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_631cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akvhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_602mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smi3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykbdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r28g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulnw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs0sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnlcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mwgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdac2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa3nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3yk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x021v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4cjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmcm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay0lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxnwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhwn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ust1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e85ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6b5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kvn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpt64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exvi4") +}], +"loop": true, +"name": &"cryogenesis", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_hailstoneprison.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_hailstoneprison.tres new file mode 100644 index 0000000..72cd9a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_hailstoneprison.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://c70hl28a2hybc"] + +[ext_resource type="Texture2D" uid="uid://ck7rauduyp47f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png" id="1_a2s4w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wgiw"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7coyb"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p505k"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2mk4"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebbjx"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8cbn"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfalq"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1204, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjewi"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofqwq"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yujft"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svahu"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uilfm"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wf6j"] +atlas = ExtResource("1_a2s4w") +region = Rect2(903, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oohl1"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dct8f"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_engr2"] +atlas = ExtResource("1_a2s4w") +region = Rect2(1505, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3m3v"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxlr4"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1v7x"] +atlas = ExtResource("1_a2s4w") +region = Rect2(602, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hb5o"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnado"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wwf"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b0wq"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lo48"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho8ce"] +atlas = ExtResource("1_a2s4w") +region = Rect2(301, 0, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk8cw"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 1505, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si31c"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 1204, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6fam"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 903, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy2pu"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 602, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wom44"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 301, 300, 300) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgby4"] +atlas = ExtResource("1_a2s4w") +region = Rect2(0, 0, 300, 300) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wgiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7coyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p505k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2mk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebbjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8cbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfalq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjewi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofqwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yujft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svahu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uilfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wf6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oohl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dct8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_engr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3m3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxlr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1v7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hb5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnado") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2wwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b0wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lo48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho8ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk8cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si31c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6fam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy2pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wom44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgby4") +}], +"loop": true, +"name": &"hailstoneprison", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_markofsolitude.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_markofsolitude.tres new file mode 100644 index 0000000..97ddcd0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_markofsolitude.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://bef6otk70g7gh"] + +[ext_resource type="Texture2D" uid="uid://b5s51nbyvj1wq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png" id="1_rmawa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4lam"] +atlas = ExtResource("1_rmawa") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cngc"] +atlas = ExtResource("1_rmawa") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unupc"] +atlas = ExtResource("1_rmawa") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o38ap"] +atlas = ExtResource("1_rmawa") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ukv"] +atlas = ExtResource("1_rmawa") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq4it"] +atlas = ExtResource("1_rmawa") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sii4"] +atlas = ExtResource("1_rmawa") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lub4"] +atlas = ExtResource("1_rmawa") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p702p"] +atlas = ExtResource("1_rmawa") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h841f"] +atlas = ExtResource("1_rmawa") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ienh1"] +atlas = ExtResource("1_rmawa") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etpg0"] +atlas = ExtResource("1_rmawa") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l6hg"] +atlas = ExtResource("1_rmawa") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vb8v"] +atlas = ExtResource("1_rmawa") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnksp"] +atlas = ExtResource("1_rmawa") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el7w2"] +atlas = ExtResource("1_rmawa") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqy42"] +atlas = ExtResource("1_rmawa") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s7o2"] +atlas = ExtResource("1_rmawa") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u44g8"] +atlas = ExtResource("1_rmawa") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osdua"] +atlas = ExtResource("1_rmawa") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mscpm"] +atlas = ExtResource("1_rmawa") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqs74"] +atlas = ExtResource("1_rmawa") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldua0"] +atlas = ExtResource("1_rmawa") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud1xg"] +atlas = ExtResource("1_rmawa") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsqss"] +atlas = ExtResource("1_rmawa") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uh4x"] +atlas = ExtResource("1_rmawa") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lux5"] +atlas = ExtResource("1_rmawa") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeq5n"] +atlas = ExtResource("1_rmawa") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krok5"] +atlas = ExtResource("1_rmawa") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poe2s"] +atlas = ExtResource("1_rmawa") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktatt"] +atlas = ExtResource("1_rmawa") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibu0"] +atlas = ExtResource("1_rmawa") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7guyr"] +atlas = ExtResource("1_rmawa") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axntj"] +atlas = ExtResource("1_rmawa") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sytb"] +atlas = ExtResource("1_rmawa") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgcd4"] +atlas = ExtResource("1_rmawa") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tsu"] +atlas = ExtResource("1_rmawa") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqj1j"] +atlas = ExtResource("1_rmawa") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dev43"] +atlas = ExtResource("1_rmawa") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwaqr"] +atlas = ExtResource("1_rmawa") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4lam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cngc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unupc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o38ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ukv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq4it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sii4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lub4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p702p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h841f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ienh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etpg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l6hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vb8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnksp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el7w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqy42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s7o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u44g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osdua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mscpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqs74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud1xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsqss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uh4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lux5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeq5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krok5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poe2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktatt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7guyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axntj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sytb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgcd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7tsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqj1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dev43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwaqr") +}], +"loop": true, +"name": &"markofsolitude", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_mesmerize.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_mesmerize.tres new file mode 100644 index 0000000..40ae299 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_mesmerize.tres @@ -0,0 +1,200 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://wvp3oir3q8vm"] + +[ext_resource type="Texture2D" uid="uid://dc6xsqo1px0ll" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png" id="1_or1f3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8uo"] +atlas = ExtResource("1_or1f3") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2n7u"] +atlas = ExtResource("1_or1f3") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7icgk"] +atlas = ExtResource("1_or1f3") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n8cu"] +atlas = ExtResource("1_or1f3") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5uay"] +atlas = ExtResource("1_or1f3") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au4fq"] +atlas = ExtResource("1_or1f3") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g60yj"] +atlas = ExtResource("1_or1f3") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibo2m"] +atlas = ExtResource("1_or1f3") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b05v0"] +atlas = ExtResource("1_or1f3") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2go2i"] +atlas = ExtResource("1_or1f3") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dpmx"] +atlas = ExtResource("1_or1f3") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_766qu"] +atlas = ExtResource("1_or1f3") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o42e"] +atlas = ExtResource("1_or1f3") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knc2w"] +atlas = ExtResource("1_or1f3") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8646"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2kyr"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnnbd"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0hvf"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc254"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw1e1"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxqnt"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8odte"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yusq1"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5aqp"] +atlas = ExtResource("1_or1f3") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipji0"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wvlb"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x314h"] +atlas = ExtResource("1_or1f3") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2n7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7icgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n8cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5uay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au4fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g60yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibo2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b05v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2go2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dpmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_766qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o42e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knc2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8646") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2kyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnnbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0hvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc254") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw1e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxqnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8odte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yusq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5aqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipji0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wvlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x314h") +}], +"loop": true, +"name": &"mesmerize", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_perfectreflection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_perfectreflection.tres new file mode 100644 index 0000000..52a0b09 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_perfectreflection.tres @@ -0,0 +1,228 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://8ml2oke3lwhq"] + +[ext_resource type="Texture2D" uid="uid://bbgdh4wi7ohxm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png" id="1_pys3g"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_larsy"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyurf"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi0oo"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_857wd"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a40a8"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyixy"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wschj"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppkuk"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hcgl"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnr3d"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvwvl"] +atlas = ExtResource("1_pys3g") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fykyh"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1skr"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmtfp"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlu3m"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb6hi"] +atlas = ExtResource("1_pys3g") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jaq7"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3t8h"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsm31"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxdb1"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swvrf"] +atlas = ExtResource("1_pys3g") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8ba"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1hlh"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1hav"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5snh3"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5cfx"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckrva"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18kvv"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke52f"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awkw5"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ltn"] +atlas = ExtResource("1_pys3g") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_larsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyurf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi0oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_857wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a40a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyixy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wschj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppkuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hcgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnr3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvwvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fykyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1skr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmtfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlu3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb6hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jaq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3t8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsm31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxdb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swvrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1hlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1hav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5snh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5cfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckrva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18kvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke52f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awkw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ltn") +}], +"loop": true, +"name": &"perfectreflection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_spiritofthewild.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_spiritofthewild.tres new file mode 100644 index 0000000..c25a65e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_f6_spiritofthewild.tres @@ -0,0 +1,214 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://b1in1otjpchjr"] + +[ext_resource type="Texture2D" uid="uid://b87btpy255ajd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png" id="1_idxil"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gierf"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 614, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iybi"] +atlas = ExtResource("1_idxil") +region = Rect2(1380, 921, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xye4r"] +atlas = ExtResource("1_idxil") +region = Rect2(1380, 614, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sua77"] +atlas = ExtResource("1_idxil") +region = Rect2(1380, 307, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np1re"] +atlas = ExtResource("1_idxil") +region = Rect2(1380, 0, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmcby"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 1535, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33rqv"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 1228, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64vgo"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 921, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4tkh"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 614, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pba02"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 307, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7381"] +atlas = ExtResource("1_idxil") +region = Rect2(1035, 0, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmifi"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 1535, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfjy7"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 1228, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7op7u"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 921, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5765"] +atlas = ExtResource("1_idxil") +region = Rect2(1380, 1228, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f3hj"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 307, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak7u0"] +atlas = ExtResource("1_idxil") +region = Rect2(690, 0, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rovn"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 1535, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6602"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 1228, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apxda"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 921, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spbrx"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 614, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oph6l"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 307, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhd6x"] +atlas = ExtResource("1_idxil") +region = Rect2(345, 0, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1887c"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 1535, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c8vv"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 1228, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elojd"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 921, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ttex"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 614, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu0bf"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 307, 344, 306) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c60t"] +atlas = ExtResource("1_idxil") +region = Rect2(0, 0, 344, 306) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gierf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iybi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xye4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sua77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np1re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmcby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33rqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64vgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4tkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pba02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7381") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmifi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfjy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7op7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5765") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f3hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak7u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rovn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6602") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apxda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spbrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oph6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhd6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1887c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c8vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ttex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu0bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c60t") +}], +"loop": true, +"name": &"spiritofthewild", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire.tres new file mode 100644 index 0000000..b040068 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire.tres @@ -0,0 +1,288 @@ +[gd_resource type="SpriteFrames" load_steps=38 format=3 uid="uid://dv57rx27sno6x"] + +[ext_resource type="Texture2D" uid="uid://c7knobmp5782g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png" id="1_flkbe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhmfl"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgavv"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulc1k"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xklg7"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_755xm"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltb3d"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eegto"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1dfo"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abp02"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvhmk"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ol2i"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k6v8"] +atlas = ExtResource("1_flkbe") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdnn8"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g5ha"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb4ls"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84gw0"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vavi2"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx4vp"] +atlas = ExtResource("1_flkbe") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi24u"] +atlas = ExtResource("1_flkbe") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsfx3"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgsh6"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyf0n"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyf8y"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq00s"] +atlas = ExtResource("1_flkbe") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_844hf"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuuaa"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iinkx"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egf85"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaupo"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfups"] +atlas = ExtResource("1_flkbe") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpsqg"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dyy"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg4gj"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ton"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wllkm"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6kmp"] +atlas = ExtResource("1_flkbe") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhmfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgavv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulc1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xklg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_755xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltb3d") +}], +"loop": true, +"name": &"fairiefireblack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eegto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1dfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abp02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvhmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ol2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k6v8") +}], +"loop": true, +"name": &"fairiefireblue", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdnn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g5ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb4ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84gw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vavi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx4vp") +}], +"loop": true, +"name": &"fairiefiregreen", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi24u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsfx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgsh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyf0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyf8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq00s") +}], +"loop": true, +"name": &"fairiefirepurple", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_844hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuuaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iinkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egf85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaupo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfups") +}], +"loop": true, +"name": &"fairiefirered", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpsqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg4gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ton") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wllkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6kmp") +}], +"loop": true, +"name": &"fairiefireyellow", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire_old.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire_old.tres new file mode 100644 index 0000000..c6afcbc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fairiefire_old.tres @@ -0,0 +1,100 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://cevx8hbrjngag"] + +[ext_resource type="Texture2D" uid="uid://d0n6bfmhcodry" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png" id="1_toxvh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gytf"] +atlas = ExtResource("1_toxvh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og7mu"] +atlas = ExtResource("1_toxvh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7acyl"] +atlas = ExtResource("1_toxvh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sm6t"] +atlas = ExtResource("1_toxvh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sli4o"] +atlas = ExtResource("1_toxvh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kucr"] +atlas = ExtResource("1_toxvh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw5rj"] +atlas = ExtResource("1_toxvh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p623k"] +atlas = ExtResource("1_toxvh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5h0s"] +atlas = ExtResource("1_toxvh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axqik"] +atlas = ExtResource("1_toxvh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvchj"] +atlas = ExtResource("1_toxvh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwhd1"] +atlas = ExtResource("1_toxvh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gytf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og7mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7acyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sm6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sli4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kucr") +}], +"loop": true, +"name": &"fairiefirepurple", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw5rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p623k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5h0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axqik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvchj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwhd1") +}], +"loop": true, +"name": &"fairiefirered", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firefallground.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firefallground.tres new file mode 100644 index 0000000..513e825 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firefallground.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://blypjeh2ohyyp"] + +[ext_resource type="Texture2D" uid="uid://d33m0l6hixyqp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png" id="1_shv3t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8120"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 2, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h153"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 126, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyj02"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 250, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h10mx"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 374, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr3ib"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 374, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2a8l"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 374, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjp7o"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 250, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t57qv"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 126, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38wdq"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 2, 130, 122) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfpnk"] +atlas = ExtResource("1_shv3t") +region = Rect2(2, 2, 130, 122) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8120") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h153") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyj02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h10mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr3ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2a8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjp7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t57qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38wdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfpnk") +}], +"loop": true, +"name": &"firefallground", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireimpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireimpact.tres new file mode 100644 index 0000000..3a64dfb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireimpact.tres @@ -0,0 +1,60 @@ +[gd_resource type="SpriteFrames" load_steps=9 format=3 uid="uid://i5cu4ukn8q8r"] + +[ext_resource type="Texture2D" uid="uid://dpqjadnsf1hdo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png" id="1_e2nw8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_thyyo"] +atlas = ExtResource("1_e2nw8") +region = Rect2(93, 0, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whchp"] +atlas = ExtResource("1_e2nw8") +region = Rect2(93, 162, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ssm"] +atlas = ExtResource("1_e2nw8") +region = Rect2(93, 81, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqbb1"] +atlas = ExtResource("1_e2nw8") +region = Rect2(186, 0, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q06c"] +atlas = ExtResource("1_e2nw8") +region = Rect2(0, 162, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04wp4"] +atlas = ExtResource("1_e2nw8") +region = Rect2(0, 81, 92, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4y3o"] +atlas = ExtResource("1_e2nw8") +region = Rect2(0, 0, 92, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_thyyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whchp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ssm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqbb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q06c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04wp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4y3o") +}], +"loop": true, +"name": &"fireimpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireslash.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireslash.tres new file mode 100644 index 0000000..3910a69 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_fireslash.tres @@ -0,0 +1,102 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://d4iux8omgor0k"] + +[ext_resource type="Texture2D" uid="uid://bk1ltvr6qt7se" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png" id="1_1tn4i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d08h1"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnj1j"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r36vr"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28btq"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30esw"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tj6b"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj504"] +atlas = ExtResource("1_1tn4i") +region = Rect2(129, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pancp"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8gle"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uyvn"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lblqd"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtpsv"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkbrw"] +atlas = ExtResource("1_1tn4i") +region = Rect2(0, 0, 128, 128) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d08h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnj1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r36vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28btq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30esw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tj6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj504") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pancp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8gle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uyvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lblqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtpsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkbrw") +}], +"loop": true, +"name": &"fireslash", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firetornado.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firetornado.tres new file mode 100644 index 0000000..cc242fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_firetornado.tres @@ -0,0 +1,102 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://bgspwhmj1avqq"] + +[ext_resource type="Texture2D" uid="uid://cpddnbwwu278" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png" id="1_wxiu4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_grjnm"] +atlas = ExtResource("1_wxiu4") +region = Rect2(130, 0, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4s3n"] +atlas = ExtResource("1_wxiu4") +region = Rect2(195, 142, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp70a"] +atlas = ExtResource("1_wxiu4") +region = Rect2(195, 71, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciygo"] +atlas = ExtResource("1_wxiu4") +region = Rect2(195, 0, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8fve"] +atlas = ExtResource("1_wxiu4") +region = Rect2(130, 142, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5bvy"] +atlas = ExtResource("1_wxiu4") +region = Rect2(130, 71, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxo23"] +atlas = ExtResource("1_wxiu4") +region = Rect2(260, 0, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sucyy"] +atlas = ExtResource("1_wxiu4") +region = Rect2(65, 142, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snfws"] +atlas = ExtResource("1_wxiu4") +region = Rect2(65, 71, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki5yb"] +atlas = ExtResource("1_wxiu4") +region = Rect2(65, 0, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfig1"] +atlas = ExtResource("1_wxiu4") +region = Rect2(0, 142, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v13gd"] +atlas = ExtResource("1_wxiu4") +region = Rect2(0, 71, 64, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dtai"] +atlas = ExtResource("1_wxiu4") +region = Rect2(0, 0, 64, 70) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_grjnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4s3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp70a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciygo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8fve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5bvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxo23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sucyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snfws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki5yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfig1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v13gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dtai") +}], +"loop": true, +"name": &"firetornado", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_flamesphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_flamesphere.tres new file mode 100644 index 0000000..85ec0d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_flamesphere.tres @@ -0,0 +1,298 @@ +[gd_resource type="SpriteFrames" load_steps=43 format=3 uid="uid://dsnaus7eak634"] + +[ext_resource type="Texture2D" uid="uid://cpqc8145mgiim" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png" id="1_dyrg3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iihhc"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exs5m"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlo2c"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0ilb"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vimrc"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjomr"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4hot"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3k28"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_181fr"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j33a4"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btge6"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3vy6"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73h5f"] +atlas = ExtResource("1_dyrg3") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbygq"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy28g"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6fs2"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s03rw"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg4mf"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ji8"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o572l"] +atlas = ExtResource("1_dyrg3") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc2p6"] +atlas = ExtResource("1_dyrg3") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is3s0"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0a0y"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3xpe"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1h2k"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoq2b"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_funb5"] +atlas = ExtResource("1_dyrg3") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h01sv"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inq40"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj34f"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esqke"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwjnf"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ha4"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnrqc"] +atlas = ExtResource("1_dyrg3") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh1y2"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo3sf"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n21s1"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk6po"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntwtd"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho66l"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtw4j"] +atlas = ExtResource("1_dyrg3") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iihhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exs5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlo2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0ilb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vimrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjomr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4hot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3k28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_181fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j33a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btge6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3vy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73h5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbygq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy28g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6fs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s03rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg4mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ji8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o572l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc2p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is3s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0a0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3xpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1h2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoq2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_funb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h01sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inq40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj34f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esqke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwjnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ha4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnrqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh1y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo3sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n21s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk6po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntwtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho66l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtw4j") +}], +"loop": true, +"name": &"flamesphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_frozen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_frozen.tres new file mode 100644 index 0000000..88c2212 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_frozen.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://c0fppgdqnqqkg"] + +[ext_resource type="Texture2D" uid="uid://dxuwbwqcbbm3s" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png" id="1_81pwq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bevt4"] +atlas = ExtResource("1_81pwq") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65nfm"] +atlas = ExtResource("1_81pwq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sbrc"] +atlas = ExtResource("1_81pwq") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg2w2"] +atlas = ExtResource("1_81pwq") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xaqi"] +atlas = ExtResource("1_81pwq") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw167"] +atlas = ExtResource("1_81pwq") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b43av"] +atlas = ExtResource("1_81pwq") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iqg8"] +atlas = ExtResource("1_81pwq") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yx3s"] +atlas = ExtResource("1_81pwq") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_084md"] +atlas = ExtResource("1_81pwq") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bevt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65nfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sbrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg2w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xaqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw167") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b43av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iqg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yx3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_084md") +}], +"loop": true, +"name": &"frozen", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heal.tres new file mode 100644 index 0000000..57022f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heal.tres @@ -0,0 +1,116 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://b8l68vanyn2wq"] + +[ext_resource type="Texture2D" uid="uid://old75wtxcylw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png" id="1_i08q5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq2lh"] +atlas = ExtResource("1_i08q5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oevtf"] +atlas = ExtResource("1_i08q5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is8k2"] +atlas = ExtResource("1_i08q5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqh1u"] +atlas = ExtResource("1_i08q5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu1b8"] +atlas = ExtResource("1_i08q5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51qu8"] +atlas = ExtResource("1_i08q5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iwit"] +atlas = ExtResource("1_i08q5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnufd"] +atlas = ExtResource("1_i08q5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pibvo"] +atlas = ExtResource("1_i08q5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fbk4"] +atlas = ExtResource("1_i08q5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02nwt"] +atlas = ExtResource("1_i08q5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxa3c"] +atlas = ExtResource("1_i08q5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8ud6"] +atlas = ExtResource("1_i08q5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ybh"] +atlas = ExtResource("1_i08q5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaesd"] +atlas = ExtResource("1_i08q5") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq2lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oevtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is8k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqh1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu1b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51qu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iwit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnufd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pibvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fbk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02nwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxa3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8ud6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ybh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaesd") +}], +"loop": true, +"name": &"heal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heavenlystrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heavenlystrike.tres new file mode 100644 index 0000000..0c06cc8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_heavenlystrike.tres @@ -0,0 +1,88 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://bsuiu7hro1fuh"] + +[ext_resource type="Texture2D" uid="uid://c7en7mkf8gwt2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png" id="1_1tyto"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_blaw5"] +atlas = ExtResource("1_1tyto") +region = Rect2(162, 241, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvenv"] +atlas = ExtResource("1_1tyto") +region = Rect2(324, 241, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l131a"] +atlas = ExtResource("1_1tyto") +region = Rect2(324, 0, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woru6"] +atlas = ExtResource("1_1tyto") +region = Rect2(243, 241, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr8th"] +atlas = ExtResource("1_1tyto") +region = Rect2(243, 0, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmy02"] +atlas = ExtResource("1_1tyto") +region = Rect2(405, 0, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2611g"] +atlas = ExtResource("1_1tyto") +region = Rect2(162, 0, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83n6c"] +atlas = ExtResource("1_1tyto") +region = Rect2(81, 241, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssetp"] +atlas = ExtResource("1_1tyto") +region = Rect2(81, 0, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da74c"] +atlas = ExtResource("1_1tyto") +region = Rect2(0, 241, 80, 240) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydgkk"] +atlas = ExtResource("1_1tyto") +region = Rect2(0, 0, 80, 240) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blaw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvenv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l131a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woru6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr8th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmy02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2611g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83n6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssetp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da74c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydgkk") +}], +"loop": true, +"name": &"heavenlystrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact.tres new file mode 100644 index 0000000..e286a47 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact.tres @@ -0,0 +1,147 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://jgxkbowl2u4e"] + +[ext_resource type="Texture2D" uid="uid://bapjol61j5i07" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png" id="1_oin0m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7my16"] +atlas = ExtResource("1_oin0m") +region = Rect2(159, 140, 32, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08jha"] +atlas = ExtResource("1_oin0m") +region = Rect2(159, 175, 32, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x3nj"] +atlas = ExtResource("1_oin0m") +region = Rect2(159, 210, 32, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6s35"] +atlas = ExtResource("1_oin0m") +region = Rect2(146, 105, 32, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rl60"] +atlas = ExtResource("1_oin0m") +region = Rect2(146, 70, 32, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgvjc"] +atlas = ExtResource("1_oin0m") +region = Rect2(73, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbt02"] +atlas = ExtResource("1_oin0m") +region = Rect2(73, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pt5b"] +atlas = ExtResource("1_oin0m") +region = Rect2(73, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5uf1"] +atlas = ExtResource("1_oin0m") +region = Rect2(0, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8jbe"] +atlas = ExtResource("1_oin0m") +region = Rect2(0, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp5b8"] +atlas = ExtResource("1_oin0m") +region = Rect2(0, 171, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okrh6"] +atlas = ExtResource("1_oin0m") +region = Rect2(0, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgesc"] +atlas = ExtResource("1_oin0m") +region = Rect2(73, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5xf4"] +atlas = ExtResource("1_oin0m") +region = Rect2(73, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p312p"] +atlas = ExtResource("1_oin0m") +region = Rect2(116, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwjle"] +atlas = ExtResource("1_oin0m") +region = Rect2(146, 0, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c40q"] +atlas = ExtResource("1_oin0m") +region = Rect2(116, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6eu1"] +atlas = ExtResource("1_oin0m") +region = Rect2(146, 35, 42, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7my16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08jha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x3nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6s35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rl60") +}], +"loop": true, +"name": &"impactbluemedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgvjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbt02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pt5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5uf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8jbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp5b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okrh6") +}], +"loop": true, +"name": &"impactorangebig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgesc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5xf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p312p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwjle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c40q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6eu1") +}], +"loop": true, +"name": &"impactorangemedium", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact2.tres new file mode 100644 index 0000000..7fb0a05 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact2.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://knydl7bn5t8p"] + +[ext_resource type="Texture2D" uid="uid://ka2bwcpy5upg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png" id="1_cuu57"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tka67"] +atlas = ExtResource("1_cuu57") +region = Rect2(0, 51, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpu4q"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpmie"] +atlas = ExtResource("1_cuu57") +region = Rect2(0, 153, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe57o"] +atlas = ExtResource("1_cuu57") +region = Rect2(0, 204, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gqpk"] +atlas = ExtResource("1_cuu57") +region = Rect2(0, 102, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umt6m"] +atlas = ExtResource("1_cuu57") +region = Rect2(0, 0, 50, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5ijn"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 76, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3287"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 51, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj1gh"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 126, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga43y"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 151, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ecy6"] +atlas = ExtResource("1_cuu57") +region = Rect2(51, 101, 24, 24) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tka67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpu4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpmie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe57o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gqpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umt6m") +}], +"loop": true, +"name": &"impactbrightwhitemedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5ijn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3287") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj1gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga43y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ecy6") +}], +"loop": true, +"name": &"impactorangesmall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact_verticalring.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact_verticalring.tres new file mode 100644 index 0000000..5f8346f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impact_verticalring.tres @@ -0,0 +1,60 @@ +[gd_resource type="SpriteFrames" load_steps=9 format=3 uid="uid://omyv41ot7fvu"] + +[ext_resource type="Texture2D" uid="uid://b1swgsyntsvd1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png" id="1_qrbyc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw67a"] +atlas = ExtResource("1_qrbyc") +region = Rect2(47, 0, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kcvd"] +atlas = ExtResource("1_qrbyc") +region = Rect2(47, 162, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7poxq"] +atlas = ExtResource("1_qrbyc") +region = Rect2(47, 81, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i26a"] +atlas = ExtResource("1_qrbyc") +region = Rect2(94, 0, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1f06"] +atlas = ExtResource("1_qrbyc") +region = Rect2(0, 162, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj10k"] +atlas = ExtResource("1_qrbyc") +region = Rect2(0, 81, 46, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8wpk"] +atlas = ExtResource("1_qrbyc") +region = Rect2(0, 0, 46, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw67a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kcvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7poxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i26a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1f06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj10k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8wpk") +}], +"loop": true, +"name": &"verticalring", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactblue.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactblue.tres new file mode 100644 index 0000000..f8a220c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactblue.tres @@ -0,0 +1,147 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://ciyksff1w1c1y"] + +[ext_resource type="Texture2D" uid="uid://bhueofay5c0a2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png" id="1_3upuk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaa2n"] +atlas = ExtResource("1_3upuk") +region = Rect2(73, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf7h7"] +atlas = ExtResource("1_3upuk") +region = Rect2(0, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0big"] +atlas = ExtResource("1_3upuk") +region = Rect2(0, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oevt"] +atlas = ExtResource("1_3upuk") +region = Rect2(0, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxvq1"] +atlas = ExtResource("1_3upuk") +region = Rect2(0, 171, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ugc7"] +atlas = ExtResource("1_3upuk") +region = Rect2(73, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3jrv"] +atlas = ExtResource("1_3upuk") +region = Rect2(73, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3217p"] +atlas = ExtResource("1_3upuk") +region = Rect2(116, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqtyc"] +atlas = ExtResource("1_3upuk") +region = Rect2(116, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rupeu"] +atlas = ExtResource("1_3upuk") +region = Rect2(146, 35, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g5ms"] +atlas = ExtResource("1_3upuk") +region = Rect2(73, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kehg"] +atlas = ExtResource("1_3upuk") +region = Rect2(73, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b085i"] +atlas = ExtResource("1_3upuk") +region = Rect2(146, 0, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy0lb"] +atlas = ExtResource("1_3upuk") +region = Rect2(146, 70, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmkpy"] +atlas = ExtResource("1_3upuk") +region = Rect2(0, 228, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4bs1"] +atlas = ExtResource("1_3upuk") +region = Rect2(25, 228, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7mf2"] +atlas = ExtResource("1_3upuk") +region = Rect2(146, 120, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeabt"] +atlas = ExtResource("1_3upuk") +region = Rect2(146, 95, 24, 24) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaa2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf7h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0big") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oevt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxvq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ugc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3jrv") +}], +"loop": true, +"name": &"impactbluebig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3217p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqtyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rupeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g5ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kehg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b085i") +}], +"loop": true, +"name": &"impactbluemedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy0lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmkpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4bs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7mf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeabt") +}], +"loop": true, +"name": &"impactbluesmall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactgreen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactgreen.tres new file mode 100644 index 0000000..8cc482f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactgreen.tres @@ -0,0 +1,147 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://dno81mnxn85k7"] + +[ext_resource type="Texture2D" uid="uid://u5e8e4lwdeeb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png" id="1_m4igt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p256w"] +atlas = ExtResource("1_m4igt") +region = Rect2(73, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njou4"] +atlas = ExtResource("1_m4igt") +region = Rect2(0, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od2em"] +atlas = ExtResource("1_m4igt") +region = Rect2(0, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu5gk"] +atlas = ExtResource("1_m4igt") +region = Rect2(0, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnuau"] +atlas = ExtResource("1_m4igt") +region = Rect2(0, 171, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w071i"] +atlas = ExtResource("1_m4igt") +region = Rect2(73, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yitsy"] +atlas = ExtResource("1_m4igt") +region = Rect2(73, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msjrk"] +atlas = ExtResource("1_m4igt") +region = Rect2(116, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pfxk"] +atlas = ExtResource("1_m4igt") +region = Rect2(116, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ejnk"] +atlas = ExtResource("1_m4igt") +region = Rect2(146, 35, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtxj0"] +atlas = ExtResource("1_m4igt") +region = Rect2(73, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fdky"] +atlas = ExtResource("1_m4igt") +region = Rect2(73, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vj6q"] +atlas = ExtResource("1_m4igt") +region = Rect2(146, 0, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr7ns"] +atlas = ExtResource("1_m4igt") +region = Rect2(146, 70, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mna68"] +atlas = ExtResource("1_m4igt") +region = Rect2(0, 228, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhqai"] +atlas = ExtResource("1_m4igt") +region = Rect2(25, 228, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ese3a"] +atlas = ExtResource("1_m4igt") +region = Rect2(146, 120, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry6hn"] +atlas = ExtResource("1_m4igt") +region = Rect2(146, 95, 24, 24) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p256w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njou4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od2em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu5gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnuau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w071i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yitsy") +}], +"loop": true, +"name": &"impactgreenbig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_msjrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pfxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ejnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtxj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fdky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vj6q") +}], +"loop": true, +"name": &"impactgreenmedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr7ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mna68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhqai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ese3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry6hn") +}], +"loop": true, +"name": &"impactgreensmall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactred.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactred.tres new file mode 100644 index 0000000..dd0e22e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_impactred.tres @@ -0,0 +1,147 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://byps3iqpch65b"] + +[ext_resource type="Texture2D" uid="uid://ynpshmx6eduk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png" id="1_5crat"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cdmq"] +atlas = ExtResource("1_5crat") +region = Rect2(73, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gqcw"] +atlas = ExtResource("1_5crat") +region = Rect2(73, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g06ti"] +atlas = ExtResource("1_5crat") +region = Rect2(73, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aexb"] +atlas = ExtResource("1_5crat") +region = Rect2(0, 57, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n4rs"] +atlas = ExtResource("1_5crat") +region = Rect2(0, 0, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p04p"] +atlas = ExtResource("1_5crat") +region = Rect2(0, 171, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ils"] +atlas = ExtResource("1_5crat") +region = Rect2(0, 114, 72, 56) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2alja"] +atlas = ExtResource("1_5crat") +region = Rect2(73, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noswo"] +atlas = ExtResource("1_5crat") +region = Rect2(73, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d3f3"] +atlas = ExtResource("1_5crat") +region = Rect2(116, 206, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7b8t"] +atlas = ExtResource("1_5crat") +region = Rect2(146, 0, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkq8y"] +atlas = ExtResource("1_5crat") +region = Rect2(116, 171, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wdad"] +atlas = ExtResource("1_5crat") +region = Rect2(146, 35, 42, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrmue"] +atlas = ExtResource("1_5crat") +region = Rect2(146, 70, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p14m2"] +atlas = ExtResource("1_5crat") +region = Rect2(146, 95, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ovhw"] +atlas = ExtResource("1_5crat") +region = Rect2(146, 120, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiny6"] +atlas = ExtResource("1_5crat") +region = Rect2(25, 228, 24, 24) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vthpv"] +atlas = ExtResource("1_5crat") +region = Rect2(0, 228, 24, 24) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cdmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gqcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g06ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aexb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n4rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p04p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ils") +}], +"loop": true, +"name": &"impactredbig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2alja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noswo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d3f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7b8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkq8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wdad") +}], +"loop": true, +"name": &"impactredmedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrmue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p14m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ovhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiny6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vthpv") +}], +"loop": true, +"name": &"impactredsmall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_lightninghitgreen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_lightninghitgreen.tres new file mode 100644 index 0000000..f296df9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_lightninghitgreen.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://soh8dkin7gg0"] + +[ext_resource type="Texture2D" uid="uid://dc2wwv8wug5fu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png" id="1_ylk1h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fms2g"] +atlas = ExtResource("1_ylk1h") +region = Rect2(0, 159, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idmb"] +atlas = ExtResource("1_ylk1h") +region = Rect2(47, 106, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gabu"] +atlas = ExtResource("1_ylk1h") +region = Rect2(47, 53, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20fga"] +atlas = ExtResource("1_ylk1h") +region = Rect2(47, 0, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5huae"] +atlas = ExtResource("1_ylk1h") +region = Rect2(47, 159, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqlvm"] +atlas = ExtResource("1_ylk1h") +region = Rect2(0, 106, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_403l3"] +atlas = ExtResource("1_ylk1h") +region = Rect2(0, 53, 46, 52) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unnpy"] +atlas = ExtResource("1_ylk1h") +region = Rect2(0, 0, 46, 52) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fms2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6idmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gabu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20fga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5huae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqlvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_403l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unnpy") +}], +"loop": true, +"name": &"lightninghitgreen", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_martyrdom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_martyrdom.tres new file mode 100644 index 0000000..508a3e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_martyrdom.tres @@ -0,0 +1,137 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://cfcjl2dqydnag"] + +[ext_resource type="Texture2D" uid="uid://c1wcqutbml147" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png" id="1_q41yd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_562be"] +atlas = ExtResource("1_q41yd") +region = Rect2(162, 0, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhaqn"] +atlas = ExtResource("1_q41yd") +region = Rect2(324, 0, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twvot"] +atlas = ExtResource("1_q41yd") +region = Rect2(243, 363, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c1q8"] +atlas = ExtResource("1_q41yd") +region = Rect2(243, 242, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2lmo"] +atlas = ExtResource("1_q41yd") +region = Rect2(243, 121, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkr6j"] +atlas = ExtResource("1_q41yd") +region = Rect2(243, 0, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhr4a"] +atlas = ExtResource("1_q41yd") +region = Rect2(162, 363, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuy76"] +atlas = ExtResource("1_q41yd") +region = Rect2(162, 242, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqv7"] +atlas = ExtResource("1_q41yd") +region = Rect2(162, 121, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opp1a"] +atlas = ExtResource("1_q41yd") +region = Rect2(324, 121, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g28f3"] +atlas = ExtResource("1_q41yd") +region = Rect2(81, 363, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kxpf"] +atlas = ExtResource("1_q41yd") +region = Rect2(81, 242, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcy0f"] +atlas = ExtResource("1_q41yd") +region = Rect2(81, 121, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f5wi"] +atlas = ExtResource("1_q41yd") +region = Rect2(81, 0, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gca8"] +atlas = ExtResource("1_q41yd") +region = Rect2(0, 363, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnl6l"] +atlas = ExtResource("1_q41yd") +region = Rect2(0, 242, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxf7b"] +atlas = ExtResource("1_q41yd") +region = Rect2(0, 121, 80, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1kx3"] +atlas = ExtResource("1_q41yd") +region = Rect2(0, 0, 80, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_562be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhaqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twvot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c1q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2lmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkr6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhr4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuy76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dqv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opp1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g28f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kxpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcy0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f5wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gca8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnl6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxf7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1kx3") +}], +"loop": true, +"name": &"martyrdom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_full.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_full.tres new file mode 100644 index 0000000..bf8b15e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_full.tres @@ -0,0 +1,221 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://faybbghir6bn"] + +[ext_resource type="Texture2D" uid="uid://dd4smrqffstmi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png" id="1_saood"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijoe4"] +atlas = ExtResource("1_saood") +region = Rect2(242, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svmf2"] +atlas = ExtResource("1_saood") +region = Rect2(484, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgdjl"] +atlas = ExtResource("1_saood") +region = Rect2(484, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiayi"] +atlas = ExtResource("1_saood") +region = Rect2(484, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oecn"] +atlas = ExtResource("1_saood") +region = Rect2(484, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2o1t"] +atlas = ExtResource("1_saood") +region = Rect2(484, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68s28"] +atlas = ExtResource("1_saood") +region = Rect2(363, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuwju"] +atlas = ExtResource("1_saood") +region = Rect2(363, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03bh6"] +atlas = ExtResource("1_saood") +region = Rect2(363, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds4ii"] +atlas = ExtResource("1_saood") +region = Rect2(363, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp64u"] +atlas = ExtResource("1_saood") +region = Rect2(363, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8mm0"] +atlas = ExtResource("1_saood") +region = Rect2(363, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib6f1"] +atlas = ExtResource("1_saood") +region = Rect2(242, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbx8n"] +atlas = ExtResource("1_saood") +region = Rect2(242, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn41v"] +atlas = ExtResource("1_saood") +region = Rect2(242, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81b6f"] +atlas = ExtResource("1_saood") +region = Rect2(484, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klu7f"] +atlas = ExtResource("1_saood") +region = Rect2(242, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lniw8"] +atlas = ExtResource("1_saood") +region = Rect2(242, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nm8f"] +atlas = ExtResource("1_saood") +region = Rect2(121, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4tnd"] +atlas = ExtResource("1_saood") +region = Rect2(121, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jladv"] +atlas = ExtResource("1_saood") +region = Rect2(121, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_074dj"] +atlas = ExtResource("1_saood") +region = Rect2(121, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju5mb"] +atlas = ExtResource("1_saood") +region = Rect2(121, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufbpr"] +atlas = ExtResource("1_saood") +region = Rect2(121, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crtu8"] +atlas = ExtResource("1_saood") +region = Rect2(0, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u1q1"] +atlas = ExtResource("1_saood") +region = Rect2(0, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yjm7"] +atlas = ExtResource("1_saood") +region = Rect2(0, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6gk3"] +atlas = ExtResource("1_saood") +region = Rect2(0, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i45g"] +atlas = ExtResource("1_saood") +region = Rect2(0, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b65bk"] +atlas = ExtResource("1_saood") +region = Rect2(0, 0, 120, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijoe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svmf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgdjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiayi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oecn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2o1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68s28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuwju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03bh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds4ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp64u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8mm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib6f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbx8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn41v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81b6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klu7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lniw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nm8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4tnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jladv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_074dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju5mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufbpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crtu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u1q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yjm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6gk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i45g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b65bk") +}], +"loop": true, +"name": &"full", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_intro.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_intro.tres new file mode 100644 index 0000000..e8831c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_intro.tres @@ -0,0 +1,151 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://0rxvujenst06"] + +[ext_resource type="Texture2D" uid="uid://b88sfn8cb81jd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png" id="1_n55qu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n64ij"] +atlas = ExtResource("1_n55qu") +region = Rect2(363, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl67w"] +atlas = ExtResource("1_n55qu") +region = Rect2(726, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo6ed"] +atlas = ExtResource("1_n55qu") +region = Rect2(605, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbkdm"] +atlas = ExtResource("1_n55qu") +region = Rect2(605, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6jdb"] +atlas = ExtResource("1_n55qu") +region = Rect2(605, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq3u1"] +atlas = ExtResource("1_n55qu") +region = Rect2(484, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i0oy"] +atlas = ExtResource("1_n55qu") +region = Rect2(484, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c47dy"] +atlas = ExtResource("1_n55qu") +region = Rect2(484, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yag3b"] +atlas = ExtResource("1_n55qu") +region = Rect2(363, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlu44"] +atlas = ExtResource("1_n55qu") +region = Rect2(363, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnfgr"] +atlas = ExtResource("1_n55qu") +region = Rect2(726, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oto5b"] +atlas = ExtResource("1_n55qu") +region = Rect2(242, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6w1m"] +atlas = ExtResource("1_n55qu") +region = Rect2(242, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ccee"] +atlas = ExtResource("1_n55qu") +region = Rect2(242, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj7nu"] +atlas = ExtResource("1_n55qu") +region = Rect2(121, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok6h2"] +atlas = ExtResource("1_n55qu") +region = Rect2(121, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmt1s"] +atlas = ExtResource("1_n55qu") +region = Rect2(121, 0, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41js7"] +atlas = ExtResource("1_n55qu") +region = Rect2(0, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgopr"] +atlas = ExtResource("1_n55qu") +region = Rect2(0, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7svt"] +atlas = ExtResource("1_n55qu") +region = Rect2(0, 0, 120, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n64ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl67w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo6ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbkdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6jdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq3u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i0oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c47dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yag3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlu44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnfgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oto5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6w1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ccee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj7nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok6h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmt1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41js7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgopr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7svt") +}], +"loop": true, +"name": &"intro", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_outro.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_outro.tres new file mode 100644 index 0000000..c219213 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_multislash_outro.tres @@ -0,0 +1,102 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://dpb5uf5k0xlmw"] + +[ext_resource type="Texture2D" uid="uid://214f0itu45ph" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png" id="1_0r1bi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_endfh"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 906, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igagc"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1661, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdhbc"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1510, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6mlw"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1359, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv8cx"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1208, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycl8m"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1057, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jckcm"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 1812, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x8gi"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 755, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kttb1"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 604, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0todj"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 453, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30phs"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 302, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksodo"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 151, 120, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhgcg"] +atlas = ExtResource("1_0r1bi") +region = Rect2(0, 0, 120, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_endfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igagc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdhbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6mlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv8cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycl8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jckcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x8gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kttb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0todj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30phs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksodo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhgcg") +}], +"loop": true, +"name": &"outro", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_neutral_riddle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_neutral_riddle.tres new file mode 100644 index 0000000..6360e58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_neutral_riddle.tres @@ -0,0 +1,277 @@ +[gd_resource type="SpriteFrames" load_steps=40 format=3 uid="uid://dl6mksdxlonf6"] + +[ext_resource type="Texture2D" uid="uid://cl0g0uhn0dxnj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png" id="1_7jqcv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpdsd"] +atlas = ExtResource("1_7jqcv") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubkee"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2u4g"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b32i0"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eavdu"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wedu8"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otlwq"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u44kf"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6buu"] +atlas = ExtResource("1_7jqcv") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f11gd"] +atlas = ExtResource("1_7jqcv") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqmjj"] +atlas = ExtResource("1_7jqcv") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rou16"] +atlas = ExtResource("1_7jqcv") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rt58"] +atlas = ExtResource("1_7jqcv") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lyc4"] +atlas = ExtResource("1_7jqcv") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfhml"] +atlas = ExtResource("1_7jqcv") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kufa0"] +atlas = ExtResource("1_7jqcv") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkoy6"] +atlas = ExtResource("1_7jqcv") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf44i"] +atlas = ExtResource("1_7jqcv") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdf6q"] +atlas = ExtResource("1_7jqcv") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfo7i"] +atlas = ExtResource("1_7jqcv") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4oe4"] +atlas = ExtResource("1_7jqcv") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14st6"] +atlas = ExtResource("1_7jqcv") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw262"] +atlas = ExtResource("1_7jqcv") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ety2"] +atlas = ExtResource("1_7jqcv") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsruv"] +atlas = ExtResource("1_7jqcv") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bistv"] +atlas = ExtResource("1_7jqcv") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l38f"] +atlas = ExtResource("1_7jqcv") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceyfg"] +atlas = ExtResource("1_7jqcv") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5v5d"] +atlas = ExtResource("1_7jqcv") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quq00"] +atlas = ExtResource("1_7jqcv") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oghco"] +atlas = ExtResource("1_7jqcv") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbwb7"] +atlas = ExtResource("1_7jqcv") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f7hi"] +atlas = ExtResource("1_7jqcv") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx1jw"] +atlas = ExtResource("1_7jqcv") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4avo0"] +atlas = ExtResource("1_7jqcv") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5rnw"] +atlas = ExtResource("1_7jqcv") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viuir"] +atlas = ExtResource("1_7jqcv") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u265"] +atlas = ExtResource("1_7jqcv") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpdsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubkee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2u4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b32i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eavdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wedu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otlwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u44kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6buu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f11gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqmjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rou16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rt58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lyc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfhml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kufa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkoy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf44i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdf6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfo7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4oe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14st6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw262") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ety2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsruv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bistv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l38f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceyfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5v5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quq00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oghco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbwb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f7hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx1jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4avo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5rnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viuir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u265") +}], +"loop": true, +"name": &"riddle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_plasma.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_plasma.tres new file mode 100644 index 0000000..86f7e91 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_plasma.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://mc8601omixjy"] + +[ext_resource type="Texture2D" uid="uid://vvhxpb0mmgve" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png" id="1_mqobf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3hoh"] +atlas = ExtResource("1_mqobf") +region = Rect2(0, 141, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js7ey"] +atlas = ExtResource("1_mqobf") +region = Rect2(49, 47, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhtru"] +atlas = ExtResource("1_mqobf") +region = Rect2(49, 0, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfeg6"] +atlas = ExtResource("1_mqobf") +region = Rect2(0, 188, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrr3r"] +atlas = ExtResource("1_mqobf") +region = Rect2(49, 94, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdg46"] +atlas = ExtResource("1_mqobf") +region = Rect2(0, 94, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq0e4"] +atlas = ExtResource("1_mqobf") +region = Rect2(0, 47, 48, 46) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5p6p"] +atlas = ExtResource("1_mqobf") +region = Rect2(0, 0, 48, 46) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3hoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js7ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhtru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfeg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrr3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdg46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq0e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5p6p") +}], +"loop": true, +"name": &"blueplasma", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_radial_bluenoise.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_radial_bluenoise.tres new file mode 100644 index 0000000..a6e5d53 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_radial_bluenoise.tres @@ -0,0 +1,102 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://b7exlsyfvp5yw"] + +[ext_resource type="Texture2D" uid="uid://c3yxm8el1b3tm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png" id="1_h8nq4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_csyrw"] +atlas = ExtResource("1_h8nq4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut4n7"] +atlas = ExtResource("1_h8nq4") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hnmt"] +atlas = ExtResource("1_h8nq4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u6mf"] +atlas = ExtResource("1_h8nq4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdky8"] +atlas = ExtResource("1_h8nq4") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1xb4"] +atlas = ExtResource("1_h8nq4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5thg"] +atlas = ExtResource("1_h8nq4") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dmnd"] +atlas = ExtResource("1_h8nq4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw1x4"] +atlas = ExtResource("1_h8nq4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdb7e"] +atlas = ExtResource("1_h8nq4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ndot"] +atlas = ExtResource("1_h8nq4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bxlp"] +atlas = ExtResource("1_h8nq4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si4in"] +atlas = ExtResource("1_h8nq4") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_csyrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut4n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hnmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u6mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdky8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1xb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5thg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dmnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw1x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdb7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ndot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bxlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si4in") +}], +"loop": true, +"name": &"bluenoise", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redlightning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redlightning.tres new file mode 100644 index 0000000..6062b11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redlightning.tres @@ -0,0 +1,53 @@ +[gd_resource type="SpriteFrames" load_steps=8 format=3 uid="uid://83ulc8pnsfcb"] + +[ext_resource type="Texture2D" uid="uid://dhogasoalksjn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png" id="1_extts"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eduvt"] +atlas = ExtResource("1_extts") +region = Rect2(0, 42, 48, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm2yq"] +atlas = ExtResource("1_extts") +region = Rect2(49, 21, 48, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppbdb"] +atlas = ExtResource("1_extts") +region = Rect2(49, 0, 48, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skwot"] +atlas = ExtResource("1_extts") +region = Rect2(49, 42, 48, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i56q3"] +atlas = ExtResource("1_extts") +region = Rect2(0, 21, 48, 20) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3jqg"] +atlas = ExtResource("1_extts") +region = Rect2(0, 0, 48, 20) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eduvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm2yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppbdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skwot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i56q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3jqg") +}], +"loop": true, +"name": &"redlightning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redplasma_vertical.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redplasma_vertical.tres new file mode 100644 index 0000000..288a9ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_redplasma_vertical.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://b0nx0hsiu31es"] + +[ext_resource type="Texture2D" uid="uid://dofbb4u1nevyd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png" id="1_utbtr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h8ya"] +atlas = ExtResource("1_utbtr") +region = Rect2(0, 147, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycxjl"] +atlas = ExtResource("1_utbtr") +region = Rect2(47, 49, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehdod"] +atlas = ExtResource("1_utbtr") +region = Rect2(47, 0, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_873pu"] +atlas = ExtResource("1_utbtr") +region = Rect2(0, 196, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeiof"] +atlas = ExtResource("1_utbtr") +region = Rect2(47, 98, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhir8"] +atlas = ExtResource("1_utbtr") +region = Rect2(0, 98, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8eis"] +atlas = ExtResource("1_utbtr") +region = Rect2(0, 49, 46, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22ok8"] +atlas = ExtResource("1_utbtr") +region = Rect2(0, 0, 46, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h8ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycxjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehdod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_873pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeiof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhir8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8eis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22ok8") +}], +"loop": true, +"name": &"vertical", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_ringswirl.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_ringswirl.tres new file mode 100644 index 0000000..cd12650 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_ringswirl.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://cgxfdb1t1p2jd"] + +[ext_resource type="Texture2D" uid="uid://c28f0ysw52ubv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png" id="1_3phkk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyp2k"] +atlas = ExtResource("1_3phkk") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnboi"] +atlas = ExtResource("1_3phkk") +region = Rect2(1267, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r517s"] +atlas = ExtResource("1_3phkk") +region = Rect2(1267, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8626r"] +atlas = ExtResource("1_3phkk") +region = Rect2(1267, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c76dk"] +atlas = ExtResource("1_3phkk") +region = Rect2(1267, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cyo3"] +atlas = ExtResource("1_3phkk") +region = Rect2(1086, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1br1"] +atlas = ExtResource("1_3phkk") +region = Rect2(1086, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl82d"] +atlas = ExtResource("1_3phkk") +region = Rect2(1086, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1m82"] +atlas = ExtResource("1_3phkk") +region = Rect2(1086, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xjjt"] +atlas = ExtResource("1_3phkk") +region = Rect2(1086, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ju7p"] +atlas = ExtResource("1_3phkk") +region = Rect2(905, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35k3i"] +atlas = ExtResource("1_3phkk") +region = Rect2(905, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0ixi"] +atlas = ExtResource("1_3phkk") +region = Rect2(905, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovlva"] +atlas = ExtResource("1_3phkk") +region = Rect2(905, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foi02"] +atlas = ExtResource("1_3phkk") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1rgn"] +atlas = ExtResource("1_3phkk") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpr0f"] +atlas = ExtResource("1_3phkk") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jclg"] +atlas = ExtResource("1_3phkk") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qso0e"] +atlas = ExtResource("1_3phkk") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7geu"] +atlas = ExtResource("1_3phkk") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0t33"] +atlas = ExtResource("1_3phkk") +region = Rect2(1267, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aijsh"] +atlas = ExtResource("1_3phkk") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbvcx"] +atlas = ExtResource("1_3phkk") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjd0p"] +atlas = ExtResource("1_3phkk") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1w7p"] +atlas = ExtResource("1_3phkk") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b25em"] +atlas = ExtResource("1_3phkk") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppydm"] +atlas = ExtResource("1_3phkk") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2dg8"] +atlas = ExtResource("1_3phkk") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjcxo"] +atlas = ExtResource("1_3phkk") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy6xs"] +atlas = ExtResource("1_3phkk") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50r53"] +atlas = ExtResource("1_3phkk") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hsex"] +atlas = ExtResource("1_3phkk") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnclh"] +atlas = ExtResource("1_3phkk") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ngp"] +atlas = ExtResource("1_3phkk") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adkwi"] +atlas = ExtResource("1_3phkk") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a27xc"] +atlas = ExtResource("1_3phkk") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk3ej"] +atlas = ExtResource("1_3phkk") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gxes"] +atlas = ExtResource("1_3phkk") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxbme"] +atlas = ExtResource("1_3phkk") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8thwa"] +atlas = ExtResource("1_3phkk") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyp2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnboi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r517s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8626r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c76dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1br1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl82d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1m82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xjjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ju7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35k3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0ixi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovlva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foi02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1rgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpr0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jclg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qso0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7geu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0t33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aijsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbvcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjd0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1w7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b25em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppydm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2dg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjcxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy6xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50r53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hsex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnclh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ngp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adkwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a27xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk3ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gxes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxbme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8thwa") +}], +"loop": true, +"name": &"ringswirl", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_roots.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_roots.tres new file mode 100644 index 0000000..69e326d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_roots.tres @@ -0,0 +1,88 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://buhy8a6j1dss1"] + +[ext_resource type="Texture2D" uid="uid://u0f4kca3xy1w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png" id="1_hfpi8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nupw1"] +atlas = ExtResource("1_hfpi8") +region = Rect2(71, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1mou"] +atlas = ExtResource("1_hfpi8") +region = Rect2(213, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p11aj"] +atlas = ExtResource("1_hfpi8") +region = Rect2(142, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiajh"] +atlas = ExtResource("1_hfpi8") +region = Rect2(142, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsklm"] +atlas = ExtResource("1_hfpi8") +region = Rect2(142, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pagck"] +atlas = ExtResource("1_hfpi8") +region = Rect2(213, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lc82"] +atlas = ExtResource("1_hfpi8") +region = Rect2(71, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdg2r"] +atlas = ExtResource("1_hfpi8") +region = Rect2(71, 0, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l73v4"] +atlas = ExtResource("1_hfpi8") +region = Rect2(0, 142, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0sus"] +atlas = ExtResource("1_hfpi8") +region = Rect2(0, 71, 70, 70) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a15s4"] +atlas = ExtResource("1_hfpi8") +region = Rect2(0, 0, 70, 70) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nupw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1mou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p11aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiajh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsklm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pagck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lc82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdg2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l73v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0sus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a15s4") +}], +"loop": true, +"name": &"roots", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_sandportal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_sandportal.tres new file mode 100644 index 0000000..cc61801 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_sandportal.tres @@ -0,0 +1,18 @@ +[gd_resource type="SpriteFrames" load_steps=3 format=3 uid="uid://4en30na3j1jr"] + +[ext_resource type="Texture2D" uid="uid://86tw1c1nosuk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png" id="1_ayjsx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_81285"] +atlas = ExtResource("1_ayjsx") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_81285") +}], +"loop": true, +"name": &"sandportal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_searingchasm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_searingchasm.tres new file mode 100644 index 0000000..abe36da --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_searingchasm.tres @@ -0,0 +1,81 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://d2gmobmauqnfv"] + +[ext_resource type="Texture2D" uid="uid://dxt67gyskkswh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png" id="1_n4suc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkplv"] +atlas = ExtResource("1_n4suc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h4wx"] +atlas = ExtResource("1_n4suc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkc7s"] +atlas = ExtResource("1_n4suc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjyu6"] +atlas = ExtResource("1_n4suc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u16hc"] +atlas = ExtResource("1_n4suc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66dyo"] +atlas = ExtResource("1_n4suc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7udl7"] +atlas = ExtResource("1_n4suc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knfi5"] +atlas = ExtResource("1_n4suc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7djwt"] +atlas = ExtResource("1_n4suc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak0t1"] +atlas = ExtResource("1_n4suc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkplv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h4wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkc7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjyu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u16hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66dyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7udl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knfi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7djwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak0t1") +}], +"loop": true, +"name": &"searingchasm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_shadowcreep.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_shadowcreep.tres new file mode 100644 index 0000000..c39c217 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_shadowcreep.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://c6o57i4hewq1r"] + +[ext_resource type="Texture2D" uid="uid://ciuyg7fvn4aa0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png" id="1_6c7j8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7visl"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7o12"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsmpl"] +atlas = ExtResource("1_6c7j8") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg1ur"] +atlas = ExtResource("1_6c7j8") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4cow"] +atlas = ExtResource("1_6c7j8") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5tlj"] +atlas = ExtResource("1_6c7j8") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urdf2"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5bqh"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk4sw"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgcun"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m6nb"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie2h5"] +atlas = ExtResource("1_6c7j8") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luulh"] +atlas = ExtResource("1_6c7j8") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f60y"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k002p"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bch2i"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt1x5"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yg67"] +atlas = ExtResource("1_6c7j8") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqjm3"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aggm"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h224"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3p1n"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e34c0"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3pp5"] +atlas = ExtResource("1_6c7j8") +region = Rect2(0, 0, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7visl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7o12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsmpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg1ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4cow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5tlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urdf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5bqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk4sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgcun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m6nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie2h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luulh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f60y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k002p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bch2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt1x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yg67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqjm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aggm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h224") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3p1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e34c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3pp5") +}], +"loop": true, +"name": &"spawn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_slashfrenzy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_slashfrenzy.tres new file mode 100644 index 0000000..31e9b56 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_slashfrenzy.tres @@ -0,0 +1,95 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://u3vs85t73kgd"] + +[ext_resource type="Texture2D" uid="uid://napicjihfjq6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png" id="1_wpx0m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjqho"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 645, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp157"] +atlas = ExtResource("1_wpx0m") +region = Rect2(129, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_106oj"] +atlas = ExtResource("1_wpx0m") +region = Rect2(129, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axpjd"] +atlas = ExtResource("1_wpx0m") +region = Rect2(129, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj18f"] +atlas = ExtResource("1_wpx0m") +region = Rect2(129, 0, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu7uw"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 774, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkwam"] +atlas = ExtResource("1_wpx0m") +region = Rect2(129, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oqed"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 516, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40kki"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 387, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1i4f"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 258, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxere"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 129, 128, 128) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ymp"] +atlas = ExtResource("1_wpx0m") +region = Rect2(0, 0, 128, 128) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjqho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp157") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_106oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axpjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj18f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu7uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkwam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oqed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40kki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1i4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxere") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ymp") +}], +"loop": true, +"name": &"slashfrenzy", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke.tres new file mode 100644 index 0000000..e0aa323 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke.tres @@ -0,0 +1,196 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://bu7qkb0ndbaf6"] + +[ext_resource type="Texture2D" uid="uid://1wfmqm5i1ql7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png" id="1_7488t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcb1o"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 175, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omhpk"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 0, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_588tr"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 35, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1yp0"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 70, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ubm"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 105, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q45h1"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 140, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpiqi"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 210, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jjhk"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 35, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mu57"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 0, 56, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkxmf"] +atlas = ExtResource("1_7488t") +region = Rect2(112, 111, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73agb"] +atlas = ExtResource("1_7488t") +region = Rect2(112, 70, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kre8"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 193, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yv8b"] +atlas = ExtResource("1_7488t") +region = Rect2(114, 0, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjqcy"] +atlas = ExtResource("1_7488t") +region = Rect2(114, 0, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ffa"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 111, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5a3u"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 152, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl2t3"] +atlas = ExtResource("1_7488t") +region = Rect2(112, 193, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t5f0"] +atlas = ExtResource("1_7488t") +region = Rect2(112, 152, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqvdu"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 70, 54, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52yij"] +atlas = ExtResource("1_7488t") +region = Rect2(26, 245, 12, 10) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqwu6"] +atlas = ExtResource("1_7488t") +region = Rect2(0, 245, 12, 10) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eonyi"] +atlas = ExtResource("1_7488t") +region = Rect2(13, 245, 12, 10) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct3tg"] +atlas = ExtResource("1_7488t") +region = Rect2(57, 234, 12, 10) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg5tt"] +atlas = ExtResource("1_7488t") +region = Rect2(39, 245, 12, 10) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wps3f"] +atlas = ExtResource("1_7488t") +region = Rect2(52, 245, 12, 10) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcb1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omhpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_588tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1yp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ubm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q45h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpiqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jjhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mu57") +}], +"loop": true, +"name": &"explosiondarkplume", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkxmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73agb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kre8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yv8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjqcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ffa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5a3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl2t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t5f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqvdu") +}], +"loop": true, +"name": &"explosionwhitesmokemedium", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_52yij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqwu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eonyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct3tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg5tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wps3f") +}], +"loop": true, +"name": &"footstepdust", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke2.tres new file mode 100644 index 0000000..21b3fad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_smoke2.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://000bkp3ixq4a"] + +[ext_resource type="Texture2D" uid="uid://dleqqodo12mah" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png" id="1_d6f60"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oafd"] +atlas = ExtResource("1_d6f60") +region = Rect2(0, 78, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0r8l"] +atlas = ExtResource("1_d6f60") +region = Rect2(81, 52, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5tcb"] +atlas = ExtResource("1_d6f60") +region = Rect2(81, 26, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wyeu"] +atlas = ExtResource("1_d6f60") +region = Rect2(81, 0, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyhw1"] +atlas = ExtResource("1_d6f60") +region = Rect2(81, 78, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a80m8"] +atlas = ExtResource("1_d6f60") +region = Rect2(0, 52, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxkdp"] +atlas = ExtResource("1_d6f60") +region = Rect2(0, 26, 80, 25) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ht1"] +atlas = ExtResource("1_d6f60") +region = Rect2(0, 0, 80, 25) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oafd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0r8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5tcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wyeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyhw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a80m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxkdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ht1") +}], +"loop": true, +"name": &"smokeground", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonlegendary.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonlegendary.tres new file mode 100644 index 0000000..422824b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonlegendary.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://dr7bvha7uryb5"] + +[ext_resource type="Texture2D" uid="uid://3twx4fj85u8t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png" id="1_dp34p"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k1gn"] +atlas = ExtResource("1_dp34p") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbpko"] +atlas = ExtResource("1_dp34p") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcr36"] +atlas = ExtResource("1_dp34p") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dxoe"] +atlas = ExtResource("1_dp34p") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0j0r"] +atlas = ExtResource("1_dp34p") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oriop"] +atlas = ExtResource("1_dp34p") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eal0b"] +atlas = ExtResource("1_dp34p") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upy1i"] +atlas = ExtResource("1_dp34p") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv2ae"] +atlas = ExtResource("1_dp34p") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhf5d"] +atlas = ExtResource("1_dp34p") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rspwk"] +atlas = ExtResource("1_dp34p") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1xet"] +atlas = ExtResource("1_dp34p") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj5tj"] +atlas = ExtResource("1_dp34p") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocgpa"] +atlas = ExtResource("1_dp34p") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucb7x"] +atlas = ExtResource("1_dp34p") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j6kr"] +atlas = ExtResource("1_dp34p") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adtuv"] +atlas = ExtResource("1_dp34p") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ok1"] +atlas = ExtResource("1_dp34p") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jwui"] +atlas = ExtResource("1_dp34p") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygbg3"] +atlas = ExtResource("1_dp34p") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3myfk"] +atlas = ExtResource("1_dp34p") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j3bq"] +atlas = ExtResource("1_dp34p") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi7cm"] +atlas = ExtResource("1_dp34p") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poule"] +atlas = ExtResource("1_dp34p") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spp62"] +atlas = ExtResource("1_dp34p") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyv8t"] +atlas = ExtResource("1_dp34p") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k1gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbpko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcr36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dxoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0j0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oriop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eal0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upy1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv2ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhf5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rspwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1xet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj5tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocgpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucb7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j6kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adtuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ok1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jwui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygbg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3myfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j3bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi7cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poule") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spp62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyv8t") +}], +"loop": true, +"name": &"summonlegendary", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonmythron.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonmythron.tres new file mode 100644 index 0000000..ba8d956 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_summonmythron.tres @@ -0,0 +1,193 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://bayuykcb3eayc"] + +[ext_resource type="Texture2D" uid="uid://c5a4l6t43u6x3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png" id="1_k26gl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8i7y"] +atlas = ExtResource("1_k26gl") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkgcf"] +atlas = ExtResource("1_k26gl") +region = Rect2(724, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyduu"] +atlas = ExtResource("1_k26gl") +region = Rect2(724, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15vkx"] +atlas = ExtResource("1_k26gl") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfia2"] +atlas = ExtResource("1_k26gl") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2b4u"] +atlas = ExtResource("1_k26gl") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bln3m"] +atlas = ExtResource("1_k26gl") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85sgn"] +atlas = ExtResource("1_k26gl") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x60h"] +atlas = ExtResource("1_k26gl") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34s4w"] +atlas = ExtResource("1_k26gl") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml6jr"] +atlas = ExtResource("1_k26gl") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2xph"] +atlas = ExtResource("1_k26gl") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64frt"] +atlas = ExtResource("1_k26gl") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weenx"] +atlas = ExtResource("1_k26gl") +region = Rect2(905, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p6hp"] +atlas = ExtResource("1_k26gl") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sli5"] +atlas = ExtResource("1_k26gl") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a08hc"] +atlas = ExtResource("1_k26gl") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrsjh"] +atlas = ExtResource("1_k26gl") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_542fr"] +atlas = ExtResource("1_k26gl") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixyky"] +atlas = ExtResource("1_k26gl") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fqjl"] +atlas = ExtResource("1_k26gl") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq4g8"] +atlas = ExtResource("1_k26gl") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc616"] +atlas = ExtResource("1_k26gl") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kil7r"] +atlas = ExtResource("1_k26gl") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cqio"] +atlas = ExtResource("1_k26gl") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au7et"] +atlas = ExtResource("1_k26gl") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8i7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkgcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyduu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15vkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfia2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2b4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bln3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85sgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x60h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34s4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml6jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2xph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64frt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weenx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p6hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sli5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a08hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrsjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_542fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixyky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fqjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq4g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc616") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kil7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cqio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au7et") +}], +"loop": true, +"name": &"summonmythron", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_swirl.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_swirl.tres new file mode 100644 index 0000000..24633e1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_swirl.tres @@ -0,0 +1,60 @@ +[gd_resource type="SpriteFrames" load_steps=9 format=3 uid="uid://18m0yqy36gng"] + +[ext_resource type="Texture2D" uid="uid://cnhc2agasgn7o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png" id="1_0x5uq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_emkir"] +atlas = ExtResource("1_0x5uq") +region = Rect2(0, 87, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf6hy"] +atlas = ExtResource("1_0x5uq") +region = Rect2(55, 29, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjcb1"] +atlas = ExtResource("1_0x5uq") +region = Rect2(55, 0, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12lda"] +atlas = ExtResource("1_0x5uq") +region = Rect2(55, 58, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpw8i"] +atlas = ExtResource("1_0x5uq") +region = Rect2(0, 58, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4068c"] +atlas = ExtResource("1_0x5uq") +region = Rect2(0, 29, 54, 28) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfm6h"] +atlas = ExtResource("1_0x5uq") +region = Rect2(0, 0, 54, 28) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emkir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf6hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjcb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12lda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpw8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4068c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfm6h") +}], +"loop": true, +"name": &"swirlloop", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportblueorb.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportblueorb.tres new file mode 100644 index 0000000..be02562 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportblueorb.tres @@ -0,0 +1,144 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://2mioejsa6rjc"] + +[ext_resource type="Texture2D" uid="uid://6x5yvurrjrhk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png" id="1_it8xj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmm55"] +atlas = ExtResource("1_it8xj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72y1m"] +atlas = ExtResource("1_it8xj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yejbo"] +atlas = ExtResource("1_it8xj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c11ek"] +atlas = ExtResource("1_it8xj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddoku"] +atlas = ExtResource("1_it8xj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxf26"] +atlas = ExtResource("1_it8xj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r83qr"] +atlas = ExtResource("1_it8xj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur284"] +atlas = ExtResource("1_it8xj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_forbq"] +atlas = ExtResource("1_it8xj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox0k2"] +atlas = ExtResource("1_it8xj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q11su"] +atlas = ExtResource("1_it8xj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1u6f"] +atlas = ExtResource("1_it8xj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4hyl"] +atlas = ExtResource("1_it8xj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_madtn"] +atlas = ExtResource("1_it8xj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b334d"] +atlas = ExtResource("1_it8xj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oldh6"] +atlas = ExtResource("1_it8xj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p21dt"] +atlas = ExtResource("1_it8xj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vruce"] +atlas = ExtResource("1_it8xj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5u5r"] +atlas = ExtResource("1_it8xj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmm55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72y1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yejbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c11ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddoku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxf26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r83qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur284") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_forbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox0k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q11su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1u6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4hyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_madtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b334d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oldh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p21dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vruce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5u5r") +}], +"loop": true, +"name": &"teleportblueorb", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportorangeorb.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportorangeorb.tres new file mode 100644 index 0000000..fb8a697 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportorangeorb.tres @@ -0,0 +1,144 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://cx27ratygkwnf"] + +[ext_resource type="Texture2D" uid="uid://b2w2pjvjab4q4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png" id="1_1x5ub"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilujd"] +atlas = ExtResource("1_1x5ub") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asnjk"] +atlas = ExtResource("1_1x5ub") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qlg2"] +atlas = ExtResource("1_1x5ub") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtb33"] +atlas = ExtResource("1_1x5ub") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv1gy"] +atlas = ExtResource("1_1x5ub") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjw64"] +atlas = ExtResource("1_1x5ub") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll2dp"] +atlas = ExtResource("1_1x5ub") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8woiy"] +atlas = ExtResource("1_1x5ub") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2kds"] +atlas = ExtResource("1_1x5ub") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26oes"] +atlas = ExtResource("1_1x5ub") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh33g"] +atlas = ExtResource("1_1x5ub") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g7ct"] +atlas = ExtResource("1_1x5ub") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgqnm"] +atlas = ExtResource("1_1x5ub") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mxka"] +atlas = ExtResource("1_1x5ub") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8man"] +atlas = ExtResource("1_1x5ub") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn82e"] +atlas = ExtResource("1_1x5ub") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj5pa"] +atlas = ExtResource("1_1x5ub") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olso6"] +atlas = ExtResource("1_1x5ub") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvn24"] +atlas = ExtResource("1_1x5ub") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilujd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asnjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qlg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtb33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv1gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjw64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll2dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8woiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2kds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26oes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh33g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g7ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgqnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mxka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8man") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn82e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj5pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olso6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvn24") +}], +"loop": true, +"name": &"teleportorangeorb", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportpurpleorb.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportpurpleorb.tres new file mode 100644 index 0000000..9f8dc96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportpurpleorb.tres @@ -0,0 +1,144 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://c2prjigjwf0hf"] + +[ext_resource type="Texture2D" uid="uid://dbtot3mbuqnue" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png" id="1_6tmr5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h74yx"] +atlas = ExtResource("1_6tmr5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk8kn"] +atlas = ExtResource("1_6tmr5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilcqt"] +atlas = ExtResource("1_6tmr5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo8mc"] +atlas = ExtResource("1_6tmr5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myhim"] +atlas = ExtResource("1_6tmr5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdivg"] +atlas = ExtResource("1_6tmr5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1axfs"] +atlas = ExtResource("1_6tmr5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w67il"] +atlas = ExtResource("1_6tmr5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyigo"] +atlas = ExtResource("1_6tmr5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2tr4"] +atlas = ExtResource("1_6tmr5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3unuo"] +atlas = ExtResource("1_6tmr5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgdbm"] +atlas = ExtResource("1_6tmr5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5s2c"] +atlas = ExtResource("1_6tmr5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x30tc"] +atlas = ExtResource("1_6tmr5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emh87"] +atlas = ExtResource("1_6tmr5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw07k"] +atlas = ExtResource("1_6tmr5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq5bq"] +atlas = ExtResource("1_6tmr5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roqcl"] +atlas = ExtResource("1_6tmr5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1shop"] +atlas = ExtResource("1_6tmr5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h74yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk8kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilcqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo8mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myhim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdivg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1axfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w67il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyigo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2tr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3unuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgdbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5s2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x30tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emh87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw07k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq5bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roqcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1shop") +}], +"loop": true, +"name": &"teleportpurpleorb", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall.tres new file mode 100644 index 0000000..cecf0c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://dblau6k4b3acr"] + +[ext_resource type="Texture2D" uid="uid://b106d655goiil" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png" id="1_2cprx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dklxx"] +atlas = ExtResource("1_2cprx") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plpv"] +atlas = ExtResource("1_2cprx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2j1h"] +atlas = ExtResource("1_2cprx") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uivhy"] +atlas = ExtResource("1_2cprx") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dk74"] +atlas = ExtResource("1_2cprx") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhrui"] +atlas = ExtResource("1_2cprx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5txbd"] +atlas = ExtResource("1_2cprx") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fypyq"] +atlas = ExtResource("1_2cprx") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps7rh"] +atlas = ExtResource("1_2cprx") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bolm"] +atlas = ExtResource("1_2cprx") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpxvr"] +atlas = ExtResource("1_2cprx") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j2i8"] +atlas = ExtResource("1_2cprx") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef78m"] +atlas = ExtResource("1_2cprx") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baqc1"] +atlas = ExtResource("1_2cprx") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dklxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2j1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uivhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dk74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhrui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5txbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fypyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps7rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bolm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpxvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j2i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef78m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baqc1") +}], +"loop": true, +"name": &"teleportrecall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall2.tres new file mode 100644 index 0000000..84d2a68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecall2.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://kebbfb30ys5l"] + +[ext_resource type="Texture2D" uid="uid://bqxcvsan1jper" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png" id="1_jcati"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlksh"] +atlas = ExtResource("1_jcati") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pswc"] +atlas = ExtResource("1_jcati") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tiga"] +atlas = ExtResource("1_jcati") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0frc8"] +atlas = ExtResource("1_jcati") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejbxl"] +atlas = ExtResource("1_jcati") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ccp"] +atlas = ExtResource("1_jcati") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmq2e"] +atlas = ExtResource("1_jcati") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sna5p"] +atlas = ExtResource("1_jcati") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfgqp"] +atlas = ExtResource("1_jcati") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20wxr"] +atlas = ExtResource("1_jcati") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6agk"] +atlas = ExtResource("1_jcati") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r785h"] +atlas = ExtResource("1_jcati") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7th6"] +atlas = ExtResource("1_jcati") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3cr4"] +atlas = ExtResource("1_jcati") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlksh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pswc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tiga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0frc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejbxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ccp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmq2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sna5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfgqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20wxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6agk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r785h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7th6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3cr4") +}], +"loop": true, +"name": &"teleportrecall2", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallblue.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallblue.tres new file mode 100644 index 0000000..735b207 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallblue.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://uvs3bpay6cqf"] + +[ext_resource type="Texture2D" uid="uid://dtfejjl5s8mpf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png" id="1_d73yf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b12d4"] +atlas = ExtResource("1_d73yf") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xth4t"] +atlas = ExtResource("1_d73yf") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmk8f"] +atlas = ExtResource("1_d73yf") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w5dd"] +atlas = ExtResource("1_d73yf") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ynba"] +atlas = ExtResource("1_d73yf") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ikq0"] +atlas = ExtResource("1_d73yf") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ufy"] +atlas = ExtResource("1_d73yf") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsouu"] +atlas = ExtResource("1_d73yf") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jg1a"] +atlas = ExtResource("1_d73yf") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahnxk"] +atlas = ExtResource("1_d73yf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eukiv"] +atlas = ExtResource("1_d73yf") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go84k"] +atlas = ExtResource("1_d73yf") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uu0k"] +atlas = ExtResource("1_d73yf") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2krh"] +atlas = ExtResource("1_d73yf") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b12d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xth4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmk8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w5dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ynba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ikq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ufy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsouu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jg1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahnxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eukiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go84k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uu0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2krh") +}], +"loop": true, +"name": &"teleportrecallblue", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallgreen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallgreen.tres new file mode 100644 index 0000000..1dd0fb3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallgreen.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://fed0owa2lvxw"] + +[ext_resource type="Texture2D" uid="uid://dw6d0mnv60p10" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png" id="1_y62ue"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4iwn"] +atlas = ExtResource("1_y62ue") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xkt6"] +atlas = ExtResource("1_y62ue") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptviu"] +atlas = ExtResource("1_y62ue") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7swc"] +atlas = ExtResource("1_y62ue") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ajbf"] +atlas = ExtResource("1_y62ue") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4nvk"] +atlas = ExtResource("1_y62ue") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1orel"] +atlas = ExtResource("1_y62ue") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idudy"] +atlas = ExtResource("1_y62ue") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4bh5"] +atlas = ExtResource("1_y62ue") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjnyo"] +atlas = ExtResource("1_y62ue") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyeig"] +atlas = ExtResource("1_y62ue") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipkgj"] +atlas = ExtResource("1_y62ue") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epclf"] +atlas = ExtResource("1_y62ue") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2uw2"] +atlas = ExtResource("1_y62ue") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4iwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xkt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptviu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7swc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ajbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4nvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1orel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idudy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4bh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjnyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyeig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipkgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epclf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2uw2") +}], +"loop": true, +"name": &"teleportrecallgreen", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallred.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallred.tres new file mode 100644 index 0000000..fd2e23a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallred.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://cxuobpc2j2vpd"] + +[ext_resource type="Texture2D" uid="uid://dde7pnvoocuhn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png" id="1_dbu8m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g83of"] +atlas = ExtResource("1_dbu8m") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpmwe"] +atlas = ExtResource("1_dbu8m") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35x5e"] +atlas = ExtResource("1_dbu8m") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncuvx"] +atlas = ExtResource("1_dbu8m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3po7"] +atlas = ExtResource("1_dbu8m") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erqmj"] +atlas = ExtResource("1_dbu8m") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h3yq"] +atlas = ExtResource("1_dbu8m") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt3lv"] +atlas = ExtResource("1_dbu8m") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfnj8"] +atlas = ExtResource("1_dbu8m") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30vqv"] +atlas = ExtResource("1_dbu8m") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvp5y"] +atlas = ExtResource("1_dbu8m") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpjcs"] +atlas = ExtResource("1_dbu8m") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlofh"] +atlas = ExtResource("1_dbu8m") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wslvy"] +atlas = ExtResource("1_dbu8m") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g83of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpmwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35x5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncuvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3po7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erqmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h3yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt3lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfnj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30vqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvp5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpjcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlofh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wslvy") +}], +"loop": true, +"name": &"teleportrecallred", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallwhite.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallwhite.tres new file mode 100644 index 0000000..24cbd02 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportrecallwhite.tres @@ -0,0 +1,109 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://b416864oqylef"] + +[ext_resource type="Texture2D" uid="uid://b2uijdft14duu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png" id="1_lcir8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5ely"] +atlas = ExtResource("1_lcir8") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxefj"] +atlas = ExtResource("1_lcir8") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66pyr"] +atlas = ExtResource("1_lcir8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjeo4"] +atlas = ExtResource("1_lcir8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_034gb"] +atlas = ExtResource("1_lcir8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd8nf"] +atlas = ExtResource("1_lcir8") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qxep"] +atlas = ExtResource("1_lcir8") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxs1c"] +atlas = ExtResource("1_lcir8") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkl8l"] +atlas = ExtResource("1_lcir8") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61c6o"] +atlas = ExtResource("1_lcir8") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enhyc"] +atlas = ExtResource("1_lcir8") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flox8"] +atlas = ExtResource("1_lcir8") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq2ng"] +atlas = ExtResource("1_lcir8") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5knjy"] +atlas = ExtResource("1_lcir8") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5ely") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxefj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66pyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjeo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_034gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd8nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qxep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxs1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkl8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61c6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enhyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flox8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq2ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5knjy") +}], +"loop": true, +"name": &"teleportrecallwhite", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportyelloworb.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportyelloworb.tres new file mode 100644 index 0000000..4ec6c25 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_teleportyelloworb.tres @@ -0,0 +1,144 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://ckauauuihm08g"] + +[ext_resource type="Texture2D" uid="uid://f34im5cbd3p1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png" id="1_8hqwn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp7dt"] +atlas = ExtResource("1_8hqwn") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vmwn"] +atlas = ExtResource("1_8hqwn") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw4a2"] +atlas = ExtResource("1_8hqwn") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itobc"] +atlas = ExtResource("1_8hqwn") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyka2"] +atlas = ExtResource("1_8hqwn") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwcye"] +atlas = ExtResource("1_8hqwn") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvfam"] +atlas = ExtResource("1_8hqwn") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqw7d"] +atlas = ExtResource("1_8hqwn") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwu6t"] +atlas = ExtResource("1_8hqwn") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2f0r"] +atlas = ExtResource("1_8hqwn") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4kal"] +atlas = ExtResource("1_8hqwn") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5n5l"] +atlas = ExtResource("1_8hqwn") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1mju"] +atlas = ExtResource("1_8hqwn") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i33bj"] +atlas = ExtResource("1_8hqwn") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx3kc"] +atlas = ExtResource("1_8hqwn") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xaaa"] +atlas = ExtResource("1_8hqwn") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u84r"] +atlas = ExtResource("1_8hqwn") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r18o7"] +atlas = ExtResource("1_8hqwn") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk5wc"] +atlas = ExtResource("1_8hqwn") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp7dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vmwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw4a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itobc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyka2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwcye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvfam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqw7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwu6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2f0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4kal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5n5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1mju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i33bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx3kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xaaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u84r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r18o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk5wc") +}], +"loop": true, +"name": &"teleportyelloworb", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_tornadoswirl.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_tornadoswirl.tres new file mode 100644 index 0000000..3bc09c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_tornadoswirl.tres @@ -0,0 +1,256 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://bo3ys2nn1a7sa"] + +[ext_resource type="Texture2D" uid="uid://cun57g2pnrrtk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png" id="1_raeen"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i33ok"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 888, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifde6"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 666, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p4h2"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 555, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vvi2"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 444, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icg4m"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 333, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uloff"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 222, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndf2i"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 111, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v4ml"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 0, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vebun"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 888, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scs3d"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 777, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p1r5"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 666, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqo47"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 555, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mlgs"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 444, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lntd1"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 333, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85iqi"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 222, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xpds"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 111, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr4dr"] +atlas = ExtResource("1_raeen") +region = Rect2(302, 0, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0662h"] +atlas = ExtResource("1_raeen") +region = Rect2(453, 777, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d810w"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 777, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib5fy"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 666, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awg60"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 555, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnsty"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 444, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r66kr"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 333, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdb07"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 222, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cgyu"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 111, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ydyd"] +atlas = ExtResource("1_raeen") +region = Rect2(151, 0, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuk8r"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 888, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yuk2"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 777, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk7if"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 666, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51lxe"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 555, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpjmp"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 444, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk4yl"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 333, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7l5b"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 222, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47140"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 111, 150, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1joa"] +atlas = ExtResource("1_raeen") +region = Rect2(0, 0, 150, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i33ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifde6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p4h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vvi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icg4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uloff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndf2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v4ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vebun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scs3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p1r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqo47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mlgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lntd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85iqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xpds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr4dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0662h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d810w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib5fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awg60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnsty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r66kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdb07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cgyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ydyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuk8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yuk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk7if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51lxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpjmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk4yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7l5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47140") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1joa") +}], +"loop": true, +"name": &"tornadoswirl", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_vortexswirl.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_vortexswirl.tres new file mode 100644 index 0000000..97adc6d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_vortexswirl.tres @@ -0,0 +1,291 @@ +[gd_resource type="SpriteFrames" load_steps=42 format=3 uid="uid://brnthxfubhfn0"] + +[ext_resource type="Texture2D" uid="uid://cx2csmq40n1b6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png" id="1_nk3io"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hulw"] +atlas = ExtResource("1_nk3io") +region = Rect2(513, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxitt"] +atlas = ExtResource("1_nk3io") +region = Rect2(1197, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ated"] +atlas = ExtResource("1_nk3io") +region = Rect2(1197, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b86p"] +atlas = ExtResource("1_nk3io") +region = Rect2(1197, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6ym7"] +atlas = ExtResource("1_nk3io") +region = Rect2(1197, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqxy7"] +atlas = ExtResource("1_nk3io") +region = Rect2(1026, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spm6s"] +atlas = ExtResource("1_nk3io") +region = Rect2(1026, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aci7e"] +atlas = ExtResource("1_nk3io") +region = Rect2(1026, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5fyb"] +atlas = ExtResource("1_nk3io") +region = Rect2(1026, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch0e3"] +atlas = ExtResource("1_nk3io") +region = Rect2(1026, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8yva"] +atlas = ExtResource("1_nk3io") +region = Rect2(855, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y075q"] +atlas = ExtResource("1_nk3io") +region = Rect2(855, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcc8c"] +atlas = ExtResource("1_nk3io") +region = Rect2(855, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoyr1"] +atlas = ExtResource("1_nk3io") +region = Rect2(855, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvawy"] +atlas = ExtResource("1_nk3io") +region = Rect2(855, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5at2"] +atlas = ExtResource("1_nk3io") +region = Rect2(684, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sieth"] +atlas = ExtResource("1_nk3io") +region = Rect2(684, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekx63"] +atlas = ExtResource("1_nk3io") +region = Rect2(684, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orbp2"] +atlas = ExtResource("1_nk3io") +region = Rect2(684, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eit0"] +atlas = ExtResource("1_nk3io") +region = Rect2(684, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5la"] +atlas = ExtResource("1_nk3io") +region = Rect2(1197, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wya07"] +atlas = ExtResource("1_nk3io") +region = Rect2(513, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dlyi"] +atlas = ExtResource("1_nk3io") +region = Rect2(513, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4g88"] +atlas = ExtResource("1_nk3io") +region = Rect2(513, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwmsl"] +atlas = ExtResource("1_nk3io") +region = Rect2(513, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws0ip"] +atlas = ExtResource("1_nk3io") +region = Rect2(342, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pamwy"] +atlas = ExtResource("1_nk3io") +region = Rect2(342, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2cuu"] +atlas = ExtResource("1_nk3io") +region = Rect2(342, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jisul"] +atlas = ExtResource("1_nk3io") +region = Rect2(342, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqtcy"] +atlas = ExtResource("1_nk3io") +region = Rect2(342, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqudo"] +atlas = ExtResource("1_nk3io") +region = Rect2(171, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jh8c"] +atlas = ExtResource("1_nk3io") +region = Rect2(171, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2rqh"] +atlas = ExtResource("1_nk3io") +region = Rect2(171, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0md7f"] +atlas = ExtResource("1_nk3io") +region = Rect2(171, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8rmq"] +atlas = ExtResource("1_nk3io") +region = Rect2(171, 0, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3f2g"] +atlas = ExtResource("1_nk3io") +region = Rect2(0, 684, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_603f7"] +atlas = ExtResource("1_nk3io") +region = Rect2(0, 513, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpgol"] +atlas = ExtResource("1_nk3io") +region = Rect2(0, 342, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxr5o"] +atlas = ExtResource("1_nk3io") +region = Rect2(0, 171, 170, 170) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acqac"] +atlas = ExtResource("1_nk3io") +region = Rect2(0, 0, 170, 170) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hulw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxitt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ated") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b86p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6ym7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqxy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spm6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aci7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5fyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch0e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8yva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y075q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcc8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoyr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvawy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5at2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sieth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekx63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orbp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eit0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wya07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dlyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4g88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwmsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws0ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pamwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2cuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jisul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqtcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqudo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jh8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2rqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0md7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8rmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3f2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_603f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpgol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxr5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acqac") +}], +"loop": true, +"name": &"vortexswirl", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_whiteexplosion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_whiteexplosion.tres new file mode 100644 index 0000000..4bdbeeb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_whiteexplosion.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://qm5oxyyb6naq"] + +[ext_resource type="Texture2D" uid="uid://0p0gepd8r8yg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png" id="1_l22e8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct47k"] +atlas = ExtResource("1_l22e8") +region = Rect2(0, 138, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6bbf"] +atlas = ExtResource("1_l22e8") +region = Rect2(73, 0, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4db34"] +atlas = ExtResource("1_l22e8") +region = Rect2(73, 69, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drocm"] +atlas = ExtResource("1_l22e8") +region = Rect2(73, 138, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me0xi"] +atlas = ExtResource("1_l22e8") +region = Rect2(146, 0, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvucq"] +atlas = ExtResource("1_l22e8") +region = Rect2(146, 69, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bsiw"] +atlas = ExtResource("1_l22e8") +region = Rect2(146, 138, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7e6g"] +atlas = ExtResource("1_l22e8") +region = Rect2(292, 0, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stexe"] +atlas = ExtResource("1_l22e8") +region = Rect2(219, 138, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heyqr"] +atlas = ExtResource("1_l22e8") +region = Rect2(292, 138, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4q42"] +atlas = ExtResource("1_l22e8") +region = Rect2(292, 69, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nce0i"] +atlas = ExtResource("1_l22e8") +region = Rect2(0, 69, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lflq4"] +atlas = ExtResource("1_l22e8") +region = Rect2(0, 0, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujswm"] +atlas = ExtResource("1_l22e8") +region = Rect2(219, 69, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlsxr"] +atlas = ExtResource("1_l22e8") +region = Rect2(219, 0, 72, 68) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21g7t"] +atlas = ExtResource("1_l22e8") +region = Rect2(365, 0, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14243"] +atlas = ExtResource("1_l22e8") +region = Rect2(365, 51, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gryu"] +atlas = ExtResource("1_l22e8") +region = Rect2(365, 102, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi050"] +atlas = ExtResource("1_l22e8") +region = Rect2(365, 153, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj8tr"] +atlas = ExtResource("1_l22e8") +region = Rect2(365, 204, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f36co"] +atlas = ExtResource("1_l22e8") +region = Rect2(422, 0, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgdgm"] +atlas = ExtResource("1_l22e8") +region = Rect2(422, 51, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt4lw"] +atlas = ExtResource("1_l22e8") +region = Rect2(422, 102, 56, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oamai"] +atlas = ExtResource("1_l22e8") +region = Rect2(422, 153, 56, 50) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct47k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6bbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4db34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drocm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me0xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvucq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bsiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7e6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stexe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heyqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4q42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nce0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lflq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujswm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlsxr") +}], +"loop": true, +"name": &"whitehotbig", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_21g7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14243") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gryu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi050") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj8tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f36co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgdgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt4lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oamai") +}], +"loop": true, +"name": &"whitehotmedium", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_winner.tres b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_winner.tres new file mode 100644 index 0000000..f2cbd90 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/fx/fx_winner.tres @@ -0,0 +1,235 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://dylh4tad3j1gf"] + +[ext_resource type="Texture2D" uid="uid://dpgbg4ddhgl6i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png" id="1_fetiy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa65e"] +atlas = ExtResource("1_fetiy") +region = Rect2(362, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48tjx"] +atlas = ExtResource("1_fetiy") +region = Rect2(724, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7k6k"] +atlas = ExtResource("1_fetiy") +region = Rect2(724, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31quc"] +atlas = ExtResource("1_fetiy") +region = Rect2(543, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwfem"] +atlas = ExtResource("1_fetiy") +region = Rect2(543, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkl4e"] +atlas = ExtResource("1_fetiy") +region = Rect2(543, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqm1j"] +atlas = ExtResource("1_fetiy") +region = Rect2(543, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_328gv"] +atlas = ExtResource("1_fetiy") +region = Rect2(543, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpaty"] +atlas = ExtResource("1_fetiy") +region = Rect2(362, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjj2u"] +atlas = ExtResource("1_fetiy") +region = Rect2(362, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekmm0"] +atlas = ExtResource("1_fetiy") +region = Rect2(362, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41bio"] +atlas = ExtResource("1_fetiy") +region = Rect2(724, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bw5k"] +atlas = ExtResource("1_fetiy") +region = Rect2(362, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44evn"] +atlas = ExtResource("1_fetiy") +region = Rect2(181, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjqrp"] +atlas = ExtResource("1_fetiy") +region = Rect2(181, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32fdc"] +atlas = ExtResource("1_fetiy") +region = Rect2(181, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2cm2"] +atlas = ExtResource("1_fetiy") +region = Rect2(181, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1xa2"] +atlas = ExtResource("1_fetiy") +region = Rect2(181, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ac87"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 724, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1hv7"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 543, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2j1l"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 362, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvoym"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 181, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk2yi"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvsjy"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb80q"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwgij"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg5h"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc4u4"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhoho"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ic40"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skjod"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnt8a"] +atlas = ExtResource("1_fetiy") +region = Rect2(0, 0, 180, 180) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa65e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48tjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7k6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31quc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwfem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkl4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqm1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_328gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpaty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjj2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekmm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41bio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bw5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44evn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjqrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32fdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2cm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1xa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ac87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1hv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2j1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvoym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk2yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvsjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb80q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwgij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc4u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhoho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ic40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skjod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnt8a") +}], +"loop": true, +"name": &"winner", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_boss_frostarmor.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_boss_frostarmor.tres new file mode 100644 index 0000000..749ad11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_boss_frostarmor.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dy7j8s4o7enic"] + +[ext_resource type="Texture2D" uid="uid://d2soi2wdh3psk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png" id="1_r3rg1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7oqv"] +atlas = ExtResource("1_r3rg1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtisp"] +atlas = ExtResource("1_r3rg1") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0xqm"] +atlas = ExtResource("1_r3rg1") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rsda"] +atlas = ExtResource("1_r3rg1") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rruno"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3beq"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkuf5"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co4tv"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41j3s"] +atlas = ExtResource("1_r3rg1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt6k3"] +atlas = ExtResource("1_r3rg1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s52ow"] +atlas = ExtResource("1_r3rg1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idd33"] +atlas = ExtResource("1_r3rg1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp1qg"] +atlas = ExtResource("1_r3rg1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv6c4"] +atlas = ExtResource("1_r3rg1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ism8"] +atlas = ExtResource("1_r3rg1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li8p1"] +atlas = ExtResource("1_r3rg1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3373"] +atlas = ExtResource("1_r3rg1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l07x8"] +atlas = ExtResource("1_r3rg1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_732l1"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16m2m"] +atlas = ExtResource("1_r3rg1") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfbcb"] +atlas = ExtResource("1_r3rg1") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3xmb"] +atlas = ExtResource("1_r3rg1") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5dye"] +atlas = ExtResource("1_r3rg1") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bghcx"] +atlas = ExtResource("1_r3rg1") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwv7j"] +atlas = ExtResource("1_r3rg1") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6058k"] +atlas = ExtResource("1_r3rg1") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7gn1"] +atlas = ExtResource("1_r3rg1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx535"] +atlas = ExtResource("1_r3rg1") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq2in"] +atlas = ExtResource("1_r3rg1") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cgx0"] +atlas = ExtResource("1_r3rg1") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7oqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtisp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0xqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rsda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rruno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3beq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkuf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co4tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41j3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt6k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s52ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idd33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp1qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv6c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ism8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li8p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3373") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l07x8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_732l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16m2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfbcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3xmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5dye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bghcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwv7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6058k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7gn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx535") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq2in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cgx0") +}], +"loop": true, +"name": &"frostarmor", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_arclyteregalia.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_arclyteregalia.tres new file mode 100644 index 0000000..758d7bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_arclyteregalia.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://djij27wrrqy5p"] + +[ext_resource type="Texture2D" uid="uid://c7lqaucl004cf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png" id="1_2uyar"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvesu"] +atlas = ExtResource("1_2uyar") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvi7j"] +atlas = ExtResource("1_2uyar") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owfts"] +atlas = ExtResource("1_2uyar") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8gxv"] +atlas = ExtResource("1_2uyar") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x751s"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q71d"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nqop"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocorm"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjws4"] +atlas = ExtResource("1_2uyar") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrkno"] +atlas = ExtResource("1_2uyar") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uin76"] +atlas = ExtResource("1_2uyar") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr6sd"] +atlas = ExtResource("1_2uyar") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mcwp"] +atlas = ExtResource("1_2uyar") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gks2p"] +atlas = ExtResource("1_2uyar") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hbxs"] +atlas = ExtResource("1_2uyar") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_645cc"] +atlas = ExtResource("1_2uyar") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it7gw"] +atlas = ExtResource("1_2uyar") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxxos"] +atlas = ExtResource("1_2uyar") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxxev"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d77t"] +atlas = ExtResource("1_2uyar") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xps3j"] +atlas = ExtResource("1_2uyar") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_070vw"] +atlas = ExtResource("1_2uyar") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24ldr"] +atlas = ExtResource("1_2uyar") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrtdy"] +atlas = ExtResource("1_2uyar") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85gq"] +atlas = ExtResource("1_2uyar") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wew6w"] +atlas = ExtResource("1_2uyar") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brllq"] +atlas = ExtResource("1_2uyar") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge0x0"] +atlas = ExtResource("1_2uyar") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nxes"] +atlas = ExtResource("1_2uyar") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejvqn"] +atlas = ExtResource("1_2uyar") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvesu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvi7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owfts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8gxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x751s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q71d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nqop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocorm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjws4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrkno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uin76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr6sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mcwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gks2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hbxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_645cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it7gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxxos") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxxev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d77t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xps3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_070vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24ldr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrtdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n85gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wew6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brllq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge0x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nxes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejvqn") +}], +"loop": true, +"name": &"arclyteregalia", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_bigshield.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_bigshield.tres new file mode 100644 index 0000000..4282111 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_bigshield.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bjls7m6qa65vg"] + +[ext_resource type="Texture2D" uid="uid://cce6wkq02os4p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png" id="1_c2kto"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xja8e"] +atlas = ExtResource("1_c2kto") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs10u"] +atlas = ExtResource("1_c2kto") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c2fg"] +atlas = ExtResource("1_c2kto") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmjo7"] +atlas = ExtResource("1_c2kto") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjmxm"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttumt"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uojnd"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym1dw"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xt5j"] +atlas = ExtResource("1_c2kto") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaynv"] +atlas = ExtResource("1_c2kto") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yjxa"] +atlas = ExtResource("1_c2kto") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv2lc"] +atlas = ExtResource("1_c2kto") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4y4s"] +atlas = ExtResource("1_c2kto") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkysr"] +atlas = ExtResource("1_c2kto") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coutb"] +atlas = ExtResource("1_c2kto") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqlna"] +atlas = ExtResource("1_c2kto") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbjao"] +atlas = ExtResource("1_c2kto") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ilra"] +atlas = ExtResource("1_c2kto") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo48q"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfwrk"] +atlas = ExtResource("1_c2kto") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8rdq"] +atlas = ExtResource("1_c2kto") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1wda"] +atlas = ExtResource("1_c2kto") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojsh2"] +atlas = ExtResource("1_c2kto") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2nbh"] +atlas = ExtResource("1_c2kto") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1vyl"] +atlas = ExtResource("1_c2kto") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8ssf"] +atlas = ExtResource("1_c2kto") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjg12"] +atlas = ExtResource("1_c2kto") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvr3r"] +atlas = ExtResource("1_c2kto") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lwpy"] +atlas = ExtResource("1_c2kto") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2afsb"] +atlas = ExtResource("1_c2kto") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xja8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs10u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c2fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmjo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjmxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttumt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uojnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym1dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xt5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaynv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yjxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv2lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4y4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkysr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coutb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqlna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbjao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ilra") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo48q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfwrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8rdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1wda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojsh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2nbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1vyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8ssf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjg12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvr3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lwpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2afsb") +}], +"loop": true, +"name": &"bigshield", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_dawnseye.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_dawnseye.tres new file mode 100644 index 0000000..faaf26b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_dawnseye.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cv8asmvsiwaea"] + +[ext_resource type="Texture2D" uid="uid://dskioj2pythet" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png" id="1_ctf2v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bff8x"] +atlas = ExtResource("1_ctf2v") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31l18"] +atlas = ExtResource("1_ctf2v") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpc75"] +atlas = ExtResource("1_ctf2v") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w876v"] +atlas = ExtResource("1_ctf2v") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw4du"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2jfv"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkoht"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1tuk"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r6rx"] +atlas = ExtResource("1_ctf2v") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqm6p"] +atlas = ExtResource("1_ctf2v") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfiiy"] +atlas = ExtResource("1_ctf2v") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfpc3"] +atlas = ExtResource("1_ctf2v") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ahsc"] +atlas = ExtResource("1_ctf2v") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul37d"] +atlas = ExtResource("1_ctf2v") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1j6s"] +atlas = ExtResource("1_ctf2v") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu8je"] +atlas = ExtResource("1_ctf2v") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxjm6"] +atlas = ExtResource("1_ctf2v") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ajf"] +atlas = ExtResource("1_ctf2v") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwwn0"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b01db"] +atlas = ExtResource("1_ctf2v") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s01h1"] +atlas = ExtResource("1_ctf2v") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2bq6"] +atlas = ExtResource("1_ctf2v") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb8pl"] +atlas = ExtResource("1_ctf2v") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wh82"] +atlas = ExtResource("1_ctf2v") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgkuh"] +atlas = ExtResource("1_ctf2v") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24jxn"] +atlas = ExtResource("1_ctf2v") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqpmp"] +atlas = ExtResource("1_ctf2v") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fden"] +atlas = ExtResource("1_ctf2v") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk6jl"] +atlas = ExtResource("1_ctf2v") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gxlp"] +atlas = ExtResource("1_ctf2v") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bff8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31l18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpc75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w876v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw4du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2jfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkoht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1tuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r6rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqm6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfiiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfpc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ahsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul37d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1j6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu8je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxjm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ajf") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwwn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b01db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s01h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2bq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb8pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wh82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgkuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24jxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqpmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fden") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk6jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gxlp") +}], +"loop": true, +"name": &"dawnseye", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_goldenvitriol.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_goldenvitriol.tres new file mode 100644 index 0000000..8ab8219 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_goldenvitriol.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c52ngxe6weacc"] + +[ext_resource type="Texture2D" uid="uid://dcur3p3fur3fi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png" id="1_s1pfa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1bj1"] +atlas = ExtResource("1_s1pfa") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peu18"] +atlas = ExtResource("1_s1pfa") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kin6l"] +atlas = ExtResource("1_s1pfa") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4wtf"] +atlas = ExtResource("1_s1pfa") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkppt"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uy71"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8teq"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_serbo"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d5ly"] +atlas = ExtResource("1_s1pfa") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bpqp"] +atlas = ExtResource("1_s1pfa") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0eq6"] +atlas = ExtResource("1_s1pfa") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivn8w"] +atlas = ExtResource("1_s1pfa") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtrjy"] +atlas = ExtResource("1_s1pfa") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xemmo"] +atlas = ExtResource("1_s1pfa") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwc65"] +atlas = ExtResource("1_s1pfa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnn8l"] +atlas = ExtResource("1_s1pfa") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt78l"] +atlas = ExtResource("1_s1pfa") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axbnm"] +atlas = ExtResource("1_s1pfa") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il3bg"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kjap"] +atlas = ExtResource("1_s1pfa") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oylws"] +atlas = ExtResource("1_s1pfa") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxj2k"] +atlas = ExtResource("1_s1pfa") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8oqh"] +atlas = ExtResource("1_s1pfa") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq848"] +atlas = ExtResource("1_s1pfa") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e586n"] +atlas = ExtResource("1_s1pfa") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s62y"] +atlas = ExtResource("1_s1pfa") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqf37"] +atlas = ExtResource("1_s1pfa") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irguy"] +atlas = ExtResource("1_s1pfa") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq866"] +atlas = ExtResource("1_s1pfa") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72yy4"] +atlas = ExtResource("1_s1pfa") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1bj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peu18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kin6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4wtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkppt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uy71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8teq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_serbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d5ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bpqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0eq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivn8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtrjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xemmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwc65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnn8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt78l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axbnm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_il3bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kjap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oylws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxj2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8oqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq848") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e586n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s62y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqf37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irguy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq866") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72yy4") +}], +"loop": true, +"name": &"goldenvitriol", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_ironbanner.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_ironbanner.tres new file mode 100644 index 0000000..d73c0d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_ironbanner.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://r3krt3yeby8m"] + +[ext_resource type="Texture2D" uid="uid://ctlvokvd3jkoc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png" id="1_i5h1w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya6en"] +atlas = ExtResource("1_i5h1w") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so64p"] +atlas = ExtResource("1_i5h1w") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4jdn"] +atlas = ExtResource("1_i5h1w") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt0bb"] +atlas = ExtResource("1_i5h1w") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im3e6"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr1jk"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a20n"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig7du"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbldd"] +atlas = ExtResource("1_i5h1w") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1ldg"] +atlas = ExtResource("1_i5h1w") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r7e7"] +atlas = ExtResource("1_i5h1w") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x5f4"] +atlas = ExtResource("1_i5h1w") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtypa"] +atlas = ExtResource("1_i5h1w") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpo68"] +atlas = ExtResource("1_i5h1w") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w2xg"] +atlas = ExtResource("1_i5h1w") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvt1n"] +atlas = ExtResource("1_i5h1w") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpfqb"] +atlas = ExtResource("1_i5h1w") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnp2v"] +atlas = ExtResource("1_i5h1w") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpyfo"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnmn3"] +atlas = ExtResource("1_i5h1w") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_padm6"] +atlas = ExtResource("1_i5h1w") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa008"] +atlas = ExtResource("1_i5h1w") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ogey"] +atlas = ExtResource("1_i5h1w") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsy1d"] +atlas = ExtResource("1_i5h1w") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b7qw"] +atlas = ExtResource("1_i5h1w") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6htg3"] +atlas = ExtResource("1_i5h1w") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtiyw"] +atlas = ExtResource("1_i5h1w") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg86x"] +atlas = ExtResource("1_i5h1w") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13drs"] +atlas = ExtResource("1_i5h1w") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfwqu"] +atlas = ExtResource("1_i5h1w") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya6en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so64p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4jdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt0bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im3e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr1jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a20n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig7du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbldd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1ldg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r7e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x5f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtypa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpo68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w2xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvt1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpfqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnp2v") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpyfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnmn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_padm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa008") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ogey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsy1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b7qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6htg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtiyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg86x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13drs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfwqu") +}], +"loop": true, +"name": &"ironbanner", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_shieldofphalanx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_shieldofphalanx.tres new file mode 100644 index 0000000..f59af1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_shieldofphalanx.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cabe6kp07mkuo"] + +[ext_resource type="Texture2D" uid="uid://c3tgtk2whbuw3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png" id="1_4an0r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rclfw"] +atlas = ExtResource("1_4an0r") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q02lo"] +atlas = ExtResource("1_4an0r") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o76vh"] +atlas = ExtResource("1_4an0r") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m36n"] +atlas = ExtResource("1_4an0r") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqa78"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u57my"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg2yk"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vv76"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3isox"] +atlas = ExtResource("1_4an0r") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qiqp"] +atlas = ExtResource("1_4an0r") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7th7"] +atlas = ExtResource("1_4an0r") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2umuo"] +atlas = ExtResource("1_4an0r") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfvlm"] +atlas = ExtResource("1_4an0r") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ije8y"] +atlas = ExtResource("1_4an0r") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pcvn"] +atlas = ExtResource("1_4an0r") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulukg"] +atlas = ExtResource("1_4an0r") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2vpx"] +atlas = ExtResource("1_4an0r") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nti1t"] +atlas = ExtResource("1_4an0r") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b71n"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjjtv"] +atlas = ExtResource("1_4an0r") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_842ii"] +atlas = ExtResource("1_4an0r") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m7yy"] +atlas = ExtResource("1_4an0r") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tapnr"] +atlas = ExtResource("1_4an0r") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aomn8"] +atlas = ExtResource("1_4an0r") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_she26"] +atlas = ExtResource("1_4an0r") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uks1f"] +atlas = ExtResource("1_4an0r") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyfin"] +atlas = ExtResource("1_4an0r") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nts1"] +atlas = ExtResource("1_4an0r") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oi5r"] +atlas = ExtResource("1_4an0r") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0f3c"] +atlas = ExtResource("1_4an0r") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rclfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q02lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o76vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m36n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqa78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u57my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg2yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vv76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3isox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qiqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7th7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2umuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfvlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ije8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pcvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulukg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2vpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nti1t") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b71n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjjtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_842ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m7yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tapnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aomn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_she26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uks1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyfin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nts1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oi5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0f3c") +}], +"loop": true, +"name": &"shieldofphalanx", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_skywindglaives.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_skywindglaives.tres new file mode 100644 index 0000000..c4a8f46 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_skywindglaives.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dpojxn1f7ftuf"] + +[ext_resource type="Texture2D" uid="uid://qa4rhqgmqym1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png" id="1_xr1w3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q56gj"] +atlas = ExtResource("1_xr1w3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w6iu"] +atlas = ExtResource("1_xr1w3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlcdy"] +atlas = ExtResource("1_xr1w3") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc33q"] +atlas = ExtResource("1_xr1w3") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsr5b"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3smo"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w4gh"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmvkv"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwgc7"] +atlas = ExtResource("1_xr1w3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl6fj"] +atlas = ExtResource("1_xr1w3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lat6j"] +atlas = ExtResource("1_xr1w3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bqxm"] +atlas = ExtResource("1_xr1w3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpuon"] +atlas = ExtResource("1_xr1w3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqtc6"] +atlas = ExtResource("1_xr1w3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yog3w"] +atlas = ExtResource("1_xr1w3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqfsy"] +atlas = ExtResource("1_xr1w3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1qyn"] +atlas = ExtResource("1_xr1w3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnhtn"] +atlas = ExtResource("1_xr1w3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jss0"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbdd3"] +atlas = ExtResource("1_xr1w3") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5x8a"] +atlas = ExtResource("1_xr1w3") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw01m"] +atlas = ExtResource("1_xr1w3") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beo02"] +atlas = ExtResource("1_xr1w3") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h148e"] +atlas = ExtResource("1_xr1w3") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjgve"] +atlas = ExtResource("1_xr1w3") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h2sy"] +atlas = ExtResource("1_xr1w3") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h667"] +atlas = ExtResource("1_xr1w3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq2sv"] +atlas = ExtResource("1_xr1w3") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6buei"] +atlas = ExtResource("1_xr1w3") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbts0"] +atlas = ExtResource("1_xr1w3") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q56gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w6iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlcdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc33q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsr5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3smo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w4gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmvkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwgc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl6fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lat6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bqxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpuon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqtc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yog3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqfsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1qyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnhtn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jss0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbdd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5x8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw01m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beo02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h148e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjgve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h2sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h667") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq2sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6buei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbts0") +}], +"loop": true, +"name": &"skywindglaives", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_sunstonebracers.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_sunstonebracers.tres new file mode 100644 index 0000000..b9e1d51 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f1_sunstonebracers.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dg6m0b0d34c12"] + +[ext_resource type="Texture2D" uid="uid://jvgq5gibw16m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png" id="1_8twam"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3npaq"] +atlas = ExtResource("1_8twam") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rotf"] +atlas = ExtResource("1_8twam") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viscx"] +atlas = ExtResource("1_8twam") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ouwc"] +atlas = ExtResource("1_8twam") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wx8j"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwykf"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku5cw"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofyhy"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfsgw"] +atlas = ExtResource("1_8twam") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhhlt"] +atlas = ExtResource("1_8twam") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j1yx"] +atlas = ExtResource("1_8twam") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v25tm"] +atlas = ExtResource("1_8twam") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0olpb"] +atlas = ExtResource("1_8twam") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br6vd"] +atlas = ExtResource("1_8twam") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lysh"] +atlas = ExtResource("1_8twam") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_876xj"] +atlas = ExtResource("1_8twam") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvgwl"] +atlas = ExtResource("1_8twam") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nuuw"] +atlas = ExtResource("1_8twam") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bipmk"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adke0"] +atlas = ExtResource("1_8twam") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lht5h"] +atlas = ExtResource("1_8twam") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yccp"] +atlas = ExtResource("1_8twam") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h20r3"] +atlas = ExtResource("1_8twam") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckvfi"] +atlas = ExtResource("1_8twam") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqsp4"] +atlas = ExtResource("1_8twam") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrmed"] +atlas = ExtResource("1_8twam") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofols"] +atlas = ExtResource("1_8twam") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxap2"] +atlas = ExtResource("1_8twam") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwsrx"] +atlas = ExtResource("1_8twam") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq16y"] +atlas = ExtResource("1_8twam") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3npaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rotf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viscx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ouwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wx8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwykf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku5cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofyhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfsgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhhlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j1yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v25tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0olpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br6vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lysh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_876xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvgwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nuuw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bipmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adke0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lht5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yccp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h20r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckvfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqsp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrmed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofols") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxap2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwsrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq16y") +}], +"loop": true, +"name": &"sunstonebracers", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_bloodleechmask.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_bloodleechmask.tres new file mode 100644 index 0000000..946238b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_bloodleechmask.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://brcl6l25830u1"] + +[ext_resource type="Texture2D" uid="uid://dhhj3hj2ekcn0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png" id="1_5tg0e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt8lu"] +atlas = ExtResource("1_5tg0e") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixrfn"] +atlas = ExtResource("1_5tg0e") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byhs2"] +atlas = ExtResource("1_5tg0e") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiciu"] +atlas = ExtResource("1_5tg0e") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d5wf"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei0wo"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y86se"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh4hp"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36rrx"] +atlas = ExtResource("1_5tg0e") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5fiq"] +atlas = ExtResource("1_5tg0e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37wg1"] +atlas = ExtResource("1_5tg0e") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtexw"] +atlas = ExtResource("1_5tg0e") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23b5k"] +atlas = ExtResource("1_5tg0e") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6io36"] +atlas = ExtResource("1_5tg0e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n8if"] +atlas = ExtResource("1_5tg0e") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_424bi"] +atlas = ExtResource("1_5tg0e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02dd0"] +atlas = ExtResource("1_5tg0e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexd7"] +atlas = ExtResource("1_5tg0e") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1y8a"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf0ma"] +atlas = ExtResource("1_5tg0e") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4n4m"] +atlas = ExtResource("1_5tg0e") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lpvf"] +atlas = ExtResource("1_5tg0e") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3668m"] +atlas = ExtResource("1_5tg0e") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgbva"] +atlas = ExtResource("1_5tg0e") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy15s"] +atlas = ExtResource("1_5tg0e") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rppm"] +atlas = ExtResource("1_5tg0e") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b854n"] +atlas = ExtResource("1_5tg0e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isymf"] +atlas = ExtResource("1_5tg0e") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oit16"] +atlas = ExtResource("1_5tg0e") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mylw5"] +atlas = ExtResource("1_5tg0e") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt8lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixrfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byhs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiciu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d5wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei0wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y86se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh4hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36rrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5fiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37wg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtexw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23b5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6io36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n8if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_424bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02dd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexd7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1y8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf0ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4n4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lpvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3668m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgbva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy15s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rppm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b854n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isymf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oit16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mylw5") +}], +"loop": true, +"name": &"bloodleechmask", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletblidingstrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletblidingstrike.tres new file mode 100644 index 0000000..b9e48cb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletblidingstrike.tres @@ -0,0 +1,30 @@ +[gd_resource type="SpriteFrames" load_steps=4 format=3 uid="uid://rfce7xbib505"] + +[ext_resource type="Texture2D" uid="uid://ct5hfam876jxx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png" id="1_0q517"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3373q"] +atlas = ExtResource("1_0q517") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wuyv"] +atlas = ExtResource("1_0q517") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3373q") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wuyv") +}], +"loop": true, +"name": &"braceletblidingstrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletofblinding.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletofblinding.tres new file mode 100644 index 0000000..ffc9c74 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_braceletofblinding.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://ds8wkmtef4cpw"] + +[ext_resource type="Texture2D" uid="uid://dpvq0hi8fhka5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png" id="1_f5gts"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d5at"] +atlas = ExtResource("1_f5gts") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq6op"] +atlas = ExtResource("1_f5gts") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y1aa"] +atlas = ExtResource("1_f5gts") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp3w3"] +atlas = ExtResource("1_f5gts") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu3y2"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy34e"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvsgm"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdnhp"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hoji"] +atlas = ExtResource("1_f5gts") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kee3"] +atlas = ExtResource("1_f5gts") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmll3"] +atlas = ExtResource("1_f5gts") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fhgy"] +atlas = ExtResource("1_f5gts") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tsus"] +atlas = ExtResource("1_f5gts") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cee5k"] +atlas = ExtResource("1_f5gts") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8p65"] +atlas = ExtResource("1_f5gts") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs76y"] +atlas = ExtResource("1_f5gts") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7few"] +atlas = ExtResource("1_f5gts") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mjjr"] +atlas = ExtResource("1_f5gts") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xhha"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbpby"] +atlas = ExtResource("1_f5gts") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbqb7"] +atlas = ExtResource("1_f5gts") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oji2f"] +atlas = ExtResource("1_f5gts") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk4sh"] +atlas = ExtResource("1_f5gts") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eihe"] +atlas = ExtResource("1_f5gts") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7stw"] +atlas = ExtResource("1_f5gts") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npv8u"] +atlas = ExtResource("1_f5gts") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhavo"] +atlas = ExtResource("1_f5gts") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uve5r"] +atlas = ExtResource("1_f5gts") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t360"] +atlas = ExtResource("1_f5gts") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcd2s"] +atlas = ExtResource("1_f5gts") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d5at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq6op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y1aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp3w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu3y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy34e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvsgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdnhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hoji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kee3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmll3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fhgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tsus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cee5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8p65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs76y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7few") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mjjr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xhha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbpby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbqb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oji2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk4sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eihe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7stw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npv8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhavo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uve5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t360") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcd2s") +}], +"loop": true, +"name": &"braceletofblinding", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_crescentspear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_crescentspear.tres new file mode 100644 index 0000000..1ce5b1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_crescentspear.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://jmcetwfl6ji2"] + +[ext_resource type="Texture2D" uid="uid://qbcirfiahos8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png" id="1_yekoi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q34n"] +atlas = ExtResource("1_yekoi") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cjog"] +atlas = ExtResource("1_yekoi") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f67qq"] +atlas = ExtResource("1_yekoi") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lcjj"] +atlas = ExtResource("1_yekoi") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_240ry"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6t8y"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk40c"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpcbx"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko3m6"] +atlas = ExtResource("1_yekoi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6wj0"] +atlas = ExtResource("1_yekoi") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3js0"] +atlas = ExtResource("1_yekoi") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4hrp"] +atlas = ExtResource("1_yekoi") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq4bd"] +atlas = ExtResource("1_yekoi") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6ktb"] +atlas = ExtResource("1_yekoi") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgta3"] +atlas = ExtResource("1_yekoi") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o58sa"] +atlas = ExtResource("1_yekoi") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dskd0"] +atlas = ExtResource("1_yekoi") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jic1"] +atlas = ExtResource("1_yekoi") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2odg"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ei6y"] +atlas = ExtResource("1_yekoi") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcaag"] +atlas = ExtResource("1_yekoi") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2dfr"] +atlas = ExtResource("1_yekoi") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dutnu"] +atlas = ExtResource("1_yekoi") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y64hh"] +atlas = ExtResource("1_yekoi") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hog2u"] +atlas = ExtResource("1_yekoi") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6exj"] +atlas = ExtResource("1_yekoi") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kthrm"] +atlas = ExtResource("1_yekoi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi4rq"] +atlas = ExtResource("1_yekoi") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xffo"] +atlas = ExtResource("1_yekoi") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp7jp"] +atlas = ExtResource("1_yekoi") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q34n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cjog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f67qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lcjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_240ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6t8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk40c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpcbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko3m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6wj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3js0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4hrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq4bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6ktb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgta3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o58sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dskd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jic1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2odg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ei6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcaag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2dfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dutnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y64hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hog2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6exj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kthrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi4rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xffo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp7jp") +}], +"loop": true, +"name": &"crescentspear", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_cyclonemask.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_cyclonemask.tres new file mode 100644 index 0000000..7e94669 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_cyclonemask.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://ut2yxmxb4ojd"] + +[ext_resource type="Texture2D" uid="uid://d005ks7d34ohh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png" id="1_1y2vh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_23tvj"] +atlas = ExtResource("1_1y2vh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88qxy"] +atlas = ExtResource("1_1y2vh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p08v"] +atlas = ExtResource("1_1y2vh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr07f"] +atlas = ExtResource("1_1y2vh") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojeud"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xutb4"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_425dr"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdbqm"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aag0u"] +atlas = ExtResource("1_1y2vh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b1gd"] +atlas = ExtResource("1_1y2vh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgk13"] +atlas = ExtResource("1_1y2vh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qonpk"] +atlas = ExtResource("1_1y2vh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbdfs"] +atlas = ExtResource("1_1y2vh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88mtr"] +atlas = ExtResource("1_1y2vh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ymui"] +atlas = ExtResource("1_1y2vh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg2sv"] +atlas = ExtResource("1_1y2vh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iywm"] +atlas = ExtResource("1_1y2vh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h6tp"] +atlas = ExtResource("1_1y2vh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya53s"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btktm"] +atlas = ExtResource("1_1y2vh") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ybkt"] +atlas = ExtResource("1_1y2vh") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51fy1"] +atlas = ExtResource("1_1y2vh") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7epc7"] +atlas = ExtResource("1_1y2vh") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4sva"] +atlas = ExtResource("1_1y2vh") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jathx"] +atlas = ExtResource("1_1y2vh") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmogr"] +atlas = ExtResource("1_1y2vh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ohun"] +atlas = ExtResource("1_1y2vh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l4fc"] +atlas = ExtResource("1_1y2vh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j846m"] +atlas = ExtResource("1_1y2vh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jtwm"] +atlas = ExtResource("1_1y2vh") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23tvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88qxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p08v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr07f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojeud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xutb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_425dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdbqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aag0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b1gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgk13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qonpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbdfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88mtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ymui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg2sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iywm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h6tp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya53s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btktm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ybkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51fy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7epc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4sva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jathx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmogr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ohun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l4fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j846m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jtwm") +}], +"loop": true, +"name": &"cyclonemask", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_markgorehorn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_markgorehorn.tres new file mode 100644 index 0000000..1ca1c96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_markgorehorn.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cwnlwrv6e4ygm"] + +[ext_resource type="Texture2D" uid="uid://b8ybaodwebyn7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png" id="1_3xb2i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6n82"] +atlas = ExtResource("1_3xb2i") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jloya"] +atlas = ExtResource("1_3xb2i") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg572"] +atlas = ExtResource("1_3xb2i") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdn1v"] +atlas = ExtResource("1_3xb2i") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rydf"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsgft"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep77n"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2onv"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqhwd"] +atlas = ExtResource("1_3xb2i") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf5hg"] +atlas = ExtResource("1_3xb2i") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1emr1"] +atlas = ExtResource("1_3xb2i") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq6ah"] +atlas = ExtResource("1_3xb2i") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1268r"] +atlas = ExtResource("1_3xb2i") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_web4s"] +atlas = ExtResource("1_3xb2i") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lilex"] +atlas = ExtResource("1_3xb2i") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i4w0"] +atlas = ExtResource("1_3xb2i") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6r5m"] +atlas = ExtResource("1_3xb2i") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri4sj"] +atlas = ExtResource("1_3xb2i") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8qgs"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bec2"] +atlas = ExtResource("1_3xb2i") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqqo2"] +atlas = ExtResource("1_3xb2i") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md26e"] +atlas = ExtResource("1_3xb2i") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cy3n"] +atlas = ExtResource("1_3xb2i") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1xyk"] +atlas = ExtResource("1_3xb2i") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m54ds"] +atlas = ExtResource("1_3xb2i") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5soy"] +atlas = ExtResource("1_3xb2i") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lactm"] +atlas = ExtResource("1_3xb2i") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnqmy"] +atlas = ExtResource("1_3xb2i") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv8lw"] +atlas = ExtResource("1_3xb2i") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1x0h"] +atlas = ExtResource("1_3xb2i") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6n82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jloya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg572") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdn1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rydf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsgft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep77n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2onv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqhwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf5hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1emr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq6ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1268r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_web4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lilex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i4w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6r5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri4sj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8qgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqqo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md26e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cy3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1xyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m54ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5soy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lactm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnqmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv8lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1x0h") +}], +"loop": true, +"name": &"markgorehorn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_maskofshadows.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_maskofshadows.tres new file mode 100644 index 0000000..2916d36 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_maskofshadows.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dbv40fcrb1grv"] + +[ext_resource type="Texture2D" uid="uid://b7gfl141tshwd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png" id="1_pb8dv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifr2e"] +atlas = ExtResource("1_pb8dv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukgc1"] +atlas = ExtResource("1_pb8dv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_narax"] +atlas = ExtResource("1_pb8dv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dylky"] +atlas = ExtResource("1_pb8dv") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tgi0"] +atlas = ExtResource("1_pb8dv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ynf"] +atlas = ExtResource("1_pb8dv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkpuo"] +atlas = ExtResource("1_pb8dv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngke"] +atlas = ExtResource("1_pb8dv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag5db"] +atlas = ExtResource("1_pb8dv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sirq"] +atlas = ExtResource("1_pb8dv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li8jt"] +atlas = ExtResource("1_pb8dv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20gfv"] +atlas = ExtResource("1_pb8dv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsvmk"] +atlas = ExtResource("1_pb8dv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klhma"] +atlas = ExtResource("1_pb8dv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhhxg"] +atlas = ExtResource("1_pb8dv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebl2b"] +atlas = ExtResource("1_pb8dv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lj5n"] +atlas = ExtResource("1_pb8dv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6ph2"] +atlas = ExtResource("1_pb8dv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqmi8"] +atlas = ExtResource("1_pb8dv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu1kn"] +atlas = ExtResource("1_pb8dv") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qxym"] +atlas = ExtResource("1_pb8dv") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnpy1"] +atlas = ExtResource("1_pb8dv") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh32a"] +atlas = ExtResource("1_pb8dv") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2boi"] +atlas = ExtResource("1_pb8dv") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi1ab"] +atlas = ExtResource("1_pb8dv") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bns0"] +atlas = ExtResource("1_pb8dv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og7yv"] +atlas = ExtResource("1_pb8dv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roomp"] +atlas = ExtResource("1_pb8dv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmls6"] +atlas = ExtResource("1_pb8dv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnbrj"] +atlas = ExtResource("1_pb8dv") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifr2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukgc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_narax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dylky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tgi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ynf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkpuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag5db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sirq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li8jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20gfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsvmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klhma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhhxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebl2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lj5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6ph2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqmi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu1kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qxym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnpy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh32a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2boi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi1ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bns0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og7yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roomp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmls6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnbrj") +}], +"loop": true, +"name": &"maskofshadows", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_spellfan.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_spellfan.tres new file mode 100644 index 0000000..ed9913a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_spellfan.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cm1yd4str7v4i"] + +[ext_resource type="Texture2D" uid="uid://dg8ue2bd5ain8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png" id="1_l6rxp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jdgw"] +atlas = ExtResource("1_l6rxp") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wjsi"] +atlas = ExtResource("1_l6rxp") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j828i"] +atlas = ExtResource("1_l6rxp") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bee7t"] +atlas = ExtResource("1_l6rxp") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0dc6"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg0u5"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_741yy"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0unxw"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01808"] +atlas = ExtResource("1_l6rxp") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5r5w"] +atlas = ExtResource("1_l6rxp") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mgto"] +atlas = ExtResource("1_l6rxp") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3302u"] +atlas = ExtResource("1_l6rxp") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8dh5"] +atlas = ExtResource("1_l6rxp") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abo7s"] +atlas = ExtResource("1_l6rxp") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tii8"] +atlas = ExtResource("1_l6rxp") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g34g"] +atlas = ExtResource("1_l6rxp") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrxh6"] +atlas = ExtResource("1_l6rxp") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jkye"] +atlas = ExtResource("1_l6rxp") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krhk6"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfihx"] +atlas = ExtResource("1_l6rxp") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utxpu"] +atlas = ExtResource("1_l6rxp") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc5st"] +atlas = ExtResource("1_l6rxp") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek411"] +atlas = ExtResource("1_l6rxp") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5lgn"] +atlas = ExtResource("1_l6rxp") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnvco"] +atlas = ExtResource("1_l6rxp") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da0ft"] +atlas = ExtResource("1_l6rxp") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21bw7"] +atlas = ExtResource("1_l6rxp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uqxp"] +atlas = ExtResource("1_l6rxp") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gibh"] +atlas = ExtResource("1_l6rxp") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmhc2"] +atlas = ExtResource("1_l6rxp") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jdgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wjsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j828i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bee7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0dc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg0u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_741yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0unxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01808") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5r5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mgto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3302u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8dh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abo7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g34g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrxh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jkye") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_krhk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfihx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utxpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc5st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek411") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5lgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnvco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da0ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21bw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uqxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gibh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmhc2") +}], +"loop": true, +"name": &"spellfan", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_unboundedenergyamulet.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_unboundedenergyamulet.tres new file mode 100644 index 0000000..b40d701 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f2_unboundedenergyamulet.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://k2kaojf4iwwt"] + +[ext_resource type="Texture2D" uid="uid://doleq1mekca54" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png" id="1_r6gtf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujqvt"] +atlas = ExtResource("1_r6gtf") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2t5l"] +atlas = ExtResource("1_r6gtf") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0hck"] +atlas = ExtResource("1_r6gtf") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kokrq"] +atlas = ExtResource("1_r6gtf") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dob2k"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxfbr"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8g8x"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nj3k"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgqiw"] +atlas = ExtResource("1_r6gtf") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buuok"] +atlas = ExtResource("1_r6gtf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg7jq"] +atlas = ExtResource("1_r6gtf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnlab"] +atlas = ExtResource("1_r6gtf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu4ka"] +atlas = ExtResource("1_r6gtf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qov2i"] +atlas = ExtResource("1_r6gtf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uitlk"] +atlas = ExtResource("1_r6gtf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tjis"] +atlas = ExtResource("1_r6gtf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ivsw"] +atlas = ExtResource("1_r6gtf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyqrj"] +atlas = ExtResource("1_r6gtf") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quco5"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cssf"] +atlas = ExtResource("1_r6gtf") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rkeb"] +atlas = ExtResource("1_r6gtf") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uje2x"] +atlas = ExtResource("1_r6gtf") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmieu"] +atlas = ExtResource("1_r6gtf") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edths"] +atlas = ExtResource("1_r6gtf") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xokgu"] +atlas = ExtResource("1_r6gtf") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h30sp"] +atlas = ExtResource("1_r6gtf") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8bx3"] +atlas = ExtResource("1_r6gtf") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dymi4"] +atlas = ExtResource("1_r6gtf") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te4fx"] +atlas = ExtResource("1_r6gtf") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eryre"] +atlas = ExtResource("1_r6gtf") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujqvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2t5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0hck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kokrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dob2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxfbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8g8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nj3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgqiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buuok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg7jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnlab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu4ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qov2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uitlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tjis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ivsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyqrj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_quco5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cssf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rkeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uje2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmieu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edths") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xokgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h30sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8bx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dymi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te4fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eryre") +}], +"loop": true, +"name": &"unboundedenergyamulet", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_hexblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_hexblade.tres new file mode 100644 index 0000000..c0e79b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_hexblade.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dneiqq2bi82oa"] + +[ext_resource type="Texture2D" uid="uid://c44tmi42p6gps" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png" id="1_fykro"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbmd4"] +atlas = ExtResource("1_fykro") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36p2u"] +atlas = ExtResource("1_fykro") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uae1m"] +atlas = ExtResource("1_fykro") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy0or"] +atlas = ExtResource("1_fykro") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7grg"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fnv7"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fimd4"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2aun"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej65x"] +atlas = ExtResource("1_fykro") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvu4n"] +atlas = ExtResource("1_fykro") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd0rv"] +atlas = ExtResource("1_fykro") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob3dv"] +atlas = ExtResource("1_fykro") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwosc"] +atlas = ExtResource("1_fykro") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lndr"] +atlas = ExtResource("1_fykro") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux5cj"] +atlas = ExtResource("1_fykro") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okdxt"] +atlas = ExtResource("1_fykro") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3yhd"] +atlas = ExtResource("1_fykro") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qslug"] +atlas = ExtResource("1_fykro") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsm8f"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhdib"] +atlas = ExtResource("1_fykro") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj5uy"] +atlas = ExtResource("1_fykro") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7yju"] +atlas = ExtResource("1_fykro") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esco4"] +atlas = ExtResource("1_fykro") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3xjg"] +atlas = ExtResource("1_fykro") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3p5m"] +atlas = ExtResource("1_fykro") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_607qa"] +atlas = ExtResource("1_fykro") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n3rc"] +atlas = ExtResource("1_fykro") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82l5e"] +atlas = ExtResource("1_fykro") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pufrw"] +atlas = ExtResource("1_fykro") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73e60"] +atlas = ExtResource("1_fykro") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbmd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36p2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uae1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy0or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7grg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fnv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fimd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2aun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej65x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvu4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd0rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob3dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwosc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lndr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux5cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okdxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3yhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qslug") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsm8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhdib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj5uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7yju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esco4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3xjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3p5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_607qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n3rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82l5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pufrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73e60") +}], +"loop": true, +"name": &"hexblade", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_repairstaff.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_repairstaff.tres new file mode 100644 index 0000000..6f54c5c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_repairstaff.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://di8s520o4x1u"] + +[ext_resource type="Texture2D" uid="uid://ckuxqaosm3jaw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png" id="1_d14c6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxt42"] +atlas = ExtResource("1_d14c6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy443"] +atlas = ExtResource("1_d14c6") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm8ew"] +atlas = ExtResource("1_d14c6") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hffii"] +atlas = ExtResource("1_d14c6") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baty6"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_762ir"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g2qt"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_henpr"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yd85"] +atlas = ExtResource("1_d14c6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45x6h"] +atlas = ExtResource("1_d14c6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2x65"] +atlas = ExtResource("1_d14c6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih0q4"] +atlas = ExtResource("1_d14c6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkblo"] +atlas = ExtResource("1_d14c6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10yfn"] +atlas = ExtResource("1_d14c6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkwjf"] +atlas = ExtResource("1_d14c6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdjgm"] +atlas = ExtResource("1_d14c6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjgy0"] +atlas = ExtResource("1_d14c6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncbln"] +atlas = ExtResource("1_d14c6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxkef"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73m5w"] +atlas = ExtResource("1_d14c6") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoaov"] +atlas = ExtResource("1_d14c6") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1miy"] +atlas = ExtResource("1_d14c6") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jrim"] +atlas = ExtResource("1_d14c6") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4tut"] +atlas = ExtResource("1_d14c6") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6pqh"] +atlas = ExtResource("1_d14c6") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eon5f"] +atlas = ExtResource("1_d14c6") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b52ti"] +atlas = ExtResource("1_d14c6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hj5n"] +atlas = ExtResource("1_d14c6") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6g0s"] +atlas = ExtResource("1_d14c6") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kl2p"] +atlas = ExtResource("1_d14c6") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxt42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy443") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm8ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hffii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baty6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_762ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g2qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_henpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yd85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45x6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2x65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih0q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkblo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10yfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkwjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdjgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjgy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncbln") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxkef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73m5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoaov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1miy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jrim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4tut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6pqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eon5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b52ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hj5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6g0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kl2p") +}], +"loop": true, +"name": &"repairstaff", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sajjreredemption.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sajjreredemption.tres new file mode 100644 index 0000000..adbb3ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sajjreredemption.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://b127v3ykucmnl"] + +[ext_resource type="Texture2D" uid="uid://c1dxby2ihqypu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png" id="1_iu0kx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nruxp"] +atlas = ExtResource("1_iu0kx") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l74w"] +atlas = ExtResource("1_iu0kx") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xli3b"] +atlas = ExtResource("1_iu0kx") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euxyo"] +atlas = ExtResource("1_iu0kx") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pwxa"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ljsd"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwceo"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_visrt"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wqgf"] +atlas = ExtResource("1_iu0kx") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tghry"] +atlas = ExtResource("1_iu0kx") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5obph"] +atlas = ExtResource("1_iu0kx") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13ist"] +atlas = ExtResource("1_iu0kx") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dudmk"] +atlas = ExtResource("1_iu0kx") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp1od"] +atlas = ExtResource("1_iu0kx") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0bq6"] +atlas = ExtResource("1_iu0kx") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74elm"] +atlas = ExtResource("1_iu0kx") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrm7"] +atlas = ExtResource("1_iu0kx") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvjrl"] +atlas = ExtResource("1_iu0kx") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6eod"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naqoj"] +atlas = ExtResource("1_iu0kx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgmc8"] +atlas = ExtResource("1_iu0kx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unlg6"] +atlas = ExtResource("1_iu0kx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlkuq"] +atlas = ExtResource("1_iu0kx") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tghqj"] +atlas = ExtResource("1_iu0kx") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rh5q"] +atlas = ExtResource("1_iu0kx") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb1me"] +atlas = ExtResource("1_iu0kx") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlov7"] +atlas = ExtResource("1_iu0kx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h65a"] +atlas = ExtResource("1_iu0kx") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u26u"] +atlas = ExtResource("1_iu0kx") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qfqd"] +atlas = ExtResource("1_iu0kx") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nruxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l74w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xli3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euxyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pwxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ljsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwceo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_visrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wqgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tghry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5obph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13ist") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dudmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp1od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0bq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74elm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekrm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvjrl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6eod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naqoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgmc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unlg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlkuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tghqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rh5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb1me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlov7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h65a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u26u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qfqd") +}], +"loop": true, +"name": &"sajjreredemption", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sandscepter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sandscepter.tres new file mode 100644 index 0000000..c3da71a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_sandscepter.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dys5h2ja21tl8"] + +[ext_resource type="Texture2D" uid="uid://lk2b30pdrtpd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png" id="1_gneph"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtytx"] +atlas = ExtResource("1_gneph") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x28v8"] +atlas = ExtResource("1_gneph") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm2qm"] +atlas = ExtResource("1_gneph") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u58o"] +atlas = ExtResource("1_gneph") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqi4r"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6tx7"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1mpk"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2iv0"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckw0c"] +atlas = ExtResource("1_gneph") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xxwv"] +atlas = ExtResource("1_gneph") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wobnh"] +atlas = ExtResource("1_gneph") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8o0y"] +atlas = ExtResource("1_gneph") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ajg2"] +atlas = ExtResource("1_gneph") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0om2"] +atlas = ExtResource("1_gneph") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imok7"] +atlas = ExtResource("1_gneph") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_231kc"] +atlas = ExtResource("1_gneph") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sqtx"] +atlas = ExtResource("1_gneph") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcw6h"] +atlas = ExtResource("1_gneph") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24nkv"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig41w"] +atlas = ExtResource("1_gneph") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlsft"] +atlas = ExtResource("1_gneph") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxyuf"] +atlas = ExtResource("1_gneph") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysvpo"] +atlas = ExtResource("1_gneph") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qg73"] +atlas = ExtResource("1_gneph") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnk3x"] +atlas = ExtResource("1_gneph") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8me6"] +atlas = ExtResource("1_gneph") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sefax"] +atlas = ExtResource("1_gneph") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij3sb"] +atlas = ExtResource("1_gneph") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4gfa"] +atlas = ExtResource("1_gneph") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku0gi"] +atlas = ExtResource("1_gneph") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtytx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x28v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm2qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u58o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqi4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6tx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1mpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2iv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckw0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xxwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wobnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8o0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ajg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0om2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imok7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_231kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sqtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcw6h") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24nkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig41w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlsft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxyuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysvpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qg73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnk3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8me6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sefax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij3sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4gfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku0gi") +}], +"loop": true, +"name": &"sandscepter", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_spinecleaver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_spinecleaver.tres new file mode 100644 index 0000000..51e51d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_spinecleaver.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://coain15im6jxv"] + +[ext_resource type="Texture2D" uid="uid://clefujyepiaup" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png" id="1_w7xiy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cubni"] +atlas = ExtResource("1_w7xiy") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtusj"] +atlas = ExtResource("1_w7xiy") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g61ri"] +atlas = ExtResource("1_w7xiy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvjf0"] +atlas = ExtResource("1_w7xiy") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4wlw"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_671ns"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj7fy"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkdqv"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj611"] +atlas = ExtResource("1_w7xiy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehhe4"] +atlas = ExtResource("1_w7xiy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfddy"] +atlas = ExtResource("1_w7xiy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evbsd"] +atlas = ExtResource("1_w7xiy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4flh"] +atlas = ExtResource("1_w7xiy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6tqp"] +atlas = ExtResource("1_w7xiy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sxe6"] +atlas = ExtResource("1_w7xiy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2as1"] +atlas = ExtResource("1_w7xiy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5ven"] +atlas = ExtResource("1_w7xiy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnbke"] +atlas = ExtResource("1_w7xiy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg0so"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7juv8"] +atlas = ExtResource("1_w7xiy") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6ylt"] +atlas = ExtResource("1_w7xiy") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v78ba"] +atlas = ExtResource("1_w7xiy") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8by5q"] +atlas = ExtResource("1_w7xiy") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_724up"] +atlas = ExtResource("1_w7xiy") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1rvm"] +atlas = ExtResource("1_w7xiy") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4p1h"] +atlas = ExtResource("1_w7xiy") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux2ui"] +atlas = ExtResource("1_w7xiy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_835om"] +atlas = ExtResource("1_w7xiy") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7it0"] +atlas = ExtResource("1_w7xiy") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3uxd"] +atlas = ExtResource("1_w7xiy") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cubni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtusj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g61ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvjf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4wlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_671ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj7fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkdqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj611") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehhe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfddy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evbsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4flh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6tqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sxe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2as1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5ven") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnbke") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg0so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7juv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6ylt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v78ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8by5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_724up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1rvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4p1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux2ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_835om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7it0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3uxd") +}], +"loop": true, +"name": &"spinecleaver", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_staffofykir.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_staffofykir.tres new file mode 100644 index 0000000..a98e84f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_staffofykir.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://byicaq3ji4ud1"] + +[ext_resource type="Texture2D" uid="uid://cddhhql4wf2pm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png" id="1_xmly1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiq6y"] +atlas = ExtResource("1_xmly1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b84mb"] +atlas = ExtResource("1_xmly1") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugxgv"] +atlas = ExtResource("1_xmly1") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gauij"] +atlas = ExtResource("1_xmly1") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvscq"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs5qi"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnkqc"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvkdo"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ynt"] +atlas = ExtResource("1_xmly1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_077mn"] +atlas = ExtResource("1_xmly1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k3cy"] +atlas = ExtResource("1_xmly1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnhgd"] +atlas = ExtResource("1_xmly1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3huw"] +atlas = ExtResource("1_xmly1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf67v"] +atlas = ExtResource("1_xmly1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcuyg"] +atlas = ExtResource("1_xmly1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p58wm"] +atlas = ExtResource("1_xmly1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7rwf"] +atlas = ExtResource("1_xmly1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsddo"] +atlas = ExtResource("1_xmly1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwf3d"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27q4w"] +atlas = ExtResource("1_xmly1") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3waol"] +atlas = ExtResource("1_xmly1") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhpm0"] +atlas = ExtResource("1_xmly1") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sh7b"] +atlas = ExtResource("1_xmly1") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7qil"] +atlas = ExtResource("1_xmly1") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11dju"] +atlas = ExtResource("1_xmly1") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo5ni"] +atlas = ExtResource("1_xmly1") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k8ud"] +atlas = ExtResource("1_xmly1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hatdg"] +atlas = ExtResource("1_xmly1") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlv62"] +atlas = ExtResource("1_xmly1") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlt8a"] +atlas = ExtResource("1_xmly1") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiq6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b84mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugxgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gauij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvscq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs5qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnkqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvkdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ynt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_077mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k3cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnhgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3huw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf67v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcuyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p58wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7rwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsddo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwf3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27q4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3waol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhpm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sh7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7qil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11dju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo5ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k8ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hatdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlv62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlt8a") +}], +"loop": true, +"name": &"staffofykir", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_thunderclap.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_thunderclap.tres new file mode 100644 index 0000000..4c28282 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_thunderclap.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dr1is1ihormmm"] + +[ext_resource type="Texture2D" uid="uid://ccukc0edkomnw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png" id="1_15aba"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu350"] +atlas = ExtResource("1_15aba") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xj2p"] +atlas = ExtResource("1_15aba") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf0o7"] +atlas = ExtResource("1_15aba") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7du3j"] +atlas = ExtResource("1_15aba") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3rph"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_api5h"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjiow"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clny8"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q30b"] +atlas = ExtResource("1_15aba") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3prm"] +atlas = ExtResource("1_15aba") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbwqk"] +atlas = ExtResource("1_15aba") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4yyv"] +atlas = ExtResource("1_15aba") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol31k"] +atlas = ExtResource("1_15aba") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyu25"] +atlas = ExtResource("1_15aba") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7t3i"] +atlas = ExtResource("1_15aba") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62651"] +atlas = ExtResource("1_15aba") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egl1h"] +atlas = ExtResource("1_15aba") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wots3"] +atlas = ExtResource("1_15aba") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mtdy"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m02uo"] +atlas = ExtResource("1_15aba") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2fuu"] +atlas = ExtResource("1_15aba") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uanyx"] +atlas = ExtResource("1_15aba") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jqlu"] +atlas = ExtResource("1_15aba") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18280"] +atlas = ExtResource("1_15aba") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oki8"] +atlas = ExtResource("1_15aba") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51a3m"] +atlas = ExtResource("1_15aba") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcypr"] +atlas = ExtResource("1_15aba") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i6bm"] +atlas = ExtResource("1_15aba") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wg22"] +atlas = ExtResource("1_15aba") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qb10"] +atlas = ExtResource("1_15aba") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu350") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xj2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf0o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7du3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3rph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_api5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjiow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clny8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q30b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3prm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbwqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4yyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol31k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyu25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7t3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62651") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egl1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wots3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mtdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m02uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2fuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uanyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jqlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18280") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oki8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51a3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcypr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i6bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wg22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qb10") +}], +"loop": true, +"name": &"thunderclap", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_wildfireankh.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_wildfireankh.tres new file mode 100644 index 0000000..e760a97 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f3_wildfireankh.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bpmrwojjxnt0q"] + +[ext_resource type="Texture2D" uid="uid://bok86urev84qm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png" id="1_ne6va"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iua5y"] +atlas = ExtResource("1_ne6va") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfkn3"] +atlas = ExtResource("1_ne6va") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miq3p"] +atlas = ExtResource("1_ne6va") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq08h"] +atlas = ExtResource("1_ne6va") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g71b"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on45e"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24pba"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vy8t"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctrly"] +atlas = ExtResource("1_ne6va") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu3fo"] +atlas = ExtResource("1_ne6va") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngjg5"] +atlas = ExtResource("1_ne6va") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk2pl"] +atlas = ExtResource("1_ne6va") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3f7j"] +atlas = ExtResource("1_ne6va") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7lme"] +atlas = ExtResource("1_ne6va") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0cx7"] +atlas = ExtResource("1_ne6va") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e02d"] +atlas = ExtResource("1_ne6va") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62w7f"] +atlas = ExtResource("1_ne6va") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx5wn"] +atlas = ExtResource("1_ne6va") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ahq4"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okxe8"] +atlas = ExtResource("1_ne6va") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ackyk"] +atlas = ExtResource("1_ne6va") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07otm"] +atlas = ExtResource("1_ne6va") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjjb4"] +atlas = ExtResource("1_ne6va") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubhvh"] +atlas = ExtResource("1_ne6va") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt1n7"] +atlas = ExtResource("1_ne6va") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5kd4"] +atlas = ExtResource("1_ne6va") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mqws"] +atlas = ExtResource("1_ne6va") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k56nq"] +atlas = ExtResource("1_ne6va") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv4ox"] +atlas = ExtResource("1_ne6va") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x12mn"] +atlas = ExtResource("1_ne6va") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iua5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfkn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miq3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq08h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g71b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on45e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24pba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vy8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctrly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu3fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngjg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk2pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3f7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7lme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0cx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e02d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62w7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx5wn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ahq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okxe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ackyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07otm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjjb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubhvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt1n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5kd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mqws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k56nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv4ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x12mn") +}], +"loop": true, +"name": &"wildfireankh", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_darkstonering.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_darkstonering.tres new file mode 100644 index 0000000..dc15427 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_darkstonering.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://7bm8ip548tsx"] + +[ext_resource type="Texture2D" uid="uid://dkeskamoa24lr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png" id="1_k5osd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlk8s"] +atlas = ExtResource("1_k5osd") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si0um"] +atlas = ExtResource("1_k5osd") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj3la"] +atlas = ExtResource("1_k5osd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yglxk"] +atlas = ExtResource("1_k5osd") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as5m4"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yfjm"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8rah"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrmxb"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cymg6"] +atlas = ExtResource("1_k5osd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4ahg"] +atlas = ExtResource("1_k5osd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sowtx"] +atlas = ExtResource("1_k5osd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvu2k"] +atlas = ExtResource("1_k5osd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjbof"] +atlas = ExtResource("1_k5osd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7jrg"] +atlas = ExtResource("1_k5osd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7jo6"] +atlas = ExtResource("1_k5osd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peql4"] +atlas = ExtResource("1_k5osd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1opv0"] +atlas = ExtResource("1_k5osd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1542y"] +atlas = ExtResource("1_k5osd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm6sj"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl473"] +atlas = ExtResource("1_k5osd") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mekae"] +atlas = ExtResource("1_k5osd") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_072ry"] +atlas = ExtResource("1_k5osd") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy0yd"] +atlas = ExtResource("1_k5osd") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa8d6"] +atlas = ExtResource("1_k5osd") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpv7i"] +atlas = ExtResource("1_k5osd") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv6on"] +atlas = ExtResource("1_k5osd") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5ays"] +atlas = ExtResource("1_k5osd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7lj5"] +atlas = ExtResource("1_k5osd") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gye2"] +atlas = ExtResource("1_k5osd") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjkhe"] +atlas = ExtResource("1_k5osd") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlk8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si0um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj3la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yglxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as5m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yfjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8rah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrmxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cymg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4ahg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sowtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvu2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjbof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7jrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7jo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peql4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1opv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1542y") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm6sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl473") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mekae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_072ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy0yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa8d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpv7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv6on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5ays") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7lj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gye2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjkhe") +}], +"loop": true, +"name": &"darkstonering", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ghostazalea.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ghostazalea.tres new file mode 100644 index 0000000..911ba37 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ghostazalea.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://d11oepaj8kn4t"] + +[ext_resource type="Texture2D" uid="uid://wc5c8l7kpn8g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png" id="1_8upyi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6oik"] +atlas = ExtResource("1_8upyi") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28mfd"] +atlas = ExtResource("1_8upyi") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfn3u"] +atlas = ExtResource("1_8upyi") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj3bw"] +atlas = ExtResource("1_8upyi") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lrjp"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvypw"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kb3e"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3iw7"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4otj"] +atlas = ExtResource("1_8upyi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lncl"] +atlas = ExtResource("1_8upyi") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8olvq"] +atlas = ExtResource("1_8upyi") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av7y3"] +atlas = ExtResource("1_8upyi") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwpj1"] +atlas = ExtResource("1_8upyi") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrrbj"] +atlas = ExtResource("1_8upyi") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44x4e"] +atlas = ExtResource("1_8upyi") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmnx0"] +atlas = ExtResource("1_8upyi") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6alw"] +atlas = ExtResource("1_8upyi") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wr17"] +atlas = ExtResource("1_8upyi") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tb22"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxtag"] +atlas = ExtResource("1_8upyi") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24sfo"] +atlas = ExtResource("1_8upyi") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0vhr"] +atlas = ExtResource("1_8upyi") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrqx3"] +atlas = ExtResource("1_8upyi") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtkay"] +atlas = ExtResource("1_8upyi") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irxnb"] +atlas = ExtResource("1_8upyi") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mhhp"] +atlas = ExtResource("1_8upyi") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd6xy"] +atlas = ExtResource("1_8upyi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgw63"] +atlas = ExtResource("1_8upyi") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md7c5"] +atlas = ExtResource("1_8upyi") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq7df"] +atlas = ExtResource("1_8upyi") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6oik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28mfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfn3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj3bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lrjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvypw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kb3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3iw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4otj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lncl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8olvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av7y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwpj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrrbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44x4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmnx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6alw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wr17") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tb22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxtag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24sfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0vhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrqx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtkay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irxnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mhhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd6xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgw63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md7c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq7df") +}], +"loop": true, +"name": &"ghostazalea", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_heartborrower.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_heartborrower.tres new file mode 100644 index 0000000..eb815df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_heartborrower.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://done73swepd2u"] + +[ext_resource type="Texture2D" uid="uid://ckggnto42suwo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png" id="1_oahhw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1lho"] +atlas = ExtResource("1_oahhw") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb2bw"] +atlas = ExtResource("1_oahhw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gogof"] +atlas = ExtResource("1_oahhw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4kwy"] +atlas = ExtResource("1_oahhw") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yf68"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awlqe"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw1eo"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm42k"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abyp8"] +atlas = ExtResource("1_oahhw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y72qe"] +atlas = ExtResource("1_oahhw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8w7f"] +atlas = ExtResource("1_oahhw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52vju"] +atlas = ExtResource("1_oahhw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv146"] +atlas = ExtResource("1_oahhw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63yn1"] +atlas = ExtResource("1_oahhw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi3lh"] +atlas = ExtResource("1_oahhw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py0rg"] +atlas = ExtResource("1_oahhw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogxjw"] +atlas = ExtResource("1_oahhw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yxts"] +atlas = ExtResource("1_oahhw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl3am"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cpna"] +atlas = ExtResource("1_oahhw") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ay22"] +atlas = ExtResource("1_oahhw") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8koav"] +atlas = ExtResource("1_oahhw") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iafkt"] +atlas = ExtResource("1_oahhw") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaibf"] +atlas = ExtResource("1_oahhw") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt3wo"] +atlas = ExtResource("1_oahhw") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s88j"] +atlas = ExtResource("1_oahhw") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4etwh"] +atlas = ExtResource("1_oahhw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8qbh"] +atlas = ExtResource("1_oahhw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgw7v"] +atlas = ExtResource("1_oahhw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifnya"] +atlas = ExtResource("1_oahhw") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1lho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb2bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gogof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4kwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yf68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awlqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw1eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm42k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abyp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y72qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8w7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52vju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv146") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63yn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi3lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py0rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogxjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yxts") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl3am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cpna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ay22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8koav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iafkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaibf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s88j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4etwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8qbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgw7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifnya") +}], +"loop": true, +"name": &"heartborrower", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_hornofforsaken.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_hornofforsaken.tres new file mode 100644 index 0000000..a08922c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_hornofforsaken.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c3bm7c2paigeg"] + +[ext_resource type="Texture2D" uid="uid://bdjq8bj4mbygy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png" id="1_v0nka"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k51ha"] +atlas = ExtResource("1_v0nka") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8uw7"] +atlas = ExtResource("1_v0nka") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53tbj"] +atlas = ExtResource("1_v0nka") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvp1i"] +atlas = ExtResource("1_v0nka") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdmvx"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agybe"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4iff"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x035"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urih8"] +atlas = ExtResource("1_v0nka") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h0gp"] +atlas = ExtResource("1_v0nka") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r5db"] +atlas = ExtResource("1_v0nka") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ail"] +atlas = ExtResource("1_v0nka") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frayn"] +atlas = ExtResource("1_v0nka") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xdt"] +atlas = ExtResource("1_v0nka") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfllo"] +atlas = ExtResource("1_v0nka") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcgf6"] +atlas = ExtResource("1_v0nka") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow7jm"] +atlas = ExtResource("1_v0nka") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6fd3"] +atlas = ExtResource("1_v0nka") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwxhp"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq7l6"] +atlas = ExtResource("1_v0nka") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agq28"] +atlas = ExtResource("1_v0nka") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3eq8"] +atlas = ExtResource("1_v0nka") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0mfs"] +atlas = ExtResource("1_v0nka") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wds6a"] +atlas = ExtResource("1_v0nka") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myn04"] +atlas = ExtResource("1_v0nka") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxmkd"] +atlas = ExtResource("1_v0nka") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3yig"] +atlas = ExtResource("1_v0nka") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p75a6"] +atlas = ExtResource("1_v0nka") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tegqw"] +atlas = ExtResource("1_v0nka") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwaex"] +atlas = ExtResource("1_v0nka") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k51ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8uw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53tbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvp1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdmvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agybe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4iff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x035") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urih8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h0gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r5db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ail") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frayn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfllo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcgf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow7jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6fd3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwxhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq7l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agq28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3eq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0mfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wds6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myn04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxmkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3yig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p75a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tegqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwaex") +}], +"loop": true, +"name": &"hornofforsaken", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ragechackram.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ragechackram.tres new file mode 100644 index 0000000..446bd66 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_ragechackram.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cb618m8iw23bj"] + +[ext_resource type="Texture2D" uid="uid://dajdhjx7o30o3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png" id="1_achq8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw50p"] +atlas = ExtResource("1_achq8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_736fr"] +atlas = ExtResource("1_achq8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ru17"] +atlas = ExtResource("1_achq8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdahx"] +atlas = ExtResource("1_achq8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2jua"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bg4v"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txect"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlolg"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4csdu"] +atlas = ExtResource("1_achq8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp7e3"] +atlas = ExtResource("1_achq8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2xn8"] +atlas = ExtResource("1_achq8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8fre"] +atlas = ExtResource("1_achq8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfamp"] +atlas = ExtResource("1_achq8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlp54"] +atlas = ExtResource("1_achq8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvlol"] +atlas = ExtResource("1_achq8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqlbj"] +atlas = ExtResource("1_achq8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbm1f"] +atlas = ExtResource("1_achq8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1snxf"] +atlas = ExtResource("1_achq8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86fxk"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub53i"] +atlas = ExtResource("1_achq8") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b02si"] +atlas = ExtResource("1_achq8") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osqnh"] +atlas = ExtResource("1_achq8") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqhey"] +atlas = ExtResource("1_achq8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heb3g"] +atlas = ExtResource("1_achq8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht3ee"] +atlas = ExtResource("1_achq8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm0yk"] +atlas = ExtResource("1_achq8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqbog"] +atlas = ExtResource("1_achq8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk7j0"] +atlas = ExtResource("1_achq8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy04k"] +atlas = ExtResource("1_achq8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4yj0"] +atlas = ExtResource("1_achq8") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw50p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_736fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ru17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdahx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2jua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bg4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txect") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlolg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4csdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp7e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2xn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8fre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfamp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlp54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvlol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqlbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbm1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1snxf") +}], +"loop": true, +"name": &"1", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_86fxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub53i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b02si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osqnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqhey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heb3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht3ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm0yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqbog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk7j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy04k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4yj0") +}], +"loop": true, +"name": &"ragechackram", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_soulgrimwar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_soulgrimwar.tres new file mode 100644 index 0000000..0d89ebd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_soulgrimwar.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://tn8vrmyvbq2"] + +[ext_resource type="Texture2D" uid="uid://cugd2r6eyb721" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png" id="1_uavwo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5pyq"] +atlas = ExtResource("1_uavwo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djiku"] +atlas = ExtResource("1_uavwo") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im38m"] +atlas = ExtResource("1_uavwo") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meukh"] +atlas = ExtResource("1_uavwo") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va3af"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3tt0"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icf83"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_231fc"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qxkk"] +atlas = ExtResource("1_uavwo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pheae"] +atlas = ExtResource("1_uavwo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoakc"] +atlas = ExtResource("1_uavwo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qleub"] +atlas = ExtResource("1_uavwo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxp21"] +atlas = ExtResource("1_uavwo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjm4a"] +atlas = ExtResource("1_uavwo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgaj"] +atlas = ExtResource("1_uavwo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yfu6"] +atlas = ExtResource("1_uavwo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dvke"] +atlas = ExtResource("1_uavwo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n258c"] +atlas = ExtResource("1_uavwo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px4dh"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vgid"] +atlas = ExtResource("1_uavwo") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uad5a"] +atlas = ExtResource("1_uavwo") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wfud"] +atlas = ExtResource("1_uavwo") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vou80"] +atlas = ExtResource("1_uavwo") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whddd"] +atlas = ExtResource("1_uavwo") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyi3y"] +atlas = ExtResource("1_uavwo") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7yvk"] +atlas = ExtResource("1_uavwo") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6k3c"] +atlas = ExtResource("1_uavwo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vghi2"] +atlas = ExtResource("1_uavwo") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j56k"] +atlas = ExtResource("1_uavwo") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqnme"] +atlas = ExtResource("1_uavwo") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5pyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djiku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im38m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meukh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va3af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3tt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icf83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_231fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qxkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pheae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoakc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qleub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxp21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjm4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yfu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dvke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n258c") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_px4dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vgid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uad5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wfud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vou80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whddd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyi3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7yvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6k3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vghi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j56k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqnme") +}], +"loop": true, +"name": &"soulgrimwar", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_spectralblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_spectralblade.tres new file mode 100644 index 0000000..51f9415 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_spectralblade.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://w756uwocacir"] + +[ext_resource type="Texture2D" uid="uid://xdbcx2c4hxoe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png" id="1_jlbxs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kww8"] +atlas = ExtResource("1_jlbxs") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2owsy"] +atlas = ExtResource("1_jlbxs") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyyck"] +atlas = ExtResource("1_jlbxs") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iumch"] +atlas = ExtResource("1_jlbxs") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k17hn"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_droun"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmoeo"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2c5l"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipox0"] +atlas = ExtResource("1_jlbxs") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wu3a"] +atlas = ExtResource("1_jlbxs") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jli0"] +atlas = ExtResource("1_jlbxs") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hmjs"] +atlas = ExtResource("1_jlbxs") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwyo7"] +atlas = ExtResource("1_jlbxs") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5icw"] +atlas = ExtResource("1_jlbxs") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjsdj"] +atlas = ExtResource("1_jlbxs") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frcnq"] +atlas = ExtResource("1_jlbxs") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuqe2"] +atlas = ExtResource("1_jlbxs") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmrqi"] +atlas = ExtResource("1_jlbxs") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w11w"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s0w3"] +atlas = ExtResource("1_jlbxs") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1dwg"] +atlas = ExtResource("1_jlbxs") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rgl6"] +atlas = ExtResource("1_jlbxs") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c87r6"] +atlas = ExtResource("1_jlbxs") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xq02"] +atlas = ExtResource("1_jlbxs") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ongs"] +atlas = ExtResource("1_jlbxs") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulcb3"] +atlas = ExtResource("1_jlbxs") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov3fc"] +atlas = ExtResource("1_jlbxs") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jww34"] +atlas = ExtResource("1_jlbxs") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gfaw"] +atlas = ExtResource("1_jlbxs") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqjqj"] +atlas = ExtResource("1_jlbxs") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kww8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2owsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyyck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iumch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k17hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_droun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmoeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2c5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipox0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wu3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jli0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hmjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwyo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5icw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjsdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frcnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuqe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmrqi") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w11w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s0w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1dwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rgl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c87r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xq02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ongs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulcb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov3fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jww34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gfaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqjqj") +}], +"loop": true, +"name": &"spectralblade", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_thereleaser.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_thereleaser.tres new file mode 100644 index 0000000..ac85838 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f4_thereleaser.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://b7oac5goty3xr"] + +[ext_resource type="Texture2D" uid="uid://lfyqwn014ksp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png" id="1_60jh2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_814ou"] +atlas = ExtResource("1_60jh2") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y4sf"] +atlas = ExtResource("1_60jh2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e0nf"] +atlas = ExtResource("1_60jh2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipf32"] +atlas = ExtResource("1_60jh2") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuovy"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu2g4"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjnyx"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yknaa"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydrh8"] +atlas = ExtResource("1_60jh2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ad1o"] +atlas = ExtResource("1_60jh2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxpdv"] +atlas = ExtResource("1_60jh2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2o78"] +atlas = ExtResource("1_60jh2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjg88"] +atlas = ExtResource("1_60jh2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2qfa"] +atlas = ExtResource("1_60jh2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4edw1"] +atlas = ExtResource("1_60jh2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmp7q"] +atlas = ExtResource("1_60jh2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sthje"] +atlas = ExtResource("1_60jh2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj83e"] +atlas = ExtResource("1_60jh2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4n8a"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3smg"] +atlas = ExtResource("1_60jh2") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmgua"] +atlas = ExtResource("1_60jh2") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uk3b"] +atlas = ExtResource("1_60jh2") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qjpa"] +atlas = ExtResource("1_60jh2") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm1nu"] +atlas = ExtResource("1_60jh2") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl20t"] +atlas = ExtResource("1_60jh2") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erium"] +atlas = ExtResource("1_60jh2") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyc6b"] +atlas = ExtResource("1_60jh2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a12qp"] +atlas = ExtResource("1_60jh2") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tawpv"] +atlas = ExtResource("1_60jh2") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pxsc"] +atlas = ExtResource("1_60jh2") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_814ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y4sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e0nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipf32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuovy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu2g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjnyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yknaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydrh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ad1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxpdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2o78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjg88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2qfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4edw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmp7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sthje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj83e") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4n8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3smg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmgua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uk3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qjpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm1nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl20t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erium") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyc6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a12qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tawpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pxsc") +}], +"loop": true, +"name": &"thereleaser", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_adamantineclaws.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_adamantineclaws.tres new file mode 100644 index 0000000..c06d237 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_adamantineclaws.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dg4x0mp13p8qj"] + +[ext_resource type="Texture2D" uid="uid://v00ipm7v1se2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png" id="1_yw6pw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iggmf"] +atlas = ExtResource("1_yw6pw") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsso1"] +atlas = ExtResource("1_yw6pw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neih3"] +atlas = ExtResource("1_yw6pw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8qv8"] +atlas = ExtResource("1_yw6pw") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el2y7"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slajh"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b88f"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l2dn"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx02j"] +atlas = ExtResource("1_yw6pw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laoj0"] +atlas = ExtResource("1_yw6pw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3f56"] +atlas = ExtResource("1_yw6pw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvq13"] +atlas = ExtResource("1_yw6pw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bnrf"] +atlas = ExtResource("1_yw6pw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4guqs"] +atlas = ExtResource("1_yw6pw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coa4k"] +atlas = ExtResource("1_yw6pw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xls1x"] +atlas = ExtResource("1_yw6pw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds0wk"] +atlas = ExtResource("1_yw6pw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l46nr"] +atlas = ExtResource("1_yw6pw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7irrt"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ur7y"] +atlas = ExtResource("1_yw6pw") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnhgo"] +atlas = ExtResource("1_yw6pw") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1dqi"] +atlas = ExtResource("1_yw6pw") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riltb"] +atlas = ExtResource("1_yw6pw") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16tia"] +atlas = ExtResource("1_yw6pw") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht5yr"] +atlas = ExtResource("1_yw6pw") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6inlx"] +atlas = ExtResource("1_yw6pw") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi3gt"] +atlas = ExtResource("1_yw6pw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br35n"] +atlas = ExtResource("1_yw6pw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_468dq"] +atlas = ExtResource("1_yw6pw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjrbp"] +atlas = ExtResource("1_yw6pw") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iggmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsso1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neih3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8qv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el2y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slajh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b88f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l2dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx02j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laoj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3f56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvq13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bnrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4guqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coa4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xls1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds0wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l46nr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7irrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ur7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnhgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1dqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riltb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16tia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht5yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6inlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi3gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br35n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_468dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjrbp") +}], +"loop": true, +"name": &"adamantineclaws", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eggsoul.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eggsoul.tres new file mode 100644 index 0000000..72492ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eggsoul.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://b42vy28owxaqa"] + +[ext_resource type="Texture2D" uid="uid://bnrib85i27afo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png" id="1_dvqlk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5umsw"] +atlas = ExtResource("1_dvqlk") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmbwh"] +atlas = ExtResource("1_dvqlk") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh6mg"] +atlas = ExtResource("1_dvqlk") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hokb1"] +atlas = ExtResource("1_dvqlk") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uatsc"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb7x4"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwtye"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc3gy"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbs4i"] +atlas = ExtResource("1_dvqlk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3onry"] +atlas = ExtResource("1_dvqlk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahtas"] +atlas = ExtResource("1_dvqlk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ont30"] +atlas = ExtResource("1_dvqlk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7cpr"] +atlas = ExtResource("1_dvqlk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk6l2"] +atlas = ExtResource("1_dvqlk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67qwq"] +atlas = ExtResource("1_dvqlk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f130"] +atlas = ExtResource("1_dvqlk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umn4u"] +atlas = ExtResource("1_dvqlk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akkwe"] +atlas = ExtResource("1_dvqlk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd3nt"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cstvw"] +atlas = ExtResource("1_dvqlk") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbke7"] +atlas = ExtResource("1_dvqlk") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajcgv"] +atlas = ExtResource("1_dvqlk") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwqfh"] +atlas = ExtResource("1_dvqlk") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u4r3"] +atlas = ExtResource("1_dvqlk") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpmcw"] +atlas = ExtResource("1_dvqlk") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5gg2"] +atlas = ExtResource("1_dvqlk") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpgna"] +atlas = ExtResource("1_dvqlk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bc5q"] +atlas = ExtResource("1_dvqlk") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jum5b"] +atlas = ExtResource("1_dvqlk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwiut"] +atlas = ExtResource("1_dvqlk") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5umsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmbwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh6mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hokb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uatsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb7x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwtye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbs4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3onry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahtas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ont30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7cpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk6l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67qwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f130") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umn4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akkwe") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd3nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cstvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbke7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajcgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwqfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u4r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpmcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5gg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpgna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bc5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jum5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwiut") +}], +"loop": true, +"name": &"eggsoul", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eternalheart.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eternalheart.tres new file mode 100644 index 0000000..d456a5d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_eternalheart.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bvryd463wbp2p"] + +[ext_resource type="Texture2D" uid="uid://c00ry60irsyly" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png" id="1_ts4sg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l0aw"] +atlas = ExtResource("1_ts4sg") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6uow"] +atlas = ExtResource("1_ts4sg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4bfg"] +atlas = ExtResource("1_ts4sg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkehp"] +atlas = ExtResource("1_ts4sg") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkoij"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wqny"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4frq"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktw5q"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q30qw"] +atlas = ExtResource("1_ts4sg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7k0n"] +atlas = ExtResource("1_ts4sg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg8k8"] +atlas = ExtResource("1_ts4sg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q217w"] +atlas = ExtResource("1_ts4sg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tygnn"] +atlas = ExtResource("1_ts4sg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c42kj"] +atlas = ExtResource("1_ts4sg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc521"] +atlas = ExtResource("1_ts4sg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi8ta"] +atlas = ExtResource("1_ts4sg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm6jh"] +atlas = ExtResource("1_ts4sg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndxi3"] +atlas = ExtResource("1_ts4sg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jidrb"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_208kj"] +atlas = ExtResource("1_ts4sg") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac2sx"] +atlas = ExtResource("1_ts4sg") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6js5t"] +atlas = ExtResource("1_ts4sg") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ort"] +atlas = ExtResource("1_ts4sg") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbtfe"] +atlas = ExtResource("1_ts4sg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep27i"] +atlas = ExtResource("1_ts4sg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3q1e"] +atlas = ExtResource("1_ts4sg") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2yxf"] +atlas = ExtResource("1_ts4sg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mbxi"] +atlas = ExtResource("1_ts4sg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayi1x"] +atlas = ExtResource("1_ts4sg") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx0ks"] +atlas = ExtResource("1_ts4sg") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l0aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6uow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4bfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkehp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkoij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wqny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4frq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktw5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q30qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7k0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg8k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q217w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tygnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c42kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc521") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi8ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm6jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndxi3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jidrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_208kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac2sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6js5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ort") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbtfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep27i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3q1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2yxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mbxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayi1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx0ks") +}], +"loop": true, +"name": &"eternalheart", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_godhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_godhammer.tres new file mode 100644 index 0000000..43483ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_godhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c16s4l5a3gusw"] + +[ext_resource type="Texture2D" uid="uid://qwfr5khvoimw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png" id="1_x55rm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ktuf"] +atlas = ExtResource("1_x55rm") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxf8k"] +atlas = ExtResource("1_x55rm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogk6k"] +atlas = ExtResource("1_x55rm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2an85"] +atlas = ExtResource("1_x55rm") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p865u"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdrxe"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuy22"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_proxv"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxwu6"] +atlas = ExtResource("1_x55rm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oanaf"] +atlas = ExtResource("1_x55rm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwjim"] +atlas = ExtResource("1_x55rm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tiix"] +atlas = ExtResource("1_x55rm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pffk"] +atlas = ExtResource("1_x55rm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kwdq"] +atlas = ExtResource("1_x55rm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl5wi"] +atlas = ExtResource("1_x55rm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knns4"] +atlas = ExtResource("1_x55rm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73q46"] +atlas = ExtResource("1_x55rm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7joie"] +atlas = ExtResource("1_x55rm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dglm0"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8ru3"] +atlas = ExtResource("1_x55rm") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4q3i"] +atlas = ExtResource("1_x55rm") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpex3"] +atlas = ExtResource("1_x55rm") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gqli"] +atlas = ExtResource("1_x55rm") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rsov"] +atlas = ExtResource("1_x55rm") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k354"] +atlas = ExtResource("1_x55rm") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhec2"] +atlas = ExtResource("1_x55rm") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6p83"] +atlas = ExtResource("1_x55rm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x3gr"] +atlas = ExtResource("1_x55rm") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pono5"] +atlas = ExtResource("1_x55rm") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lunex"] +atlas = ExtResource("1_x55rm") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ktuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxf8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogk6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2an85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p865u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdrxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuy22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_proxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxwu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oanaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwjim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tiix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pffk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kwdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl5wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knns4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73q46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7joie") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dglm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8ru3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4q3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpex3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gqli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rsov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k354") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6p83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x3gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pono5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lunex") +}], +"loop": true, +"name": &"godhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_irridiumscale.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_irridiumscale.tres new file mode 100644 index 0000000..4e31ae3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_irridiumscale.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c73i24lbmxfjk"] + +[ext_resource type="Texture2D" uid="uid://rd5mrwmmi67g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png" id="1_tpsgq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f822u"] +atlas = ExtResource("1_tpsgq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sevvu"] +atlas = ExtResource("1_tpsgq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w55u7"] +atlas = ExtResource("1_tpsgq") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5qsy"] +atlas = ExtResource("1_tpsgq") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_car44"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_605dm"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6wkh"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmdhh"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hgq4"] +atlas = ExtResource("1_tpsgq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5hnp"] +atlas = ExtResource("1_tpsgq") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eovxr"] +atlas = ExtResource("1_tpsgq") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glljs"] +atlas = ExtResource("1_tpsgq") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfn3h"] +atlas = ExtResource("1_tpsgq") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o857p"] +atlas = ExtResource("1_tpsgq") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw38x"] +atlas = ExtResource("1_tpsgq") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mygmv"] +atlas = ExtResource("1_tpsgq") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rha54"] +atlas = ExtResource("1_tpsgq") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8obdu"] +atlas = ExtResource("1_tpsgq") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w41kv"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hywhx"] +atlas = ExtResource("1_tpsgq") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo4bf"] +atlas = ExtResource("1_tpsgq") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ryho"] +atlas = ExtResource("1_tpsgq") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md8g5"] +atlas = ExtResource("1_tpsgq") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks2gi"] +atlas = ExtResource("1_tpsgq") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wbxp"] +atlas = ExtResource("1_tpsgq") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3hdo"] +atlas = ExtResource("1_tpsgq") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak6ck"] +atlas = ExtResource("1_tpsgq") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x5j1"] +atlas = ExtResource("1_tpsgq") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf557"] +atlas = ExtResource("1_tpsgq") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okixv"] +atlas = ExtResource("1_tpsgq") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f822u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sevvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w55u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5qsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_car44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_605dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6wkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmdhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hgq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5hnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eovxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glljs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfn3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o857p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw38x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mygmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rha54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8obdu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w41kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hywhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo4bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ryho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md8g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks2gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wbxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3hdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak6ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x5j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf557") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okixv") +}], +"loop": true, +"name": &"irridiumscale", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_morinkhur.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_morinkhur.tres new file mode 100644 index 0000000..194dce3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_morinkhur.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://ciw11qptbm7e6"] + +[ext_resource type="Texture2D" uid="uid://cj2wawgrx7txj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png" id="1_hla5c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpeut"] +atlas = ExtResource("1_hla5c") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_temuo"] +atlas = ExtResource("1_hla5c") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0dke"] +atlas = ExtResource("1_hla5c") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix8h0"] +atlas = ExtResource("1_hla5c") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi65y"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtiom"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2kdn"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fenib"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpuu5"] +atlas = ExtResource("1_hla5c") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmljy"] +atlas = ExtResource("1_hla5c") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cntsw"] +atlas = ExtResource("1_hla5c") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ifr"] +atlas = ExtResource("1_hla5c") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swmup"] +atlas = ExtResource("1_hla5c") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jghbl"] +atlas = ExtResource("1_hla5c") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62xm3"] +atlas = ExtResource("1_hla5c") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhle4"] +atlas = ExtResource("1_hla5c") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eunu3"] +atlas = ExtResource("1_hla5c") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfp47"] +atlas = ExtResource("1_hla5c") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i7nu"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nshuu"] +atlas = ExtResource("1_hla5c") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm1br"] +atlas = ExtResource("1_hla5c") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pur5"] +atlas = ExtResource("1_hla5c") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diiuv"] +atlas = ExtResource("1_hla5c") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcr35"] +atlas = ExtResource("1_hla5c") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jclaa"] +atlas = ExtResource("1_hla5c") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcoya"] +atlas = ExtResource("1_hla5c") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkq7y"] +atlas = ExtResource("1_hla5c") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eytgj"] +atlas = ExtResource("1_hla5c") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffpy6"] +atlas = ExtResource("1_hla5c") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ms41"] +atlas = ExtResource("1_hla5c") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpeut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_temuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0dke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix8h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi65y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtiom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2kdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fenib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpuu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmljy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cntsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ifr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swmup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jghbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62xm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhle4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eunu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfp47") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i7nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nshuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm1br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pur5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diiuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcr35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jclaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcoya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkq7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eytgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffpy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ms41") +}], +"loop": true, +"name": &"morinkhur", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_thegibblecup.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_thegibblecup.tres new file mode 100644 index 0000000..ce0d7dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_thegibblecup.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c3uycap72aek6"] + +[ext_resource type="Texture2D" uid="uid://v326hejb2sf1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png" id="1_8t0ks"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx3x1"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ur15"] +atlas = ExtResource("1_8t0ks") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w8ei"] +atlas = ExtResource("1_8t0ks") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fm02"] +atlas = ExtResource("1_8t0ks") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5foah"] +atlas = ExtResource("1_8t0ks") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lma6"] +atlas = ExtResource("1_8t0ks") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayaa8"] +atlas = ExtResource("1_8t0ks") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xby0l"] +atlas = ExtResource("1_8t0ks") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0uu8"] +atlas = ExtResource("1_8t0ks") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boa7a"] +atlas = ExtResource("1_8t0ks") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cqij"] +atlas = ExtResource("1_8t0ks") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg5df"] +atlas = ExtResource("1_8t0ks") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wcbr"] +atlas = ExtResource("1_8t0ks") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aycps"] +atlas = ExtResource("1_8t0ks") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpxx8"] +atlas = ExtResource("1_8t0ks") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2to4"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y571a"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71pgh"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs1ta"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywuon"] +atlas = ExtResource("1_8t0ks") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuujp"] +atlas = ExtResource("1_8t0ks") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73q6r"] +atlas = ExtResource("1_8t0ks") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6gwd"] +atlas = ExtResource("1_8t0ks") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3ykb"] +atlas = ExtResource("1_8t0ks") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r4qp"] +atlas = ExtResource("1_8t0ks") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5jp5"] +atlas = ExtResource("1_8t0ks") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of46d"] +atlas = ExtResource("1_8t0ks") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sim3n"] +atlas = ExtResource("1_8t0ks") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07y7h"] +atlas = ExtResource("1_8t0ks") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6osm"] +atlas = ExtResource("1_8t0ks") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx3x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ur15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w8ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fm02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5foah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lma6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayaa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xby0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0uu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boa7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cqij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg5df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wcbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aycps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpxx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2to4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y571a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71pgh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs1ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywuon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuujp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73q6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6gwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3ykb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r4qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5jp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of46d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sim3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07y7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6osm") +}], +"loop": true, +"name": &"thegibblecup", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_twinfang.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_twinfang.tres new file mode 100644 index 0000000..e977cd0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f5_twinfang.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://tn2p0rk7olbp"] + +[ext_resource type="Texture2D" uid="uid://eke1ogdn43kp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png" id="1_axtqt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l6ti"] +atlas = ExtResource("1_axtqt") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh0av"] +atlas = ExtResource("1_axtqt") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31c5j"] +atlas = ExtResource("1_axtqt") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2wrs"] +atlas = ExtResource("1_axtqt") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ypfx"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ro41"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxyrv"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yirp"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsjt0"] +atlas = ExtResource("1_axtqt") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4156m"] +atlas = ExtResource("1_axtqt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl7qe"] +atlas = ExtResource("1_axtqt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0px0"] +atlas = ExtResource("1_axtqt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs03c"] +atlas = ExtResource("1_axtqt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6lh2"] +atlas = ExtResource("1_axtqt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjuud"] +atlas = ExtResource("1_axtqt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqist"] +atlas = ExtResource("1_axtqt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgprq"] +atlas = ExtResource("1_axtqt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ajvp"] +atlas = ExtResource("1_axtqt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctu4l"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j037a"] +atlas = ExtResource("1_axtqt") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxiql"] +atlas = ExtResource("1_axtqt") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxel0"] +atlas = ExtResource("1_axtqt") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3mb7"] +atlas = ExtResource("1_axtqt") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0qf7"] +atlas = ExtResource("1_axtqt") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdr50"] +atlas = ExtResource("1_axtqt") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57n3"] +atlas = ExtResource("1_axtqt") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngak"] +atlas = ExtResource("1_axtqt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5s1d"] +atlas = ExtResource("1_axtqt") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxw2c"] +atlas = ExtResource("1_axtqt") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7b6e"] +atlas = ExtResource("1_axtqt") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l6ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh0av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31c5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2wrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ypfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ro41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxyrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yirp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsjt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4156m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl7qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0px0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs03c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6lh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjuud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqist") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgprq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ajvp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctu4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j037a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxiql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxel0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3mb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0qf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdr50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5s1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxw2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7b6e") +}], +"loop": true, +"name": &"twinfang", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostbiter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostbiter.tres new file mode 100644 index 0000000..1c4dbed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostbiter.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cku6r8t04v15"] + +[ext_resource type="Texture2D" uid="uid://cnp0ao3yvlj5y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png" id="1_gxtn4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iif51"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v01n8"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pha1x"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2ltg"] +atlas = ExtResource("1_gxtn4") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqdig"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axccj"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca5fr"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqyrp"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmj7g"] +atlas = ExtResource("1_gxtn4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks1pm"] +atlas = ExtResource("1_gxtn4") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sijiy"] +atlas = ExtResource("1_gxtn4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1rjr"] +atlas = ExtResource("1_gxtn4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmw85"] +atlas = ExtResource("1_gxtn4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fjjs"] +atlas = ExtResource("1_gxtn4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuoy2"] +atlas = ExtResource("1_gxtn4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmves"] +atlas = ExtResource("1_gxtn4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8bkq"] +atlas = ExtResource("1_gxtn4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iye8s"] +atlas = ExtResource("1_gxtn4") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvcef"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnwe4"] +atlas = ExtResource("1_gxtn4") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq07k"] +atlas = ExtResource("1_gxtn4") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e023r"] +atlas = ExtResource("1_gxtn4") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpikl"] +atlas = ExtResource("1_gxtn4") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8us8n"] +atlas = ExtResource("1_gxtn4") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la11h"] +atlas = ExtResource("1_gxtn4") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml8cu"] +atlas = ExtResource("1_gxtn4") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y385"] +atlas = ExtResource("1_gxtn4") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5q1m"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh8ts"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq5qt"] +atlas = ExtResource("1_gxtn4") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iif51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v01n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pha1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2ltg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqdig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axccj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca5fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqyrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmj7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks1pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sijiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1rjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmw85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fjjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuoy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmves") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8bkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iye8s") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvcef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnwe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq07k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e023r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpikl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8us8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la11h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml8cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y385") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5q1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh8ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq5qt") +}], +"loop": true, +"name": &"frostbiter", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostplate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostplate.tres new file mode 100644 index 0000000..fd48d1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_frostplate.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://csvb0in0tgmew"] + +[ext_resource type="Texture2D" uid="uid://bxio4o3dqubt7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png" id="1_wgsxd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkpdb"] +atlas = ExtResource("1_wgsxd") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbo82"] +atlas = ExtResource("1_wgsxd") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyu2h"] +atlas = ExtResource("1_wgsxd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8iwh"] +atlas = ExtResource("1_wgsxd") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4sqv"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wha40"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_810bt"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vofp"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft3sr"] +atlas = ExtResource("1_wgsxd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhvlj"] +atlas = ExtResource("1_wgsxd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18vqd"] +atlas = ExtResource("1_wgsxd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2qsu"] +atlas = ExtResource("1_wgsxd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvyfb"] +atlas = ExtResource("1_wgsxd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68trv"] +atlas = ExtResource("1_wgsxd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i58v7"] +atlas = ExtResource("1_wgsxd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reyr6"] +atlas = ExtResource("1_wgsxd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxuky"] +atlas = ExtResource("1_wgsxd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e4h6"] +atlas = ExtResource("1_wgsxd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv48y"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1u4s"] +atlas = ExtResource("1_wgsxd") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx3ry"] +atlas = ExtResource("1_wgsxd") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqkhj"] +atlas = ExtResource("1_wgsxd") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg4pk"] +atlas = ExtResource("1_wgsxd") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5eop"] +atlas = ExtResource("1_wgsxd") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2164a"] +atlas = ExtResource("1_wgsxd") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cl76"] +atlas = ExtResource("1_wgsxd") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxgi1"] +atlas = ExtResource("1_wgsxd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrnjd"] +atlas = ExtResource("1_wgsxd") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw6as"] +atlas = ExtResource("1_wgsxd") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnm3t"] +atlas = ExtResource("1_wgsxd") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkpdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbo82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyu2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8iwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4sqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wha40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_810bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vofp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft3sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhvlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18vqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2qsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvyfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68trv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i58v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reyr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxuky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e4h6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv48y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1u4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx3ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqkhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg4pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5eop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2164a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cl76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxgi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrnjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw6as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnm3t") +}], +"loop": true, +"name": &"frostplate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_iceshatter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_iceshatter.tres new file mode 100644 index 0000000..cb3d846 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_iceshatter.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dwocqohw5vnma"] + +[ext_resource type="Texture2D" uid="uid://cj28qj83h50p2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png" id="1_lq8xp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3xvx"] +atlas = ExtResource("1_lq8xp") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fuxl"] +atlas = ExtResource("1_lq8xp") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s2pm"] +atlas = ExtResource("1_lq8xp") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3dxm"] +atlas = ExtResource("1_lq8xp") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g6pm"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt208"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo0ry"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2yj7"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkhy2"] +atlas = ExtResource("1_lq8xp") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hml3b"] +atlas = ExtResource("1_lq8xp") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tul1v"] +atlas = ExtResource("1_lq8xp") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfu5d"] +atlas = ExtResource("1_lq8xp") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1loo7"] +atlas = ExtResource("1_lq8xp") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e55xu"] +atlas = ExtResource("1_lq8xp") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jelrf"] +atlas = ExtResource("1_lq8xp") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npxlk"] +atlas = ExtResource("1_lq8xp") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8f8b"] +atlas = ExtResource("1_lq8xp") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pn6l"] +atlas = ExtResource("1_lq8xp") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmi2u"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px0tv"] +atlas = ExtResource("1_lq8xp") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wba52"] +atlas = ExtResource("1_lq8xp") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nhbr"] +atlas = ExtResource("1_lq8xp") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58q67"] +atlas = ExtResource("1_lq8xp") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pp1w"] +atlas = ExtResource("1_lq8xp") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt1ua"] +atlas = ExtResource("1_lq8xp") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1hxq"] +atlas = ExtResource("1_lq8xp") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igw2m"] +atlas = ExtResource("1_lq8xp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffand"] +atlas = ExtResource("1_lq8xp") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe57g"] +atlas = ExtResource("1_lq8xp") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcw61"] +atlas = ExtResource("1_lq8xp") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3xvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fuxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s2pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3dxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g6pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt208") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo0ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2yj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkhy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hml3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tul1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfu5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1loo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e55xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jelrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npxlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8f8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pn6l") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmi2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px0tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wba52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nhbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58q67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pp1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt1ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1hxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igw2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffand") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe57g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcw61") +}], +"loop": true, +"name": &"iceshatter", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_scycicle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_scycicle.tres new file mode 100644 index 0000000..e04b411 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_scycicle.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://ceghsduut8cw3"] + +[ext_resource type="Texture2D" uid="uid://b8ei887cv0rhh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png" id="1_1yu61"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_77ovd"] +atlas = ExtResource("1_1yu61") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ugmu"] +atlas = ExtResource("1_1yu61") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45gjq"] +atlas = ExtResource("1_1yu61") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofk2s"] +atlas = ExtResource("1_1yu61") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46gn3"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y46tl"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm0m8"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij3s5"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5im0"] +atlas = ExtResource("1_1yu61") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7hds"] +atlas = ExtResource("1_1yu61") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y58nr"] +atlas = ExtResource("1_1yu61") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_072rr"] +atlas = ExtResource("1_1yu61") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wun6a"] +atlas = ExtResource("1_1yu61") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpipr"] +atlas = ExtResource("1_1yu61") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6umgx"] +atlas = ExtResource("1_1yu61") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfi1q"] +atlas = ExtResource("1_1yu61") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh3ge"] +atlas = ExtResource("1_1yu61") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvd2g"] +atlas = ExtResource("1_1yu61") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vda4i"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0owk"] +atlas = ExtResource("1_1yu61") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bbbh"] +atlas = ExtResource("1_1yu61") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdiml"] +atlas = ExtResource("1_1yu61") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wdh7"] +atlas = ExtResource("1_1yu61") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdnkd"] +atlas = ExtResource("1_1yu61") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv02e"] +atlas = ExtResource("1_1yu61") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oau8s"] +atlas = ExtResource("1_1yu61") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at0cu"] +atlas = ExtResource("1_1yu61") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jhwb"] +atlas = ExtResource("1_1yu61") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nncc"] +atlas = ExtResource("1_1yu61") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k6js"] +atlas = ExtResource("1_1yu61") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77ovd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ugmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45gjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofk2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46gn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y46tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm0m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij3s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5im0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7hds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y58nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_072rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wun6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpipr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6umgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfi1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh3ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvd2g") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vda4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0owk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bbbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdiml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wdh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdnkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv02e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oau8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at0cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jhwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nncc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k6js") +}], +"loop": true, +"name": &"scycicle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowpiercer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowpiercer.tres new file mode 100644 index 0000000..c2a264d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowpiercer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dolfycj42amod"] + +[ext_resource type="Texture2D" uid="uid://dsakwbl7lu3g4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png" id="1_siyvg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk8kt"] +atlas = ExtResource("1_siyvg") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p58t3"] +atlas = ExtResource("1_siyvg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbybm"] +atlas = ExtResource("1_siyvg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox5h5"] +atlas = ExtResource("1_siyvg") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2iv1"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nolkf"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3bqu"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b6c5"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp1jp"] +atlas = ExtResource("1_siyvg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvtib"] +atlas = ExtResource("1_siyvg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nfas"] +atlas = ExtResource("1_siyvg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txxqt"] +atlas = ExtResource("1_siyvg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfayk"] +atlas = ExtResource("1_siyvg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgpgu"] +atlas = ExtResource("1_siyvg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shpk1"] +atlas = ExtResource("1_siyvg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gim4k"] +atlas = ExtResource("1_siyvg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l56dn"] +atlas = ExtResource("1_siyvg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne77j"] +atlas = ExtResource("1_siyvg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edplv"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5tb2"] +atlas = ExtResource("1_siyvg") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqrtr"] +atlas = ExtResource("1_siyvg") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lntq4"] +atlas = ExtResource("1_siyvg") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxqns"] +atlas = ExtResource("1_siyvg") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dww25"] +atlas = ExtResource("1_siyvg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdbms"] +atlas = ExtResource("1_siyvg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycllx"] +atlas = ExtResource("1_siyvg") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1mqr"] +atlas = ExtResource("1_siyvg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63ltk"] +atlas = ExtResource("1_siyvg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o3do"] +atlas = ExtResource("1_siyvg") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twr2s"] +atlas = ExtResource("1_siyvg") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk8kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p58t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbybm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox5h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2iv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nolkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3bqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b6c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp1jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvtib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nfas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txxqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfayk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgpgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shpk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gim4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l56dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne77j") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_edplv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5tb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqrtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lntq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxqns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dww25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdbms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycllx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1mqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63ltk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o3do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twr2s") +}], +"loop": true, +"name": &"snowpiercer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowshovel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowshovel.tres new file mode 100644 index 0000000..2180749 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_snowshovel.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://b8isrt1rnqnr5"] + +[ext_resource type="Texture2D" uid="uid://dxbmygnj8d8j3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png" id="1_dn2lg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5q7o"] +atlas = ExtResource("1_dn2lg") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdx0i"] +atlas = ExtResource("1_dn2lg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c48cl"] +atlas = ExtResource("1_dn2lg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgvge"] +atlas = ExtResource("1_dn2lg") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m84ga"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni7yq"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2smh"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmjsc"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1devo"] +atlas = ExtResource("1_dn2lg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj4bd"] +atlas = ExtResource("1_dn2lg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly0lv"] +atlas = ExtResource("1_dn2lg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_505uh"] +atlas = ExtResource("1_dn2lg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajq01"] +atlas = ExtResource("1_dn2lg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk733"] +atlas = ExtResource("1_dn2lg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ma36"] +atlas = ExtResource("1_dn2lg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltemt"] +atlas = ExtResource("1_dn2lg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dvs2"] +atlas = ExtResource("1_dn2lg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gdgv"] +atlas = ExtResource("1_dn2lg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2d0n"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm2lw"] +atlas = ExtResource("1_dn2lg") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4jnc"] +atlas = ExtResource("1_dn2lg") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lnb4"] +atlas = ExtResource("1_dn2lg") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqqv8"] +atlas = ExtResource("1_dn2lg") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn8i2"] +atlas = ExtResource("1_dn2lg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0ysq"] +atlas = ExtResource("1_dn2lg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ytbg"] +atlas = ExtResource("1_dn2lg") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq5pe"] +atlas = ExtResource("1_dn2lg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsxij"] +atlas = ExtResource("1_dn2lg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayxsy"] +atlas = ExtResource("1_dn2lg") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f06an"] +atlas = ExtResource("1_dn2lg") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5q7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdx0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c48cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgvge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m84ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni7yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2smh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmjsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1devo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj4bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly0lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_505uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajq01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk733") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ma36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltemt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dvs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gdgv") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2d0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm2lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4jnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lnb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqqv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn8i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0ysq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ytbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq5pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsxij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayxsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f06an") +}], +"loop": true, +"name": &"snowshovel", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_whiteasp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_whiteasp.tres new file mode 100644 index 0000000..4f70c61 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_whiteasp.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://db2tyo0syypg1"] + +[ext_resource type="Texture2D" uid="uid://dfd1hnf3vdk2t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png" id="1_0s4gh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mqte"] +atlas = ExtResource("1_0s4gh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oohcv"] +atlas = ExtResource("1_0s4gh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7r6c"] +atlas = ExtResource("1_0s4gh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5imuc"] +atlas = ExtResource("1_0s4gh") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ilyo"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xj8i"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bwpx"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge4bm"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjk11"] +atlas = ExtResource("1_0s4gh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpvmu"] +atlas = ExtResource("1_0s4gh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxlj3"] +atlas = ExtResource("1_0s4gh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_een53"] +atlas = ExtResource("1_0s4gh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj0uf"] +atlas = ExtResource("1_0s4gh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ustts"] +atlas = ExtResource("1_0s4gh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2e5c"] +atlas = ExtResource("1_0s4gh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6axsu"] +atlas = ExtResource("1_0s4gh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fanc7"] +atlas = ExtResource("1_0s4gh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypvl1"] +atlas = ExtResource("1_0s4gh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jn0m"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwqpp"] +atlas = ExtResource("1_0s4gh") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt0ga"] +atlas = ExtResource("1_0s4gh") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmmuw"] +atlas = ExtResource("1_0s4gh") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm401"] +atlas = ExtResource("1_0s4gh") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i242"] +atlas = ExtResource("1_0s4gh") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp6j1"] +atlas = ExtResource("1_0s4gh") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gje1i"] +atlas = ExtResource("1_0s4gh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsauo"] +atlas = ExtResource("1_0s4gh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fnms"] +atlas = ExtResource("1_0s4gh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaenx"] +atlas = ExtResource("1_0s4gh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbsk1"] +atlas = ExtResource("1_0s4gh") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mqte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oohcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7r6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5imuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ilyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xj8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bwpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge4bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjk11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpvmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxlj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_een53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj0uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ustts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2e5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6axsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fanc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypvl1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jn0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwqpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt0ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmmuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm401") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i242") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp6j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gje1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsauo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fnms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaenx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbsk1") +}], +"loop": true, +"name": &"whiteasp", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_winterblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_winterblade.tres new file mode 100644 index 0000000..74a9614 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_f6_winterblade.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dc8qlabmdbi0m"] + +[ext_resource type="Texture2D" uid="uid://d0svbltalrj6n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png" id="1_jtpl7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l61q"] +atlas = ExtResource("1_jtpl7") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ssth"] +atlas = ExtResource("1_jtpl7") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kymn"] +atlas = ExtResource("1_jtpl7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df8v8"] +atlas = ExtResource("1_jtpl7") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hshx7"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pwl8"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikp2t"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm42m"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnqpa"] +atlas = ExtResource("1_jtpl7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nriq2"] +atlas = ExtResource("1_jtpl7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ekc2"] +atlas = ExtResource("1_jtpl7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8841"] +atlas = ExtResource("1_jtpl7") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5tt2"] +atlas = ExtResource("1_jtpl7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3alk"] +atlas = ExtResource("1_jtpl7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqujn"] +atlas = ExtResource("1_jtpl7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j6td"] +atlas = ExtResource("1_jtpl7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bp28"] +atlas = ExtResource("1_jtpl7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxtsn"] +atlas = ExtResource("1_jtpl7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbuip"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ce8"] +atlas = ExtResource("1_jtpl7") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l3q2"] +atlas = ExtResource("1_jtpl7") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s58hv"] +atlas = ExtResource("1_jtpl7") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knune"] +atlas = ExtResource("1_jtpl7") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csu2c"] +atlas = ExtResource("1_jtpl7") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olu1c"] +atlas = ExtResource("1_jtpl7") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm2c0"] +atlas = ExtResource("1_jtpl7") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu2dv"] +atlas = ExtResource("1_jtpl7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75p8t"] +atlas = ExtResource("1_jtpl7") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccsqi"] +atlas = ExtResource("1_jtpl7") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc7ml"] +atlas = ExtResource("1_jtpl7") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l61q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ssth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kymn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df8v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hshx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pwl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikp2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm42m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnqpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nriq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ekc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8841") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5tt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3alk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqujn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j6td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bp28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxtsn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbuip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ce8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s58hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knune") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csu2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olu1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm2c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu2dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75p8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccsqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc7ml") +}], +"loop": true, +"name": &"winterblade", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f1_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f1_goldenhammer.tres new file mode 100644 index 0000000..0ab0da1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f1_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://c4l70u02jjudw"] + +[ext_resource type="Texture2D" uid="uid://djbk8ig54m3wr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png" id="1_mdlmr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_byu2v"] +atlas = ExtResource("1_mdlmr") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mad6l"] +atlas = ExtResource("1_mdlmr") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfb7f"] +atlas = ExtResource("1_mdlmr") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuwdi"] +atlas = ExtResource("1_mdlmr") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1jnr"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w12rq"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unpeu"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk6nq"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp8oy"] +atlas = ExtResource("1_mdlmr") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfub5"] +atlas = ExtResource("1_mdlmr") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he5b1"] +atlas = ExtResource("1_mdlmr") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alqjo"] +atlas = ExtResource("1_mdlmr") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h00l5"] +atlas = ExtResource("1_mdlmr") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2u3c"] +atlas = ExtResource("1_mdlmr") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3towy"] +atlas = ExtResource("1_mdlmr") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iutye"] +atlas = ExtResource("1_mdlmr") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ahxe"] +atlas = ExtResource("1_mdlmr") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1la8"] +atlas = ExtResource("1_mdlmr") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dcar"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2db3"] +atlas = ExtResource("1_mdlmr") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_febhu"] +atlas = ExtResource("1_mdlmr") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71ewf"] +atlas = ExtResource("1_mdlmr") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4esud"] +atlas = ExtResource("1_mdlmr") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6tif"] +atlas = ExtResource("1_mdlmr") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm8y2"] +atlas = ExtResource("1_mdlmr") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng453"] +atlas = ExtResource("1_mdlmr") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rtpd"] +atlas = ExtResource("1_mdlmr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rs21"] +atlas = ExtResource("1_mdlmr") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa0ui"] +atlas = ExtResource("1_mdlmr") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkb6r"] +atlas = ExtResource("1_mdlmr") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_byu2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mad6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfb7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuwdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1jnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w12rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unpeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk6nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp8oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfub5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he5b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alqjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h00l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2u3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3towy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iutye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ahxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1la8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dcar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2db3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_febhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71ewf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4esud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6tif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm8y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng453") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rtpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rs21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa0ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkb6r") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f2_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f2_goldenhammer.tres new file mode 100644 index 0000000..82b0c02 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f2_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://b618xoevam6cm"] + +[ext_resource type="Texture2D" uid="uid://ducgsf4dmyo6k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png" id="1_tbw6e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_um6o2"] +atlas = ExtResource("1_tbw6e") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3rri"] +atlas = ExtResource("1_tbw6e") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4pnu"] +atlas = ExtResource("1_tbw6e") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i0q6"] +atlas = ExtResource("1_tbw6e") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf4rw"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dkm5"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkhp8"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy2yg"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca7tr"] +atlas = ExtResource("1_tbw6e") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2tw6"] +atlas = ExtResource("1_tbw6e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8oqv"] +atlas = ExtResource("1_tbw6e") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyy5b"] +atlas = ExtResource("1_tbw6e") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0txk"] +atlas = ExtResource("1_tbw6e") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2moi0"] +atlas = ExtResource("1_tbw6e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_011uc"] +atlas = ExtResource("1_tbw6e") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l8xx"] +atlas = ExtResource("1_tbw6e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufqw7"] +atlas = ExtResource("1_tbw6e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njke3"] +atlas = ExtResource("1_tbw6e") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31d8w"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5yoi"] +atlas = ExtResource("1_tbw6e") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m45r"] +atlas = ExtResource("1_tbw6e") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjmxl"] +atlas = ExtResource("1_tbw6e") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vp80"] +atlas = ExtResource("1_tbw6e") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjdq2"] +atlas = ExtResource("1_tbw6e") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as7nl"] +atlas = ExtResource("1_tbw6e") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knkjg"] +atlas = ExtResource("1_tbw6e") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xngl2"] +atlas = ExtResource("1_tbw6e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nax6v"] +atlas = ExtResource("1_tbw6e") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh6uc"] +atlas = ExtResource("1_tbw6e") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unpw0"] +atlas = ExtResource("1_tbw6e") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_um6o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3rri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4pnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i0q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf4rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dkm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkhp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy2yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca7tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2tw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8oqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyy5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0txk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2moi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_011uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l8xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufqw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njke3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_31d8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5yoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m45r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjmxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vp80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjdq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as7nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knkjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xngl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nax6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh6uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unpw0") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f3_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f3_goldenhammer.tres new file mode 100644 index 0000000..f124164 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f3_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bkiy4leamk15i"] + +[ext_resource type="Texture2D" uid="uid://bwjo7b8qvj6j7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png" id="1_papc8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_firrc"] +atlas = ExtResource("1_papc8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6joy"] +atlas = ExtResource("1_papc8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_511hk"] +atlas = ExtResource("1_papc8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu11n"] +atlas = ExtResource("1_papc8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r65x5"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k4tl"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmt8p"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvwfr"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o04xp"] +atlas = ExtResource("1_papc8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nr6g"] +atlas = ExtResource("1_papc8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3jl4"] +atlas = ExtResource("1_papc8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtkkb"] +atlas = ExtResource("1_papc8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au1at"] +atlas = ExtResource("1_papc8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pnpe"] +atlas = ExtResource("1_papc8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_380j1"] +atlas = ExtResource("1_papc8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f1cm"] +atlas = ExtResource("1_papc8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n87g"] +atlas = ExtResource("1_papc8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxe21"] +atlas = ExtResource("1_papc8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mneg8"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7hoy"] +atlas = ExtResource("1_papc8") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v43m8"] +atlas = ExtResource("1_papc8") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r0p4"] +atlas = ExtResource("1_papc8") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_637aj"] +atlas = ExtResource("1_papc8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0god0"] +atlas = ExtResource("1_papc8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l56ii"] +atlas = ExtResource("1_papc8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq6n7"] +atlas = ExtResource("1_papc8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkmld"] +atlas = ExtResource("1_papc8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwtb3"] +atlas = ExtResource("1_papc8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50e40"] +atlas = ExtResource("1_papc8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdxxa"] +atlas = ExtResource("1_papc8") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_firrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6joy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_511hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu11n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r65x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k4tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmt8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvwfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o04xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nr6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3jl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtkkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au1at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pnpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_380j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f1cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n87g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxe21") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mneg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7hoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v43m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r0p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_637aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0god0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l56ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq6n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkmld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwtb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50e40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdxxa") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f4_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f4_goldenhammer.tres new file mode 100644 index 0000000..f77b0b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f4_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dqfvlp41mfht3"] + +[ext_resource type="Texture2D" uid="uid://45khlsacmar4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png" id="1_n0wvb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mvtq"] +atlas = ExtResource("1_n0wvb") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eecqi"] +atlas = ExtResource("1_n0wvb") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8erhi"] +atlas = ExtResource("1_n0wvb") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s7te"] +atlas = ExtResource("1_n0wvb") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qeh8"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtc3k"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpe3n"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yixo"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj824"] +atlas = ExtResource("1_n0wvb") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vidp"] +atlas = ExtResource("1_n0wvb") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02sy0"] +atlas = ExtResource("1_n0wvb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuark"] +atlas = ExtResource("1_n0wvb") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw805"] +atlas = ExtResource("1_n0wvb") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8dpc"] +atlas = ExtResource("1_n0wvb") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnro3"] +atlas = ExtResource("1_n0wvb") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yykv"] +atlas = ExtResource("1_n0wvb") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iulr"] +atlas = ExtResource("1_n0wvb") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi830"] +atlas = ExtResource("1_n0wvb") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7idu"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xrpt"] +atlas = ExtResource("1_n0wvb") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhret"] +atlas = ExtResource("1_n0wvb") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4pwd"] +atlas = ExtResource("1_n0wvb") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umepw"] +atlas = ExtResource("1_n0wvb") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0c7h"] +atlas = ExtResource("1_n0wvb") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35y6g"] +atlas = ExtResource("1_n0wvb") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lacm5"] +atlas = ExtResource("1_n0wvb") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxafa"] +atlas = ExtResource("1_n0wvb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmupe"] +atlas = ExtResource("1_n0wvb") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cevdp"] +atlas = ExtResource("1_n0wvb") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtkid"] +atlas = ExtResource("1_n0wvb") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mvtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eecqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8erhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s7te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qeh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtc3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpe3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yixo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj824") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vidp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02sy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuark") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw805") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8dpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnro3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yykv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iulr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi830") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7idu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xrpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhret") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4pwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umepw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0c7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35y6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lacm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxafa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmupe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cevdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtkid") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f5_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f5_goldenhammer.tres new file mode 100644 index 0000000..7777670 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f5_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://wtlq483wf72p"] + +[ext_resource type="Texture2D" uid="uid://d228gbn32100c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png" id="1_5ig44"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a84mn"] +atlas = ExtResource("1_5ig44") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kndtj"] +atlas = ExtResource("1_5ig44") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41syo"] +atlas = ExtResource("1_5ig44") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65cd0"] +atlas = ExtResource("1_5ig44") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj1fy"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6yig"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nutht"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfaiq"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ote1h"] +atlas = ExtResource("1_5ig44") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn1o1"] +atlas = ExtResource("1_5ig44") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od7ba"] +atlas = ExtResource("1_5ig44") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj3gj"] +atlas = ExtResource("1_5ig44") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t3oa"] +atlas = ExtResource("1_5ig44") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t47mj"] +atlas = ExtResource("1_5ig44") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1d4p"] +atlas = ExtResource("1_5ig44") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m254y"] +atlas = ExtResource("1_5ig44") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ve5s"] +atlas = ExtResource("1_5ig44") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rqnf"] +atlas = ExtResource("1_5ig44") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj6gn"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22fac"] +atlas = ExtResource("1_5ig44") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kkrw"] +atlas = ExtResource("1_5ig44") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22jtp"] +atlas = ExtResource("1_5ig44") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe8bd"] +atlas = ExtResource("1_5ig44") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1i85"] +atlas = ExtResource("1_5ig44") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxgau"] +atlas = ExtResource("1_5ig44") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr4wu"] +atlas = ExtResource("1_5ig44") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00v71"] +atlas = ExtResource("1_5ig44") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw6eu"] +atlas = ExtResource("1_5ig44") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pli8k"] +atlas = ExtResource("1_5ig44") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc8sp"] +atlas = ExtResource("1_5ig44") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a84mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kndtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41syo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65cd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj1fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6yig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nutht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfaiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ote1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn1o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od7ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj3gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t3oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t47mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1d4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m254y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ve5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rqnf") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj6gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22fac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kkrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22jtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe8bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1i85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxgau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr4wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00v71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw6eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pli8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc8sp") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f6_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f6_goldenhammer.tres new file mode 100644 index 0000000..f7e8045 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_f6_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dapr2hyr4qvw5"] + +[ext_resource type="Texture2D" uid="uid://cijyhpxwo2qe2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png" id="1_yl0pm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvt4f"] +atlas = ExtResource("1_yl0pm") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y07g4"] +atlas = ExtResource("1_yl0pm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmpxn"] +atlas = ExtResource("1_yl0pm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6c2q"] +atlas = ExtResource("1_yl0pm") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5i2q"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63u3m"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdjot"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ion01"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnliy"] +atlas = ExtResource("1_yl0pm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63ru8"] +atlas = ExtResource("1_yl0pm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut3ac"] +atlas = ExtResource("1_yl0pm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h5e6"] +atlas = ExtResource("1_yl0pm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nswch"] +atlas = ExtResource("1_yl0pm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n5k2"] +atlas = ExtResource("1_yl0pm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdgau"] +atlas = ExtResource("1_yl0pm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia775"] +atlas = ExtResource("1_yl0pm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylbjr"] +atlas = ExtResource("1_yl0pm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqlxh"] +atlas = ExtResource("1_yl0pm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjt0h"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2362"] +atlas = ExtResource("1_yl0pm") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5h2d"] +atlas = ExtResource("1_yl0pm") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pc1g"] +atlas = ExtResource("1_yl0pm") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4wp1"] +atlas = ExtResource("1_yl0pm") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uxml"] +atlas = ExtResource("1_yl0pm") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeotv"] +atlas = ExtResource("1_yl0pm") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14p6x"] +atlas = ExtResource("1_yl0pm") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i5nd"] +atlas = ExtResource("1_yl0pm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb755"] +atlas = ExtResource("1_yl0pm") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olpu1"] +atlas = ExtResource("1_yl0pm") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty83g"] +atlas = ExtResource("1_yl0pm") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvt4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y07g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmpxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6c2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5i2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63u3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdjot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ion01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnliy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63ru8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut3ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h5e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nswch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n5k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdgau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia775") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylbjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqlxh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjt0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2362") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5h2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pc1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4wp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uxml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeotv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14p6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i5nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb755") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olpu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty83g") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_neutral_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_neutral_goldenhammer.tres new file mode 100644 index 0000000..3cc3343 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/artifact_neutral_neutral_goldenhammer.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cadkdcbadadyf"] + +[ext_resource type="Texture2D" uid="uid://hsl2ww3heghr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png" id="1_wn84u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vabyl"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jev3x"] +atlas = ExtResource("1_wn84u") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c878"] +atlas = ExtResource("1_wn84u") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ldp"] +atlas = ExtResource("1_wn84u") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjyo8"] +atlas = ExtResource("1_wn84u") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1fnt"] +atlas = ExtResource("1_wn84u") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ndlw"] +atlas = ExtResource("1_wn84u") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx83w"] +atlas = ExtResource("1_wn84u") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxyub"] +atlas = ExtResource("1_wn84u") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61psc"] +atlas = ExtResource("1_wn84u") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhbon"] +atlas = ExtResource("1_wn84u") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr11h"] +atlas = ExtResource("1_wn84u") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xp1l"] +atlas = ExtResource("1_wn84u") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpms8"] +atlas = ExtResource("1_wn84u") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3aba"] +atlas = ExtResource("1_wn84u") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jtpc"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkts5"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0q63"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d57m"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad1rg"] +atlas = ExtResource("1_wn84u") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1seaa"] +atlas = ExtResource("1_wn84u") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x76go"] +atlas = ExtResource("1_wn84u") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qymmt"] +atlas = ExtResource("1_wn84u") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg4ds"] +atlas = ExtResource("1_wn84u") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05sox"] +atlas = ExtResource("1_wn84u") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g75fy"] +atlas = ExtResource("1_wn84u") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byay2"] +atlas = ExtResource("1_wn84u") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya5wq"] +atlas = ExtResource("1_wn84u") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t5cl"] +atlas = ExtResource("1_wn84u") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfoj8"] +atlas = ExtResource("1_wn84u") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vabyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jev3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ldp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjyo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1fnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ndlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx83w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxyub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61psc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhbon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr11h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xp1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpms8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3aba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jtpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkts5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0q63") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d57m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad1rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1seaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x76go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qymmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg4ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05sox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g75fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byay2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya5wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t5cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfoj8") +}], +"loop": true, +"name": &"goldenhammer", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_coal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_coal.tres new file mode 100644 index 0000000..f06c3f3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_coal.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://cha2xe1i8ts1h"] + +[ext_resource type="Texture2D" uid="uid://t8esnfq4tgxl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png" id="1_j0vgb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ejui"] +atlas = ExtResource("1_j0vgb") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm4ko"] +atlas = ExtResource("1_j0vgb") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3cbc"] +atlas = ExtResource("1_j0vgb") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub68m"] +atlas = ExtResource("1_j0vgb") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0luwn"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygle8"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0qtj"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj122"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2srod"] +atlas = ExtResource("1_j0vgb") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ldmh"] +atlas = ExtResource("1_j0vgb") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00pa0"] +atlas = ExtResource("1_j0vgb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg5fu"] +atlas = ExtResource("1_j0vgb") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qcjv"] +atlas = ExtResource("1_j0vgb") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc17d"] +atlas = ExtResource("1_j0vgb") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r353"] +atlas = ExtResource("1_j0vgb") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecjnw"] +atlas = ExtResource("1_j0vgb") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl4hg"] +atlas = ExtResource("1_j0vgb") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwlel"] +atlas = ExtResource("1_j0vgb") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix500"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kac5"] +atlas = ExtResource("1_j0vgb") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulxrr"] +atlas = ExtResource("1_j0vgb") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5l4j"] +atlas = ExtResource("1_j0vgb") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ds8q"] +atlas = ExtResource("1_j0vgb") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rfyd"] +atlas = ExtResource("1_j0vgb") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4ypv"] +atlas = ExtResource("1_j0vgb") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srlir"] +atlas = ExtResource("1_j0vgb") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anlud"] +atlas = ExtResource("1_j0vgb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78qr0"] +atlas = ExtResource("1_j0vgb") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nepjl"] +atlas = ExtResource("1_j0vgb") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjess"] +atlas = ExtResource("1_j0vgb") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ejui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm4ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3cbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub68m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0luwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygle8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0qtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj122") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2srod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ldmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00pa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg5fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qcjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc17d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r353") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecjnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl4hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwlel") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix500") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kac5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulxrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5l4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ds8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rfyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4ypv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srlir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anlud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78qr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nepjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjess") +}], +"loop": true, +"name": &"coal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_jinglebells.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_jinglebells.tres new file mode 100644 index 0000000..af00d26 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_jinglebells.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://dvc5amhuuurer"] + +[ext_resource type="Texture2D" uid="uid://ct1mowe6ngcyo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png" id="1_44sk7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yuh8"] +atlas = ExtResource("1_44sk7") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ovw4"] +atlas = ExtResource("1_44sk7") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cul2"] +atlas = ExtResource("1_44sk7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmo3y"] +atlas = ExtResource("1_44sk7") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ok4"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thfe3"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2ifk"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wtwa"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypjf6"] +atlas = ExtResource("1_44sk7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia210"] +atlas = ExtResource("1_44sk7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uih26"] +atlas = ExtResource("1_44sk7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duipc"] +atlas = ExtResource("1_44sk7") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fbyb"] +atlas = ExtResource("1_44sk7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek5u1"] +atlas = ExtResource("1_44sk7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuf47"] +atlas = ExtResource("1_44sk7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qipdd"] +atlas = ExtResource("1_44sk7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0fp5"] +atlas = ExtResource("1_44sk7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kybm3"] +atlas = ExtResource("1_44sk7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mofsv"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xm5j"] +atlas = ExtResource("1_44sk7") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s5f8"] +atlas = ExtResource("1_44sk7") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy0n1"] +atlas = ExtResource("1_44sk7") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk0vc"] +atlas = ExtResource("1_44sk7") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8r2y"] +atlas = ExtResource("1_44sk7") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glry0"] +atlas = ExtResource("1_44sk7") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mspp"] +atlas = ExtResource("1_44sk7") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nycyo"] +atlas = ExtResource("1_44sk7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xucmy"] +atlas = ExtResource("1_44sk7") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi5yv"] +atlas = ExtResource("1_44sk7") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjbbo"] +atlas = ExtResource("1_44sk7") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yuh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ovw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cul2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmo3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ok4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thfe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2ifk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wtwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypjf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia210") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uih26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fbyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek5u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuf47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qipdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0fp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kybm3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mofsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xm5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s5f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy0n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk0vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8r2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glry0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mspp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nycyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xucmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi5yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjbbo") +}], +"loop": true, +"name": &"jinglebells", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_mistletoe.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_mistletoe.tres new file mode 100644 index 0000000..46c770e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_mistletoe.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bdmjux28yfsfr"] + +[ext_resource type="Texture2D" uid="uid://dsulv7pdy5h1m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png" id="1_pithd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_crs7m"] +atlas = ExtResource("1_pithd") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbka1"] +atlas = ExtResource("1_pithd") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olxsa"] +atlas = ExtResource("1_pithd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jkki"] +atlas = ExtResource("1_pithd") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0xpf"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utuxd"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ktpq"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78m1a"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13s1e"] +atlas = ExtResource("1_pithd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alnfx"] +atlas = ExtResource("1_pithd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa8q1"] +atlas = ExtResource("1_pithd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssvym"] +atlas = ExtResource("1_pithd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufa0o"] +atlas = ExtResource("1_pithd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kya7h"] +atlas = ExtResource("1_pithd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lb5t"] +atlas = ExtResource("1_pithd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpwex"] +atlas = ExtResource("1_pithd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klf6e"] +atlas = ExtResource("1_pithd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sn8q"] +atlas = ExtResource("1_pithd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok4ap"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbt3f"] +atlas = ExtResource("1_pithd") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0odq"] +atlas = ExtResource("1_pithd") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n31cf"] +atlas = ExtResource("1_pithd") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyw08"] +atlas = ExtResource("1_pithd") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kvh0"] +atlas = ExtResource("1_pithd") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8nv6"] +atlas = ExtResource("1_pithd") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2mja"] +atlas = ExtResource("1_pithd") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olmbt"] +atlas = ExtResource("1_pithd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sixky"] +atlas = ExtResource("1_pithd") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4mp8"] +atlas = ExtResource("1_pithd") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpn3g"] +atlas = ExtResource("1_pithd") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_crs7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbka1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olxsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jkki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0xpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utuxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ktpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78m1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13s1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alnfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa8q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssvym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufa0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kya7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lb5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpwex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klf6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sn8q") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok4ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbt3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0odq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n31cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyw08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kvh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8nv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2mja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olmbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sixky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4mp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpn3g") +}], +"loop": true, +"name": &"mistletoe", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_present.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_present.tres new file mode 100644 index 0000000..b6da4c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_present.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://chctppfpres35"] + +[ext_resource type="Texture2D" uid="uid://sg3qfow84b8t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png" id="1_84b4x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fau2v"] +atlas = ExtResource("1_84b4x") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5csx"] +atlas = ExtResource("1_84b4x") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52wd3"] +atlas = ExtResource("1_84b4x") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i8i8"] +atlas = ExtResource("1_84b4x") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_octa3"] +atlas = ExtResource("1_84b4x") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ricwn"] +atlas = ExtResource("1_84b4x") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxb5j"] +atlas = ExtResource("1_84b4x") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkwqs"] +atlas = ExtResource("1_84b4x") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1b2k"] +atlas = ExtResource("1_84b4x") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hvct"] +atlas = ExtResource("1_84b4x") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5esf"] +atlas = ExtResource("1_84b4x") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d675"] +atlas = ExtResource("1_84b4x") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye8h5"] +atlas = ExtResource("1_84b4x") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa5t3"] +atlas = ExtResource("1_84b4x") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8re2"] +atlas = ExtResource("1_84b4x") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpgpl"] +atlas = ExtResource("1_84b4x") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qqio"] +atlas = ExtResource("1_84b4x") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jkti"] +atlas = ExtResource("1_84b4x") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpn2q"] +atlas = ExtResource("1_84b4x") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14bit"] +atlas = ExtResource("1_84b4x") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fau2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5csx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52wd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i8i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_octa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ricwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxb5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkwqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1b2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hvct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5esf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d675") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye8h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa5t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8re2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpgpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qqio") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jkti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpn2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14bit") +}], +"loop": true, +"name": &"present", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_snowball.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_snowball.tres new file mode 100644 index 0000000..0194e0c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/boss_christmas_snowball.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://1jbcwussi8xj"] + +[ext_resource type="Texture2D" uid="uid://c8b6sn827ysgx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png" id="1_wb5jn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_csy8n"] +atlas = ExtResource("1_wb5jn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfbev"] +atlas = ExtResource("1_wb5jn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sut1d"] +atlas = ExtResource("1_wb5jn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sus23"] +atlas = ExtResource("1_wb5jn") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ix7"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf6r5"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_disrw"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1s5b"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xhl2"] +atlas = ExtResource("1_wb5jn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dtqb"] +atlas = ExtResource("1_wb5jn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px6du"] +atlas = ExtResource("1_wb5jn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f3b4"] +atlas = ExtResource("1_wb5jn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5woyy"] +atlas = ExtResource("1_wb5jn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bucek"] +atlas = ExtResource("1_wb5jn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqfrx"] +atlas = ExtResource("1_wb5jn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftl74"] +atlas = ExtResource("1_wb5jn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omfw5"] +atlas = ExtResource("1_wb5jn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epuae"] +atlas = ExtResource("1_wb5jn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3mac"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txl8p"] +atlas = ExtResource("1_wb5jn") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7355"] +atlas = ExtResource("1_wb5jn") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4usb"] +atlas = ExtResource("1_wb5jn") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onfb0"] +atlas = ExtResource("1_wb5jn") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnta4"] +atlas = ExtResource("1_wb5jn") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqn0f"] +atlas = ExtResource("1_wb5jn") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qta6r"] +atlas = ExtResource("1_wb5jn") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa5qq"] +atlas = ExtResource("1_wb5jn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohr0f"] +atlas = ExtResource("1_wb5jn") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qno8s"] +atlas = ExtResource("1_wb5jn") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_041hn"] +atlas = ExtResource("1_wb5jn") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_csy8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfbev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sut1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sus23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ix7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf6r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_disrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1s5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xhl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dtqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px6du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f3b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5woyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bucek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqfrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftl74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omfw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epuae") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3mac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txl8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7355") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4usb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onfb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnta4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqn0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qta6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa5qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohr0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qno8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_041hn") +}], +"loop": true, +"name": &"snowball", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_ancientknowledge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_ancientknowledge.tres new file mode 100644 index 0000000..71a2d48 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_ancientknowledge.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://bv6tpf3sps8ia"] + +[ext_resource type="Texture2D" uid="uid://b5micu3ubcd84" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png" id="1_dewfb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_btm8x"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw34a"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu0i3"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mwb5"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qw5r"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouqwe"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ag6"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u6lj"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6axw"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns4ms"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65u48"] +atlas = ExtResource("1_dewfb") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahb0k"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo5lh"] +atlas = ExtResource("1_dewfb") +region = Rect2(35, 105, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_btm8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw34a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu0i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mwb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qw5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouqwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ag6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u6lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6axw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns4ms") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_65u48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahb0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo5lh") +}], +"loop": true, +"name": &"ancientknowledge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_cultivatingdark.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_cultivatingdark.tres new file mode 100644 index 0000000..d06deac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_cultivatingdark.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://c7iequ4lyfhvl"] + +[ext_resource type="Texture2D" uid="uid://bibpruvw2b1ix" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png" id="1_424he"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u36m"] +atlas = ExtResource("1_424he") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47no2"] +atlas = ExtResource("1_424he") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_003sc"] +atlas = ExtResource("1_424he") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76lfe"] +atlas = ExtResource("1_424he") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5wli"] +atlas = ExtResource("1_424he") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkkmn"] +atlas = ExtResource("1_424he") +region = Rect2(35, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyyus"] +atlas = ExtResource("1_424he") +region = Rect2(105, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxm5f"] +atlas = ExtResource("1_424he") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ub7"] +atlas = ExtResource("1_424he") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r3vy"] +atlas = ExtResource("1_424he") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjp1i"] +atlas = ExtResource("1_424he") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np1r4"] +atlas = ExtResource("1_424he") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw6ny"] +atlas = ExtResource("1_424he") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaqsa"] +atlas = ExtResource("1_424he") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duad5"] +atlas = ExtResource("1_424he") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa7hc"] +atlas = ExtResource("1_424he") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1ktx"] +atlas = ExtResource("1_424he") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh1pr"] +atlas = ExtResource("1_424he") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq8qx"] +atlas = ExtResource("1_424he") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rny3h"] +atlas = ExtResource("1_424he") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5bp4"] +atlas = ExtResource("1_424he") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qufrw"] +atlas = ExtResource("1_424he") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vsly"] +atlas = ExtResource("1_424he") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whps0"] +atlas = ExtResource("1_424he") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp265"] +atlas = ExtResource("1_424he") +region = Rect2(70, 175, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u36m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47no2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_003sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76lfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5wli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkkmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyyus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxm5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ub7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r3vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjp1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np1r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw6ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaqsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duad5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa7hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1ktx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh1pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq8qx") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rny3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5bp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qufrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vsly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whps0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp265") +}], +"loop": true, +"name": &"cultivatingdark", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_etherealwind.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_etherealwind.tres new file mode 100644 index 0000000..c4cb396 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_etherealwind.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://d3oemvc75tebq"] + +[ext_resource type="Texture2D" uid="uid://c1d1ymtledymb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png" id="1_bvykt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_87blu"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnopo"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltybp"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehjb6"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k55dq"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxi3a"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0apu5"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0w8n"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnyxg"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ojy"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yhd7"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t02od"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1lxg"] +atlas = ExtResource("1_bvykt") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2s0s"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpsoj"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxjeu"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptx4v"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxbs"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbxpc"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6j5i"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlc0n"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8u5a"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esamf"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8avf"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ce07"] +atlas = ExtResource("1_bvykt") +region = Rect2(35, 70, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_87blu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnopo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehjb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k55dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxi3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0apu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0w8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnyxg") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ojy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yhd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t02od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1lxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2s0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpsoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxjeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptx4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbxpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6j5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlc0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8u5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esamf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8avf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ce07") +}], +"loop": true, +"name": &"etherealwind", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_laceratingfrost.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_laceratingfrost.tres new file mode 100644 index 0000000..bf9a21d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_laceratingfrost.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://b75v6pq1wraeb"] + +[ext_resource type="Texture2D" uid="uid://cqy8cdhj7iptk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png" id="1_t83nk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmsqv"] +atlas = ExtResource("1_t83nk") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44r2n"] +atlas = ExtResource("1_t83nk") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suka6"] +atlas = ExtResource("1_t83nk") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfoie"] +atlas = ExtResource("1_t83nk") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgh17"] +atlas = ExtResource("1_t83nk") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xr0q"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jalb"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_152bo"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcy7p"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqis6"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii5el"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wijq3"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x35uv"] +atlas = ExtResource("1_t83nk") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swspd"] +atlas = ExtResource("1_t83nk") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1spt"] +atlas = ExtResource("1_t83nk") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v6pq"] +atlas = ExtResource("1_t83nk") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m1xo"] +atlas = ExtResource("1_t83nk") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0soy"] +atlas = ExtResource("1_t83nk") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0afjb"] +atlas = ExtResource("1_t83nk") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykd6y"] +atlas = ExtResource("1_t83nk") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyiii"] +atlas = ExtResource("1_t83nk") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju832"] +atlas = ExtResource("1_t83nk") +region = Rect2(105, 70, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmsqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44r2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suka6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfoie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgh17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xr0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jalb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_152bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcy7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqis6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii5el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wijq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x35uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swspd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1spt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v6pq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m1xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0soy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0afjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykd6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyiii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju832") +}], +"loop": true, +"name": &"laceratingfrost", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_livingflame.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_livingflame.tres new file mode 100644 index 0000000..dbaf8d6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_livingflame.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://dro84xthfoshc"] + +[ext_resource type="Texture2D" uid="uid://ixhrf4ocq3ow" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png" id="1_x8mx3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lje"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcx3s"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6frvb"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yceod"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iial5"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l77q3"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5clj"] +atlas = ExtResource("1_x8mx3") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu6v0"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5l3x"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6xtm"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv7r4"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwbbf"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1sl2"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kwo4"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnui0"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l71a1"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx3f8"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cod40"] +atlas = ExtResource("1_x8mx3") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bunmj"] +atlas = ExtResource("1_x8mx3") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rogxh"] +atlas = ExtResource("1_x8mx3") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxb55"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u2ji"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lefr"] +atlas = ExtResource("1_x8mx3") +region = Rect2(70, 140, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcx3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6frvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yceod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iial5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l77q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5clj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu6v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5l3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6xtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv7r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwbbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1sl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kwo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnui0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l71a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx3f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cod40") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bunmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rogxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxb55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u2ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lefr") +}], +"loop": true, +"name": &"livingflame", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_moldingearth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_moldingearth.tres new file mode 100644 index 0000000..2351f0a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_moldingearth.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://h5x8fh3ejq0w"] + +[ext_resource type="Texture2D" uid="uid://bdlrpgkjpabf2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png" id="1_vr4mu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnlqm"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq506"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytf0s"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7y17"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qssnn"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4klgf"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s00e"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51vua"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utm4p"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok63e"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65y5y"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggg3v"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2e6f"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0gno"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyj7d"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54610"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu4po"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fna4r"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch1bo"] +atlas = ExtResource("1_vr4mu") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s45yq"] +atlas = ExtResource("1_vr4mu") +region = Rect2(35, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ndrc"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggaty"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icced"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lir35"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3x74"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y6st"] +atlas = ExtResource("1_vr4mu") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy434"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0bgc"] +atlas = ExtResource("1_vr4mu") +region = Rect2(70, 175, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnlqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq506") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytf0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7y17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qssnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4klgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s00e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51vua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utm4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok63e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65y5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggg3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2e6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0gno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyj7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54610") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu4po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fna4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch1bo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s45yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ndrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggaty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icced") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lir35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3x74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y6st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy434") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0bgc") +}], +"loop": true, +"name": &"moldingearth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_restoringlight.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_restoringlight.tres new file mode 100644 index 0000000..2088762 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/bossspell_restoringlight.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://i8q7u0arrbh0"] + +[ext_resource type="Texture2D" uid="uid://c8ea0cwdhddb2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png" id="1_0iog1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_moocn"] +atlas = ExtResource("1_0iog1") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i6aj"] +atlas = ExtResource("1_0iog1") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve77t"] +atlas = ExtResource("1_0iog1") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stjr1"] +atlas = ExtResource("1_0iog1") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fqb5"] +atlas = ExtResource("1_0iog1") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq8un"] +atlas = ExtResource("1_0iog1") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgf1h"] +atlas = ExtResource("1_0iog1") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkm3r"] +atlas = ExtResource("1_0iog1") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fai2n"] +atlas = ExtResource("1_0iog1") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ocq"] +atlas = ExtResource("1_0iog1") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu8xa"] +atlas = ExtResource("1_0iog1") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha5rs"] +atlas = ExtResource("1_0iog1") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufqxy"] +atlas = ExtResource("1_0iog1") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejrr1"] +atlas = ExtResource("1_0iog1") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqw6x"] +atlas = ExtResource("1_0iog1") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnmk2"] +atlas = ExtResource("1_0iog1") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lalvh"] +atlas = ExtResource("1_0iog1") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y21ia"] +atlas = ExtResource("1_0iog1") +region = Rect2(140, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_moocn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i6aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve77t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stjr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fqb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq8un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgf1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkm3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fai2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ocq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu8xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha5rs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufqxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejrr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqw6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnmk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lalvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y21ia") +}], +"loop": true, +"name": &"restoringlight", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/f1_ironcliffeheart.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f1_ironcliffeheart.tres new file mode 100644 index 0000000..476fff1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f1_ironcliffeheart.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bnyyqm5m318mw"] + +[ext_resource type="Texture2D" uid="uid://b7jtq7oc4jlqr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png" id="1_yw7th"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qil8a"] +atlas = ExtResource("1_yw7th") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnh0d"] +atlas = ExtResource("1_yw7th") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4nfk"] +atlas = ExtResource("1_yw7th") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23wvg"] +atlas = ExtResource("1_yw7th") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfeut"] +atlas = ExtResource("1_yw7th") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ms3v"] +atlas = ExtResource("1_yw7th") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acmex"] +atlas = ExtResource("1_yw7th") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrl5w"] +atlas = ExtResource("1_yw7th") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgy7w"] +atlas = ExtResource("1_yw7th") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk43v"] +atlas = ExtResource("1_yw7th") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_robe4"] +atlas = ExtResource("1_yw7th") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oy24"] +atlas = ExtResource("1_yw7th") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7ilc"] +atlas = ExtResource("1_yw7th") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo7pn"] +atlas = ExtResource("1_yw7th") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2r7i"] +atlas = ExtResource("1_yw7th") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5ycc"] +atlas = ExtResource("1_yw7th") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06rhk"] +atlas = ExtResource("1_yw7th") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_624bi"] +atlas = ExtResource("1_yw7th") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sskai"] +atlas = ExtResource("1_yw7th") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwok5"] +atlas = ExtResource("1_yw7th") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6t73"] +atlas = ExtResource("1_yw7th") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ij1p"] +atlas = ExtResource("1_yw7th") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fq6f"] +atlas = ExtResource("1_yw7th") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qil8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnh0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4nfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23wvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfeut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ms3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acmex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrl5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgy7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk43v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_robe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oy24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7ilc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo7pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2r7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5ycc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06rhk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_624bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sskai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwok5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6t73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ij1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fq6f") +}], +"loop": true, +"name": &"ironcliffeheart", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/f3_thoughtexchange.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f3_thoughtexchange.tres new file mode 100644 index 0000000..bff1bd7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f3_thoughtexchange.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://b7y5bovnvye0v"] + +[ext_resource type="Texture2D" uid="uid://blngke7wqlkj3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png" id="1_kurjj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_06ypb"] +atlas = ExtResource("1_kurjj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgw42"] +atlas = ExtResource("1_kurjj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsdwg"] +atlas = ExtResource("1_kurjj") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na3w4"] +atlas = ExtResource("1_kurjj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtcr5"] +atlas = ExtResource("1_kurjj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxt6f"] +atlas = ExtResource("1_kurjj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kldyk"] +atlas = ExtResource("1_kurjj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7ylb"] +atlas = ExtResource("1_kurjj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ubju"] +atlas = ExtResource("1_kurjj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5inh"] +atlas = ExtResource("1_kurjj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ow2"] +atlas = ExtResource("1_kurjj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5es1w"] +atlas = ExtResource("1_kurjj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aruc0"] +atlas = ExtResource("1_kurjj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5538b"] +atlas = ExtResource("1_kurjj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e5i7"] +atlas = ExtResource("1_kurjj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suqr7"] +atlas = ExtResource("1_kurjj") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imk7p"] +atlas = ExtResource("1_kurjj") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvkfn"] +atlas = ExtResource("1_kurjj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6amd"] +atlas = ExtResource("1_kurjj") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_06ypb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgw42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsdwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na3w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtcr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxt6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kldyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7ylb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ubju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5inh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ow2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5es1w") +}], +"loop": true, +"name": &"action", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aruc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5538b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e5i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suqr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imk7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvkfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6amd") +}], +"loop": true, +"name": &"thoughtexchange", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/f4_shadowblossom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f4_shadowblossom.tres new file mode 100644 index 0000000..3cf521c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/f4_shadowblossom.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://bj0dxay6hyixy"] + +[ext_resource type="Texture2D" uid="uid://l4f3vs5pfn1k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png" id="1_3c87d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x7a3"] +atlas = ExtResource("1_3c87d") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yckr1"] +atlas = ExtResource("1_3c87d") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7cfy"] +atlas = ExtResource("1_3c87d") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieapl"] +atlas = ExtResource("1_3c87d") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh2xg"] +atlas = ExtResource("1_3c87d") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3errc"] +atlas = ExtResource("1_3c87d") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7noj"] +atlas = ExtResource("1_3c87d") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q41ni"] +atlas = ExtResource("1_3c87d") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur1ix"] +atlas = ExtResource("1_3c87d") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlhma"] +atlas = ExtResource("1_3c87d") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyekp"] +atlas = ExtResource("1_3c87d") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwoew"] +atlas = ExtResource("1_3c87d") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iiua"] +atlas = ExtResource("1_3c87d") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3ntx"] +atlas = ExtResource("1_3c87d") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8x6u"] +atlas = ExtResource("1_3c87d") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esyt2"] +atlas = ExtResource("1_3c87d") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ye76"] +atlas = ExtResource("1_3c87d") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1hmy"] +atlas = ExtResource("1_3c87d") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x7a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yckr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7cfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieapl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh2xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3errc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7noj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q41ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur1ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlhma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyekp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwoew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iiua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3ntx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8x6u") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_esyt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ye76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1hmy") +}], +"loop": true, +"name": &"shadowblossom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_afterglow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_afterglow.tres new file mode 100644 index 0000000..fa739a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_afterglow.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://b7jg2gfnu4n5b"] + +[ext_resource type="Texture2D" uid="uid://by35prlg52y3l" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png" id="1_h8jhq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nst0o"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofshi"] +atlas = ExtResource("1_h8jhq") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mo2n"] +atlas = ExtResource("1_h8jhq") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twb4w"] +atlas = ExtResource("1_h8jhq") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0gh7"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmn8b"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oykvn"] +atlas = ExtResource("1_h8jhq") +region = Rect2(210, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pla8"] +atlas = ExtResource("1_h8jhq") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rnjj"] +atlas = ExtResource("1_h8jhq") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv5no"] +atlas = ExtResource("1_h8jhq") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qacys"] +atlas = ExtResource("1_h8jhq") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_420yv"] +atlas = ExtResource("1_h8jhq") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt2ir"] +atlas = ExtResource("1_h8jhq") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg5o7"] +atlas = ExtResource("1_h8jhq") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnk11"] +atlas = ExtResource("1_h8jhq") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kat54"] +atlas = ExtResource("1_h8jhq") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oequ0"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1b3h"] +atlas = ExtResource("1_h8jhq") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s83ct"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvemg"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhwke"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyeu7"] +atlas = ExtResource("1_h8jhq") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecjko"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47rq6"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ill84"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mapcn"] +atlas = ExtResource("1_h8jhq") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t6gp"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcj4c"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cybrr"] +atlas = ExtResource("1_h8jhq") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf2qp"] +atlas = ExtResource("1_h8jhq") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oovfy"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfpfp"] +atlas = ExtResource("1_h8jhq") +region = Rect2(175, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nst0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofshi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mo2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twb4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0gh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmn8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oykvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pla8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rnjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv5no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qacys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_420yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt2ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg5o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnk11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kat54") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oequ0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1b3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s83ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvemg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhwke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyeu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecjko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47rq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ill84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mapcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t6gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcj4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cybrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf2qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oovfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfpfp") +}], +"loop": true, +"name": &"afterglow", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_kingsguard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_kingsguard.tres new file mode 100644 index 0000000..0884441 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_kingsguard.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://5j0e0j8y7i3f"] + +[ext_resource type="Texture2D" uid="uid://ct1mgkrwd5psy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png" id="1_wph6u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj2ji"] +atlas = ExtResource("1_wph6u") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo3no"] +atlas = ExtResource("1_wph6u") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gckx7"] +atlas = ExtResource("1_wph6u") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgpqo"] +atlas = ExtResource("1_wph6u") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlyh3"] +atlas = ExtResource("1_wph6u") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yc7c"] +atlas = ExtResource("1_wph6u") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3v3n"] +atlas = ExtResource("1_wph6u") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ptb5"] +atlas = ExtResource("1_wph6u") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaw43"] +atlas = ExtResource("1_wph6u") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs8y3"] +atlas = ExtResource("1_wph6u") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shxxl"] +atlas = ExtResource("1_wph6u") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unjr5"] +atlas = ExtResource("1_wph6u") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2yy0"] +atlas = ExtResource("1_wph6u") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijasp"] +atlas = ExtResource("1_wph6u") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jccbi"] +atlas = ExtResource("1_wph6u") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6oph"] +atlas = ExtResource("1_wph6u") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vurlb"] +atlas = ExtResource("1_wph6u") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7be56"] +atlas = ExtResource("1_wph6u") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gp3m"] +atlas = ExtResource("1_wph6u") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mprb"] +atlas = ExtResource("1_wph6u") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj2ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo3no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gckx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgpqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlyh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yc7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3v3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ptb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaw43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs8y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shxxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unjr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2yy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijasp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jccbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6oph") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vurlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7be56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gp3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mprb") +}], +"loop": true, +"name": &"kingsguard", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_roar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_roar.tres new file mode 100644 index 0000000..3199836 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_roar.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://cqhg0kfd3xthb"] + +[ext_resource type="Texture2D" uid="uid://b6oapvjdcd6ra" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png" id="1_67sda"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_omimm"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87gny"] +atlas = ExtResource("1_67sda") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3jwt"] +atlas = ExtResource("1_67sda") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltbd1"] +atlas = ExtResource("1_67sda") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ij7j"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3swny"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbppl"] +atlas = ExtResource("1_67sda") +region = Rect2(210, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iasny"] +atlas = ExtResource("1_67sda") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upchs"] +atlas = ExtResource("1_67sda") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hfq3"] +atlas = ExtResource("1_67sda") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy8wt"] +atlas = ExtResource("1_67sda") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37d48"] +atlas = ExtResource("1_67sda") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvbby"] +atlas = ExtResource("1_67sda") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1xnt"] +atlas = ExtResource("1_67sda") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ns0a"] +atlas = ExtResource("1_67sda") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5au0u"] +atlas = ExtResource("1_67sda") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx536"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl8cl"] +atlas = ExtResource("1_67sda") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crv8g"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tvn3"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdvfx"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlqhh"] +atlas = ExtResource("1_67sda") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m227b"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as5r7"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xqlx"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w8yn"] +atlas = ExtResource("1_67sda") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu7kl"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywxtx"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6tp6"] +atlas = ExtResource("1_67sda") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcvvn"] +atlas = ExtResource("1_67sda") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8msq"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibpio"] +atlas = ExtResource("1_67sda") +region = Rect2(175, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_omimm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87gny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3jwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltbd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ij7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3swny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbppl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iasny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upchs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hfq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy8wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37d48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvbby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1xnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ns0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5au0u") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx536") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl8cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crv8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tvn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdvfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlqhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m227b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as5r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xqlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w8yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu7kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywxtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6tp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcvvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8msq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibpio") +}], +"loop": true, +"name": &"roar", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_tesmpest.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_tesmpest.tres new file mode 100644 index 0000000..f1b5bdd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f1_tesmpest.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://drndsor2hb5ye"] + +[ext_resource type="Texture2D" uid="uid://c0l0orbis80yn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png" id="1_523rd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oybpd"] +atlas = ExtResource("1_523rd") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n53m3"] +atlas = ExtResource("1_523rd") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdmer"] +atlas = ExtResource("1_523rd") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfhyt"] +atlas = ExtResource("1_523rd") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srif3"] +atlas = ExtResource("1_523rd") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilujo"] +atlas = ExtResource("1_523rd") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbvyq"] +atlas = ExtResource("1_523rd") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b1b0"] +atlas = ExtResource("1_523rd") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0guk"] +atlas = ExtResource("1_523rd") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_777dc"] +atlas = ExtResource("1_523rd") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gde5v"] +atlas = ExtResource("1_523rd") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn34v"] +atlas = ExtResource("1_523rd") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o24qh"] +atlas = ExtResource("1_523rd") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a04mx"] +atlas = ExtResource("1_523rd") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miirs"] +atlas = ExtResource("1_523rd") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddqvs"] +atlas = ExtResource("1_523rd") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyftb"] +atlas = ExtResource("1_523rd") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp0tq"] +atlas = ExtResource("1_523rd") +region = Rect2(0, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oybpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n53m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdmer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfhyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srif3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilujo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbvyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b1b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0guk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_777dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gde5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn34v") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o24qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a04mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miirs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddqvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyftb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp0tq") +}], +"loop": true, +"name": &"tesmpest", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_blink.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_blink.tres new file mode 100644 index 0000000..f96df7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_blink.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://vy6vtq83ewgj"] + +[ext_resource type="Texture2D" uid="uid://b3i6li7jbhahm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png" id="1_b4v61"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3wtv"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob8gf"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub565"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xxhy"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqkhp"] +atlas = ExtResource("1_b4v61") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7j6m"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huhv3"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2ndf"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff8g0"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rpac"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swu10"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn5il"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02qt7"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj3q5"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bh1d"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isaj7"] +atlas = ExtResource("1_b4v61") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aobc"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqjxq"] +atlas = ExtResource("1_b4v61") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qkud"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cdu5"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp3wr"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd4ns"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqwbh"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm78c"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go8wu"] +atlas = ExtResource("1_b4v61") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6qyn"] +atlas = ExtResource("1_b4v61") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj4ta"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oqkg"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxuk8"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unh8r"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5tg1"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jfiq"] +atlas = ExtResource("1_b4v61") +region = Rect2(70, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3wtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob8gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub565") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xxhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqkhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7j6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huhv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2ndf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff8g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rpac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swu10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn5il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02qt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj3q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bh1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isaj7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aobc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqjxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qkud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cdu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp3wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd4ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqwbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm78c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go8wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6qyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj4ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oqkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxuk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unh8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5tg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jfiq") +}], +"loop": true, +"name": &"blink", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_phoenixfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_phoenixfire.tres new file mode 100644 index 0000000..941fc32 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_phoenixfire.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://bcu4tk11fds3x"] + +[ext_resource type="Texture2D" uid="uid://cf8h5gtxds7yw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png" id="1_fkto0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dxp8"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd7eg"] +atlas = ExtResource("1_fkto0") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uskw"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud37x"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_645be"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb3bv"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0owg"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut80s"] +atlas = ExtResource("1_fkto0") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcl86"] +atlas = ExtResource("1_fkto0") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgjsm"] +atlas = ExtResource("1_fkto0") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1bm6"] +atlas = ExtResource("1_fkto0") +region = Rect2(35, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dxp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd7eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uskw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud37x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_645be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb3bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0owg") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut80s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcl86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgjsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1bm6") +}], +"loop": true, +"name": &"phoenixfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_spellsword.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_spellsword.tres new file mode 100644 index 0000000..23301f3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_spellsword.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://b0uu5pqe1yauc"] + +[ext_resource type="Texture2D" uid="uid://dqsep4mm04gw6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png" id="1_hi280"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkr3k"] +atlas = ExtResource("1_hi280") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aioff"] +atlas = ExtResource("1_hi280") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_637gu"] +atlas = ExtResource("1_hi280") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj77v"] +atlas = ExtResource("1_hi280") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cobyw"] +atlas = ExtResource("1_hi280") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um81a"] +atlas = ExtResource("1_hi280") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5jcy"] +atlas = ExtResource("1_hi280") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdk1e"] +atlas = ExtResource("1_hi280") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa7oa"] +atlas = ExtResource("1_hi280") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc4sp"] +atlas = ExtResource("1_hi280") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fq6a"] +atlas = ExtResource("1_hi280") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cugw3"] +atlas = ExtResource("1_hi280") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qqua"] +atlas = ExtResource("1_hi280") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjxol"] +atlas = ExtResource("1_hi280") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cly00"] +atlas = ExtResource("1_hi280") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5utr"] +atlas = ExtResource("1_hi280") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_403dm"] +atlas = ExtResource("1_hi280") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkr3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aioff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_637gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj77v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cobyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um81a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5jcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdk1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa7oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc4sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fq6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cugw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qqua") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjxol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cly00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5utr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_403dm") +}], +"loop": true, +"name": &"spellsword", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_twilightsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_twilightsurge.tres new file mode 100644 index 0000000..5698f47 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f2_twilightsurge.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://q5uk6pomnkbu"] + +[ext_resource type="Texture2D" uid="uid://c5bnv6v6phe2n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png" id="1_hnfhe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb5y2"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3kof"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqgvv"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5garn"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ngs"] +atlas = ExtResource("1_hnfhe") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg45k"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi4p8"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfr8w"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1ag0"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4an58"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1kh6"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbt82"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37v2n"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uhmh"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlavs"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1dqm"] +atlas = ExtResource("1_hnfhe") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mxll"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pooed"] +atlas = ExtResource("1_hnfhe") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgv7t"] +atlas = ExtResource("1_hnfhe") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1k3p"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu37a"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k7s2"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21ipi"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4hwb"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqh6j"] +atlas = ExtResource("1_hnfhe") +region = Rect2(35, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65l67"] +atlas = ExtResource("1_hnfhe") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et3a1"] +atlas = ExtResource("1_hnfhe") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6rto"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 210, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b778"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 175, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmi86"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 140, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1rte"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 105, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21wya"] +atlas = ExtResource("1_hnfhe") +region = Rect2(70, 70, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb5y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3kof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqgvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5garn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ngs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg45k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi4p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfr8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1ag0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4an58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1kh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbt82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37v2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uhmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlavs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1dqm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mxll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pooed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgv7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1k3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu37a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k7s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21ipi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4hwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqh6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65l67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et3a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6rto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b778") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmi86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1rte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21wya") +}], +"loop": true, +"name": &"twilightsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_hex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_hex.tres new file mode 100644 index 0000000..458a579 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_hex.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://c8siuai7jwuim"] + +[ext_resource type="Texture2D" uid="uid://fh24hydujfvq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png" id="1_h04pe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2npu"] +atlas = ExtResource("1_h04pe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuq7j"] +atlas = ExtResource("1_h04pe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fys4k"] +atlas = ExtResource("1_h04pe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi22v"] +atlas = ExtResource("1_h04pe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f8tv"] +atlas = ExtResource("1_h04pe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmebq"] +atlas = ExtResource("1_h04pe") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf1n5"] +atlas = ExtResource("1_h04pe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srx6t"] +atlas = ExtResource("1_h04pe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exm13"] +atlas = ExtResource("1_h04pe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ychue"] +atlas = ExtResource("1_h04pe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywxqt"] +atlas = ExtResource("1_h04pe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldd0h"] +atlas = ExtResource("1_h04pe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtyg4"] +atlas = ExtResource("1_h04pe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fut0b"] +atlas = ExtResource("1_h04pe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bllse"] +atlas = ExtResource("1_h04pe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gq7c"] +atlas = ExtResource("1_h04pe") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akem2"] +atlas = ExtResource("1_h04pe") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nfos"] +atlas = ExtResource("1_h04pe") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2npu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuq7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fys4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi22v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f8tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmebq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf1n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srx6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exm13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ychue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywxqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldd0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtyg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fut0b") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bllse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gq7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akem2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nfos") +}], +"loop": true, +"name": &"hex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_psionicrecall.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_psionicrecall.tres new file mode 100644 index 0000000..c3f95a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_psionicrecall.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://b83bmqqwijxsb"] + +[ext_resource type="Texture2D" uid="uid://bprvygq5qbs3h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png" id="1_kmh4a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxb54"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htpmt"] +atlas = ExtResource("1_kmh4a") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e44k"] +atlas = ExtResource("1_kmh4a") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wmur"] +atlas = ExtResource("1_kmh4a") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wehib"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv2em"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kigk"] +atlas = ExtResource("1_kmh4a") +region = Rect2(210, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qivpw"] +atlas = ExtResource("1_kmh4a") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tnip"] +atlas = ExtResource("1_kmh4a") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfxsx"] +atlas = ExtResource("1_kmh4a") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbaj4"] +atlas = ExtResource("1_kmh4a") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrjc2"] +atlas = ExtResource("1_kmh4a") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecfsx"] +atlas = ExtResource("1_kmh4a") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wybsp"] +atlas = ExtResource("1_kmh4a") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu600"] +atlas = ExtResource("1_kmh4a") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3nt8"] +atlas = ExtResource("1_kmh4a") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo5qe"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c34v0"] +atlas = ExtResource("1_kmh4a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qid2j"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxr3m"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n74ue"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihcf2"] +atlas = ExtResource("1_kmh4a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwiwj"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vrue"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k10q"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55rxp"] +atlas = ExtResource("1_kmh4a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dmqw"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3upf1"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgh8a"] +atlas = ExtResource("1_kmh4a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4aao"] +atlas = ExtResource("1_kmh4a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w83vs"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfd8m"] +atlas = ExtResource("1_kmh4a") +region = Rect2(175, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxb54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htpmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e44k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wmur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wehib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv2em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kigk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qivpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tnip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfxsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbaj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrjc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecfsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wybsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu600") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3nt8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo5qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c34v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qid2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxr3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n74ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihcf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwiwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vrue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k10q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55rxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dmqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3upf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgh8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4aao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w83vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfd8m") +}], +"loop": true, +"name": &"psionicrecall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_windshroud2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_windshroud2.tres new file mode 100644 index 0000000..3e73a52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f3_windshroud2.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://b72b2gi8kbgei"] + +[ext_resource type="Texture2D" uid="uid://dk8dtssxtvrqx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png" id="1_6be0d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpyks"] +atlas = ExtResource("1_6be0d") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cslb3"] +atlas = ExtResource("1_6be0d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w678r"] +atlas = ExtResource("1_6be0d") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v8kf"] +atlas = ExtResource("1_6be0d") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gxe5"] +atlas = ExtResource("1_6be0d") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bad7k"] +atlas = ExtResource("1_6be0d") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3dkh"] +atlas = ExtResource("1_6be0d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aujmh"] +atlas = ExtResource("1_6be0d") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yxt7"] +atlas = ExtResource("1_6be0d") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khfye"] +atlas = ExtResource("1_6be0d") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5v6v"] +atlas = ExtResource("1_6be0d") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2btub"] +atlas = ExtResource("1_6be0d") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22sw3"] +atlas = ExtResource("1_6be0d") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ui1y"] +atlas = ExtResource("1_6be0d") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sppx"] +atlas = ExtResource("1_6be0d") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r55bb"] +atlas = ExtResource("1_6be0d") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvi0g"] +atlas = ExtResource("1_6be0d") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7v5w"] +atlas = ExtResource("1_6be0d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6spt"] +atlas = ExtResource("1_6be0d") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwtp4"] +atlas = ExtResource("1_6be0d") +region = Rect2(140, 70, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpyks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cslb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w678r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v8kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gxe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bad7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3dkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aujmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yxt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khfye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5v6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2btub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22sw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ui1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sppx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r55bb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvi0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7v5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6spt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwtp4") +}], +"loop": true, +"name": &"windshroud2", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_husk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_husk.tres new file mode 100644 index 0000000..8890d34 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_husk.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://l8d8h5n2a3t4"] + +[ext_resource type="Texture2D" uid="uid://cqa7wepuuv1w1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png" id="1_3i7qk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk12v"] +atlas = ExtResource("1_3i7qk") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkdm7"] +atlas = ExtResource("1_3i7qk") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5w7h"] +atlas = ExtResource("1_3i7qk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp22x"] +atlas = ExtResource("1_3i7qk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrxbw"] +atlas = ExtResource("1_3i7qk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hafr"] +atlas = ExtResource("1_3i7qk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1toci"] +atlas = ExtResource("1_3i7qk") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kicyl"] +atlas = ExtResource("1_3i7qk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt8ov"] +atlas = ExtResource("1_3i7qk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vscnu"] +atlas = ExtResource("1_3i7qk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc4jm"] +atlas = ExtResource("1_3i7qk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er4xg"] +atlas = ExtResource("1_3i7qk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvgsq"] +atlas = ExtResource("1_3i7qk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icrdh"] +atlas = ExtResource("1_3i7qk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruiac"] +atlas = ExtResource("1_3i7qk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbpx2"] +atlas = ExtResource("1_3i7qk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me3pm"] +atlas = ExtResource("1_3i7qk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kstet"] +atlas = ExtResource("1_3i7qk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b40xa"] +atlas = ExtResource("1_3i7qk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjghn"] +atlas = ExtResource("1_3i7qk") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jto2y"] +atlas = ExtResource("1_3i7qk") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk12v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkdm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5w7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp22x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrxbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hafr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1toci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kicyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt8ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vscnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc4jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er4xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvgsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icrdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruiac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbpx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me3pm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kstet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b40xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjghn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jto2y") +}], +"loop": true, +"name": &"husk", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_shadowspawn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_shadowspawn.tres new file mode 100644 index 0000000..7a85976 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_shadowspawn.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://cf46u5676ned4"] + +[ext_resource type="Texture2D" uid="uid://0o235nk18xcj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png" id="1_3woso"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_edinc"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcmir"] +atlas = ExtResource("1_3woso") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1xbr"] +atlas = ExtResource("1_3woso") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkgyt"] +atlas = ExtResource("1_3woso") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tqrq"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edpje"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sv4r"] +atlas = ExtResource("1_3woso") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfw4q"] +atlas = ExtResource("1_3woso") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3num"] +atlas = ExtResource("1_3woso") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjado"] +atlas = ExtResource("1_3woso") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmgut"] +atlas = ExtResource("1_3woso") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tufy"] +atlas = ExtResource("1_3woso") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikwev"] +atlas = ExtResource("1_3woso") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wclum"] +atlas = ExtResource("1_3woso") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n80mc"] +atlas = ExtResource("1_3woso") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x2uh"] +atlas = ExtResource("1_3woso") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwaqw"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy5cr"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j06ur"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iye2"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1kql"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnxw3"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd6vr"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjnae"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdnss"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rflyl"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18bms"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6bh1"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45cq4"] +atlas = ExtResource("1_3woso") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uobru"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5dui"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceget"] +atlas = ExtResource("1_3woso") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_edinc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcmir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1xbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkgyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tqrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edpje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sv4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfw4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3num") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjado") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmgut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tufy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikwev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wclum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n80mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x2uh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwaqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy5cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j06ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iye2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1kql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnxw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd6vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjnae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdnss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rflyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18bms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6bh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45cq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uobru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5dui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceget") +}], +"loop": true, +"name": &"shadowspawn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_superhusk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_superhusk.tres new file mode 100644 index 0000000..e32e816 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_superhusk.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://ct0hh0n4xpum"] + +[ext_resource type="Texture2D" uid="uid://j5t4nkqk3vh8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png" id="1_6fkiw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqj13"] +atlas = ExtResource("1_6fkiw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klvl4"] +atlas = ExtResource("1_6fkiw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3lw2"] +atlas = ExtResource("1_6fkiw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa1ov"] +atlas = ExtResource("1_6fkiw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpi48"] +atlas = ExtResource("1_6fkiw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3o8n"] +atlas = ExtResource("1_6fkiw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i3b2"] +atlas = ExtResource("1_6fkiw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ropbi"] +atlas = ExtResource("1_6fkiw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2ttu"] +atlas = ExtResource("1_6fkiw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc4yy"] +atlas = ExtResource("1_6fkiw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruaov"] +atlas = ExtResource("1_6fkiw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i0us"] +atlas = ExtResource("1_6fkiw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3n4k"] +atlas = ExtResource("1_6fkiw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4drju"] +atlas = ExtResource("1_6fkiw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x53eu"] +atlas = ExtResource("1_6fkiw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfuy5"] +atlas = ExtResource("1_6fkiw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcbpc"] +atlas = ExtResource("1_6fkiw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjhkt"] +atlas = ExtResource("1_6fkiw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83ugn"] +atlas = ExtResource("1_6fkiw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jq4i"] +atlas = ExtResource("1_6fkiw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf3en"] +atlas = ExtResource("1_6fkiw") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqj13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klvl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3lw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa1ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpi48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3o8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i3b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ropbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2ttu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc4yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruaov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i0us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3n4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4drju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x53eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfuy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcbpc") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjhkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83ugn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jq4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf3en") +}], +"loop": true, +"name": &"superhusk", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supershadowspawn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supershadowspawn.tres new file mode 100644 index 0000000..d6ad99a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supershadowspawn.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://cj7rh5qd3dx2"] + +[ext_resource type="Texture2D" uid="uid://duwmsvw65j43w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png" id="1_m1o7o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt0m1"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dboqt"] +atlas = ExtResource("1_m1o7o") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t48jp"] +atlas = ExtResource("1_m1o7o") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4hwv"] +atlas = ExtResource("1_m1o7o") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m42m"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xat55"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lkut"] +atlas = ExtResource("1_m1o7o") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhtwt"] +atlas = ExtResource("1_m1o7o") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x5v8"] +atlas = ExtResource("1_m1o7o") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov6tn"] +atlas = ExtResource("1_m1o7o") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gityh"] +atlas = ExtResource("1_m1o7o") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6abc2"] +atlas = ExtResource("1_m1o7o") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpth2"] +atlas = ExtResource("1_m1o7o") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34r3o"] +atlas = ExtResource("1_m1o7o") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlgvj"] +atlas = ExtResource("1_m1o7o") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq3oo"] +atlas = ExtResource("1_m1o7o") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd6hw"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb11o"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8by5e"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlks4"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsuwp"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymqnr"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2hro"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppgn1"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rra3x"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ta7d"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulkc3"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh05p"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2bsm"] +atlas = ExtResource("1_m1o7o") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngpt"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ioc4"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s2wv"] +atlas = ExtResource("1_m1o7o") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt0m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dboqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t48jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4hwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m42m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xat55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lkut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhtwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x5v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov6tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gityh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6abc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpth2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34r3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlgvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq3oo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd6hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb11o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8by5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlks4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsuwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymqnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2hro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppgn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rra3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ta7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulkc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh05p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2bsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ioc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s2wv") +}], +"loop": true, +"name": &"supershadowspawn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supertaint.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supertaint.tres new file mode 100644 index 0000000..22ab246 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_supertaint.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://chfswnmyuowpg"] + +[ext_resource type="Texture2D" uid="uid://c4lf8yqyw87nd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png" id="1_oc6nh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4sla"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wg3p"] +atlas = ExtResource("1_oc6nh") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfq18"] +atlas = ExtResource("1_oc6nh") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nrdc"] +atlas = ExtResource("1_oc6nh") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smd5s"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0fw2"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq8hv"] +atlas = ExtResource("1_oc6nh") +region = Rect2(210, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ghp"] +atlas = ExtResource("1_oc6nh") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30c4o"] +atlas = ExtResource("1_oc6nh") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmmdq"] +atlas = ExtResource("1_oc6nh") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhd5x"] +atlas = ExtResource("1_oc6nh") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unthu"] +atlas = ExtResource("1_oc6nh") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7td6"] +atlas = ExtResource("1_oc6nh") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu75y"] +atlas = ExtResource("1_oc6nh") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py1d3"] +atlas = ExtResource("1_oc6nh") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v081h"] +atlas = ExtResource("1_oc6nh") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajm0i"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuotc"] +atlas = ExtResource("1_oc6nh") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdpk0"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c82d"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqs5l"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkl7v"] +atlas = ExtResource("1_oc6nh") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk7u8"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi77q"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26cgf"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k4kx"] +atlas = ExtResource("1_oc6nh") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0qqh"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0dwi"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsx7l"] +atlas = ExtResource("1_oc6nh") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi5kj"] +atlas = ExtResource("1_oc6nh") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vdwk"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btel6"] +atlas = ExtResource("1_oc6nh") +region = Rect2(175, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4sla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wg3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfq18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nrdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smd5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0fw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq8hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ghp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30c4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmmdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhd5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unthu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7td6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu75y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py1d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v081h") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajm0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuotc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdpk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c82d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqs5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkl7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk7u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi77q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26cgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k4kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0qqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0dwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsx7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi5kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vdwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btel6") +}], +"loop": true, +"name": &"supertaint", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_taint.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_taint.tres new file mode 100644 index 0000000..8ae9b68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f4_taint.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://brq5te04slrb2"] + +[ext_resource type="Texture2D" uid="uid://dvn88k3yxh0vw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png" id="1_5ej1a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_myfkk"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ponps"] +atlas = ExtResource("1_5ej1a") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llfib"] +atlas = ExtResource("1_5ej1a") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbin8"] +atlas = ExtResource("1_5ej1a") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x54kd"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05lgr"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3odmp"] +atlas = ExtResource("1_5ej1a") +region = Rect2(210, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsetd"] +atlas = ExtResource("1_5ej1a") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2jwy"] +atlas = ExtResource("1_5ej1a") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dophf"] +atlas = ExtResource("1_5ej1a") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdhm6"] +atlas = ExtResource("1_5ej1a") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6c1j"] +atlas = ExtResource("1_5ej1a") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8a1r"] +atlas = ExtResource("1_5ej1a") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58wl5"] +atlas = ExtResource("1_5ej1a") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beea1"] +atlas = ExtResource("1_5ej1a") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7m8f"] +atlas = ExtResource("1_5ej1a") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgeld"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1g8o"] +atlas = ExtResource("1_5ej1a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqkyg"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxefc"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obwy0"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vxuf"] +atlas = ExtResource("1_5ej1a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5cot"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmpxi"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmh2x"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5bjg"] +atlas = ExtResource("1_5ej1a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmmfg"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs4xu"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j64dr"] +atlas = ExtResource("1_5ej1a") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7buf"] +atlas = ExtResource("1_5ej1a") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hel3l"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdq7r"] +atlas = ExtResource("1_5ej1a") +region = Rect2(175, 35, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_myfkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ponps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llfib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbin8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x54kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05lgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3odmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsetd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2jwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dophf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdhm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6c1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8a1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58wl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beea1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7m8f") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgeld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1g8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqkyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxefc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obwy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vxuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5cot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmpxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmh2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5bjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmmfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs4xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j64dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7buf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hel3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdq7r") +}], +"loop": true, +"name": &"taint", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_egg.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_egg.tres new file mode 100644 index 0000000..448ad23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_egg.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://dxrq8h6si5mgc"] + +[ext_resource type="Texture2D" uid="uid://2c31nwdk15sx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png" id="1_o28cw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_anomh"] +atlas = ExtResource("1_o28cw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe4qb"] +atlas = ExtResource("1_o28cw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r22sq"] +atlas = ExtResource("1_o28cw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yecb0"] +atlas = ExtResource("1_o28cw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga0u4"] +atlas = ExtResource("1_o28cw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5u3t"] +atlas = ExtResource("1_o28cw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0c7b"] +atlas = ExtResource("1_o28cw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrls1"] +atlas = ExtResource("1_o28cw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5ohw"] +atlas = ExtResource("1_o28cw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y3s7"] +atlas = ExtResource("1_o28cw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0xub"] +atlas = ExtResource("1_o28cw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8giuq"] +atlas = ExtResource("1_o28cw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7xei"] +atlas = ExtResource("1_o28cw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxqyc"] +atlas = ExtResource("1_o28cw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k8yo"] +atlas = ExtResource("1_o28cw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn7uh"] +atlas = ExtResource("1_o28cw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1on2"] +atlas = ExtResource("1_o28cw") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_anomh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe4qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r22sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yecb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga0u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5u3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0c7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrls1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5ohw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y3s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0xub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8giuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7xei") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxqyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k8yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn7uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1on2") +}], +"loop": true, +"name": &"egg", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_overload.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_overload.tres new file mode 100644 index 0000000..027c97d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_overload.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://c1whjp2mya2c"] + +[ext_resource type="Texture2D" uid="uid://hkye80itf02f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png" id="1_8qc6d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6tda"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwot0"] +atlas = ExtResource("1_8qc6d") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh038"] +atlas = ExtResource("1_8qc6d") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiesl"] +atlas = ExtResource("1_8qc6d") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpjyy"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl3qw"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct1tx"] +atlas = ExtResource("1_8qc6d") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7i0n"] +atlas = ExtResource("1_8qc6d") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3inen"] +atlas = ExtResource("1_8qc6d") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeb4p"] +atlas = ExtResource("1_8qc6d") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amwl5"] +atlas = ExtResource("1_8qc6d") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ijh2"] +atlas = ExtResource("1_8qc6d") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk6bx"] +atlas = ExtResource("1_8qc6d") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56uq7"] +atlas = ExtResource("1_8qc6d") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tl46"] +atlas = ExtResource("1_8qc6d") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s42n"] +atlas = ExtResource("1_8qc6d") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4vd2"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpo02"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kunov"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvmi"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62bph"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tfe4"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn0tk"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcbf4"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s678f"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p1s1"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akwhc"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtbjt"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph2yn"] +atlas = ExtResource("1_8qc6d") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ywfb"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yrm1"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8tcy"] +atlas = ExtResource("1_8qc6d") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6tda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwot0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh038") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiesl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpjyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl3qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct1tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7i0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3inen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeb4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amwl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ijh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk6bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56uq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tl46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s42n") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4vd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpo02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kunov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62bph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tfe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn0tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcbf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s678f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p1s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akwhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtbjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph2yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ywfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yrm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8tcy") +}], +"loop": true, +"name": &"overload", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_seekingeye.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_seekingeye.tres new file mode 100644 index 0000000..ed1726a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f5_seekingeye.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://dl2mevtecqo5b"] + +[ext_resource type="Texture2D" uid="uid://b03cpd2opegxi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png" id="1_ebo0w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdedd"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlww1"] +atlas = ExtResource("1_ebo0w") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjm0o"] +atlas = ExtResource("1_ebo0w") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikur7"] +atlas = ExtResource("1_ebo0w") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ui7"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvpor"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71tul"] +atlas = ExtResource("1_ebo0w") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw32v"] +atlas = ExtResource("1_ebo0w") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qt74"] +atlas = ExtResource("1_ebo0w") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxvwn"] +atlas = ExtResource("1_ebo0w") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hniq"] +atlas = ExtResource("1_ebo0w") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl6g6"] +atlas = ExtResource("1_ebo0w") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbvdv"] +atlas = ExtResource("1_ebo0w") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt82t"] +atlas = ExtResource("1_ebo0w") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq02x"] +atlas = ExtResource("1_ebo0w") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ho2k"] +atlas = ExtResource("1_ebo0w") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gj0d"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypyuc"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_877my"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epuc3"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a47b"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jib1i"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djxhu"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x74h"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qmxn"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk50t"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn245"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aah88"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hki4"] +atlas = ExtResource("1_ebo0w") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp47o"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g01ff"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pge7w"] +atlas = ExtResource("1_ebo0w") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdedd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlww1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjm0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikur7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ui7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvpor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71tul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw32v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qt74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxvwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hniq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl6g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbvdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt82t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq02x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ho2k") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gj0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypyuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_877my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epuc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a47b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jib1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djxhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x74h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qmxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk50t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn245") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aah88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp47o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g01ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pge7w") +}], +"loop": true, +"name": &"seekingeye", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_kinectcoil.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_kinectcoil.tres new file mode 100644 index 0000000..864fb3b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_kinectcoil.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://b2f67wqwjuve2"] + +[ext_resource type="Texture2D" uid="uid://8d73lox00yan" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png" id="1_foh8r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5gh8"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7bok"] +atlas = ExtResource("1_foh8r") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nvcp"] +atlas = ExtResource("1_foh8r") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i570u"] +atlas = ExtResource("1_foh8r") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3q65"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr1kw"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unejw"] +atlas = ExtResource("1_foh8r") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0syf"] +atlas = ExtResource("1_foh8r") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuj4k"] +atlas = ExtResource("1_foh8r") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao7o6"] +atlas = ExtResource("1_foh8r") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og168"] +atlas = ExtResource("1_foh8r") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgbtq"] +atlas = ExtResource("1_foh8r") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vns80"] +atlas = ExtResource("1_foh8r") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0olrx"] +atlas = ExtResource("1_foh8r") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7vd0"] +atlas = ExtResource("1_foh8r") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f60v"] +atlas = ExtResource("1_foh8r") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtj7f"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j56nx"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocx4i"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7idx8"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe2t8"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5davg"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g14s"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tijau"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeepf"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uvf2"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afiqg"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bqq1"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjry3"] +atlas = ExtResource("1_foh8r") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k814t"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgvwm"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epk4c"] +atlas = ExtResource("1_foh8r") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5gh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7bok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nvcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i570u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3q65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr1kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unejw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0syf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuj4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao7o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og168") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgbtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vns80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0olrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7vd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f60v") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtj7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j56nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocx4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7idx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe2t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5davg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g14s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tijau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeepf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uvf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afiqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bqq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjry3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k814t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgvwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epk4c") +}], +"loop": true, +"name": &"kinectcoil", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_stun.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_stun.tres new file mode 100644 index 0000000..dc5a270 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_stun.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://dx63ch4x4f4pq"] + +[ext_resource type="Texture2D" uid="uid://dr2mjkspyfw11" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png" id="1_lm3l1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f4bd"] +atlas = ExtResource("1_lm3l1") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne7i0"] +atlas = ExtResource("1_lm3l1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46ijf"] +atlas = ExtResource("1_lm3l1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl8p0"] +atlas = ExtResource("1_lm3l1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03657"] +atlas = ExtResource("1_lm3l1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrkvf"] +atlas = ExtResource("1_lm3l1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46wtt"] +atlas = ExtResource("1_lm3l1") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp1y2"] +atlas = ExtResource("1_lm3l1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niwur"] +atlas = ExtResource("1_lm3l1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6idc"] +atlas = ExtResource("1_lm3l1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qceaf"] +atlas = ExtResource("1_lm3l1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4dkx"] +atlas = ExtResource("1_lm3l1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k508i"] +atlas = ExtResource("1_lm3l1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18405"] +atlas = ExtResource("1_lm3l1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8am42"] +atlas = ExtResource("1_lm3l1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m04r"] +atlas = ExtResource("1_lm3l1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g3q1"] +atlas = ExtResource("1_lm3l1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta8wy"] +atlas = ExtResource("1_lm3l1") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3h3e"] +atlas = ExtResource("1_lm3l1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0porj"] +atlas = ExtResource("1_lm3l1") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f4bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne7i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46ijf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl8p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03657") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrkvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46wtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp1y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niwur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6idc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qceaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4dkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k508i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18405") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8am42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m04r") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g3q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta8wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3h3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0porj") +}], +"loop": true, +"name": &"stun", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_warbird.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_warbird.tres new file mode 100644 index 0000000..382958b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_warbird.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://cbp0px0706tmc"] + +[ext_resource type="Texture2D" uid="uid://dyxfyf43o5xy4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png" id="1_drrt6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx8vy"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ow7u"] +atlas = ExtResource("1_drrt6") +region = Rect2(140, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv21u"] +atlas = ExtResource("1_drrt6") +region = Rect2(140, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvncc"] +atlas = ExtResource("1_drrt6") +region = Rect2(140, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojcnb"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqs0n"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuuf6"] +atlas = ExtResource("1_drrt6") +region = Rect2(210, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwibf"] +atlas = ExtResource("1_drrt6") +region = Rect2(70, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7cuv"] +atlas = ExtResource("1_drrt6") +region = Rect2(70, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybny2"] +atlas = ExtResource("1_drrt6") +region = Rect2(70, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkmso"] +atlas = ExtResource("1_drrt6") +region = Rect2(35, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dolq0"] +atlas = ExtResource("1_drrt6") +region = Rect2(35, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlnyi"] +atlas = ExtResource("1_drrt6") +region = Rect2(35, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xnyn"] +atlas = ExtResource("1_drrt6") +region = Rect2(0, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jff26"] +atlas = ExtResource("1_drrt6") +region = Rect2(0, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ki1"] +atlas = ExtResource("1_drrt6") +region = Rect2(0, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lshq8"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyjvl"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im3uo"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cawu"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8x72"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqwpw"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goysn"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j116s"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_royqm"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85at8"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5mjx"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_431cs"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pscmh"] +atlas = ExtResource("1_drrt6") +region = Rect2(105, 0, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kho3"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 70, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wklkp"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 35, 34, 34) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysghd"] +atlas = ExtResource("1_drrt6") +region = Rect2(175, 0, 34, 34) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx8vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ow7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv21u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvncc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojcnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqs0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuuf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwibf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7cuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybny2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkmso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dolq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlnyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xnyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jff26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ki1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lshq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyjvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im3uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cawu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8x72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqwpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goysn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j116s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_royqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85at8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5mjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_431cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pscmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kho3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wklkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysghd") +}], +"loop": true, +"name": &"warbird", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_waterball.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_waterball.tres new file mode 100644 index 0000000..3ec0d40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/generalspell_f6_waterball.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://devr165ot48p5"] + +[ext_resource type="Texture2D" uid="uid://d3wydjoo0j0w6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png" id="1_vdyfa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ay8"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjerh"] +atlas = ExtResource("1_vdyfa") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wycu"] +atlas = ExtResource("1_vdyfa") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ernlm"] +atlas = ExtResource("1_vdyfa") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bql1"] +atlas = ExtResource("1_vdyfa") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l4ef"] +atlas = ExtResource("1_vdyfa") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh1mj"] +atlas = ExtResource("1_vdyfa") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp4d3"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xk33"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rbkx"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d11w"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taq4j"] +atlas = ExtResource("1_vdyfa") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llega"] +atlas = ExtResource("1_vdyfa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s2r7"] +atlas = ExtResource("1_vdyfa") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb3vn"] +atlas = ExtResource("1_vdyfa") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tipp"] +atlas = ExtResource("1_vdyfa") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbcew"] +atlas = ExtResource("1_vdyfa") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5s3x"] +atlas = ExtResource("1_vdyfa") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ery3r"] +atlas = ExtResource("1_vdyfa") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ltui"] +atlas = ExtResource("1_vdyfa") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ay8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjerh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wycu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ernlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bql1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l4ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh1mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp4d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xk33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rbkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d11w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taq4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llega") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s2r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb3vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tipp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbcew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5s3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ery3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ltui") +}], +"loop": true, +"name": &"waterball", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aegisbarrier.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aegisbarrier.tres new file mode 100644 index 0000000..6d6e690 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aegisbarrier.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://bce0gvppbwt8n"] + +[ext_resource type="Texture2D" uid="uid://0uk3tft01g6k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png" id="1_4y3av"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi6sc"] +atlas = ExtResource("1_4y3av") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tf1f"] +atlas = ExtResource("1_4y3av") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh7mg"] +atlas = ExtResource("1_4y3av") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5amdq"] +atlas = ExtResource("1_4y3av") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kqfm"] +atlas = ExtResource("1_4y3av") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y00t7"] +atlas = ExtResource("1_4y3av") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8tnx"] +atlas = ExtResource("1_4y3av") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ddwb"] +atlas = ExtResource("1_4y3av") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dbfp"] +atlas = ExtResource("1_4y3av") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acfkk"] +atlas = ExtResource("1_4y3av") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2la4"] +atlas = ExtResource("1_4y3av") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5qxo"] +atlas = ExtResource("1_4y3av") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_natj8"] +atlas = ExtResource("1_4y3av") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b6d3"] +atlas = ExtResource("1_4y3av") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5f00"] +atlas = ExtResource("1_4y3av") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgobh"] +atlas = ExtResource("1_4y3av") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpncs"] +atlas = ExtResource("1_4y3av") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svm6f"] +atlas = ExtResource("1_4y3av") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwgye"] +atlas = ExtResource("1_4y3av") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ugq8"] +atlas = ExtResource("1_4y3av") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h0kj"] +atlas = ExtResource("1_4y3av") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by6l1"] +atlas = ExtResource("1_4y3av") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3wy5"] +atlas = ExtResource("1_4y3av") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbswx"] +atlas = ExtResource("1_4y3av") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_catrb"] +atlas = ExtResource("1_4y3av") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l5ld"] +atlas = ExtResource("1_4y3av") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi6sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tf1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh7mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5amdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kqfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y00t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8tnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ddwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dbfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acfkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2la4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5qxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_natj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b6d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5f00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgobh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpncs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svm6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwgye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ugq8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h0kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by6l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3wy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbswx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_catrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l5ld") +}], +"loop": true, +"name": &"aegisbarrier", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aerial_rift.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aerial_rift.tres new file mode 100644 index 0000000..00d3ac9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aerial_rift.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://m0kcncu2uotg"] + +[ext_resource type="Texture2D" uid="uid://dar7d0hox3kwq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png" id="1_pimda"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_owkum"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c77ay"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_537gy"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoxrs"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjdlt"] +atlas = ExtResource("1_pimda") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nbbt"] +atlas = ExtResource("1_pimda") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6631d"] +atlas = ExtResource("1_pimda") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi1wb"] +atlas = ExtResource("1_pimda") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r0b6"] +atlas = ExtResource("1_pimda") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joya3"] +atlas = ExtResource("1_pimda") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oca3q"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slejg"] +atlas = ExtResource("1_pimda") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vnij"] +atlas = ExtResource("1_pimda") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_owkum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c77ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_537gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoxrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjdlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nbbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6631d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi1wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r0b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joya3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oca3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slejg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vnij") +}], +"loop": true, +"name": &"rift", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_afterglow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_afterglow.tres new file mode 100644 index 0000000..f72c39a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_afterglow.tres @@ -0,0 +1,289 @@ +[gd_resource type="SpriteFrames" load_steps=41 format=3 uid="uid://c5qt11ijt22h"] + +[ext_resource type="Texture2D" uid="uid://b7jx1g06cnr6j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png" id="1_eqmi8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk2lx"] +atlas = ExtResource("1_eqmi8") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dok0"] +atlas = ExtResource("1_eqmi8") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i863j"] +atlas = ExtResource("1_eqmi8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucxtk"] +atlas = ExtResource("1_eqmi8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd10g"] +atlas = ExtResource("1_eqmi8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wgsc"] +atlas = ExtResource("1_eqmi8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m735"] +atlas = ExtResource("1_eqmi8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sr1o"] +atlas = ExtResource("1_eqmi8") +region = Rect2(343, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pevax"] +atlas = ExtResource("1_eqmi8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lclkk"] +atlas = ExtResource("1_eqmi8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry1of"] +atlas = ExtResource("1_eqmi8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo5n6"] +atlas = ExtResource("1_eqmi8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd0ai"] +atlas = ExtResource("1_eqmi8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmi0d"] +atlas = ExtResource("1_eqmi8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d1pn"] +atlas = ExtResource("1_eqmi8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dosw"] +atlas = ExtResource("1_eqmi8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwaw5"] +atlas = ExtResource("1_eqmi8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_534eb"] +atlas = ExtResource("1_eqmi8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2shyd"] +atlas = ExtResource("1_eqmi8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo0x2"] +atlas = ExtResource("1_eqmi8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs8ee"] +atlas = ExtResource("1_eqmi8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxulh"] +atlas = ExtResource("1_eqmi8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fese4"] +atlas = ExtResource("1_eqmi8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsl82"] +atlas = ExtResource("1_eqmi8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wco44"] +atlas = ExtResource("1_eqmi8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7v37"] +atlas = ExtResource("1_eqmi8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad3k8"] +atlas = ExtResource("1_eqmi8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eoco"] +atlas = ExtResource("1_eqmi8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rbnf"] +atlas = ExtResource("1_eqmi8") +region = Rect2(343, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbm77"] +atlas = ExtResource("1_eqmi8") +region = Rect2(343, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ng8l"] +atlas = ExtResource("1_eqmi8") +region = Rect2(343, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iobf"] +atlas = ExtResource("1_eqmi8") +region = Rect2(294, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jf3f"] +atlas = ExtResource("1_eqmi8") +region = Rect2(294, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmlff"] +atlas = ExtResource("1_eqmi8") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dutw"] +atlas = ExtResource("1_eqmi8") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrdgp"] +atlas = ExtResource("1_eqmi8") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hybq6"] +atlas = ExtResource("1_eqmi8") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8jp0"] +atlas = ExtResource("1_eqmi8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkwut"] +atlas = ExtResource("1_eqmi8") +region = Rect2(245, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk2lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dok0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i863j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucxtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd10g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wgsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m735") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sr1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pevax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lclkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo5n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd0ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmi0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d1pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dosw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwaw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_534eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2shyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo0x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs8ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxulh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fese4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsl82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wco44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7v37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad3k8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eoco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rbnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbm77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ng8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iobf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jf3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmlff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dutw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrdgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hybq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8jp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkwut") +}], +"loop": true, +"name": &"afterglow", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aurynnexus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aurynnexus.tres new file mode 100644 index 0000000..faedb72 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_aurynnexus.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://c3kjxs2djshi2"] + +[ext_resource type="Texture2D" uid="uid://rsepi4s5bppa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png" id="1_cttou"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1y3y"] +atlas = ExtResource("1_cttou") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urhn3"] +atlas = ExtResource("1_cttou") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm171"] +atlas = ExtResource("1_cttou") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn530"] +atlas = ExtResource("1_cttou") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui55y"] +atlas = ExtResource("1_cttou") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hww5r"] +atlas = ExtResource("1_cttou") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx11h"] +atlas = ExtResource("1_cttou") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s67oj"] +atlas = ExtResource("1_cttou") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45m1n"] +atlas = ExtResource("1_cttou") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqsfu"] +atlas = ExtResource("1_cttou") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3aag"] +atlas = ExtResource("1_cttou") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_601vd"] +atlas = ExtResource("1_cttou") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bphtw"] +atlas = ExtResource("1_cttou") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaf3g"] +atlas = ExtResource("1_cttou") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1jr3"] +atlas = ExtResource("1_cttou") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4gbv"] +atlas = ExtResource("1_cttou") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvnpl"] +atlas = ExtResource("1_cttou") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqlej"] +atlas = ExtResource("1_cttou") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pbv2"] +atlas = ExtResource("1_cttou") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1wjd"] +atlas = ExtResource("1_cttou") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05dr3"] +atlas = ExtResource("1_cttou") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8isb"] +atlas = ExtResource("1_cttou") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bgy2"] +atlas = ExtResource("1_cttou") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oshla"] +atlas = ExtResource("1_cttou") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1y3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urhn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm171") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn530") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui55y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hww5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx11h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s67oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45m1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqsfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3aag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_601vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bphtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaf3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1jr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4gbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvnpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqlej") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pbv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1wjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05dr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8isb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bgy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oshla") +}], +"loop": true, +"name": &"aurynnexus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_beamshock.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_beamshock.tres new file mode 100644 index 0000000..26c5cee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_beamshock.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://b3e6j1kavlycm"] + +[ext_resource type="Texture2D" uid="uid://bmgohwcykcs3f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png" id="1_8iw8n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2hsc"] +atlas = ExtResource("1_8iw8n") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs8nq"] +atlas = ExtResource("1_8iw8n") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wd8q"] +atlas = ExtResource("1_8iw8n") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c623m"] +atlas = ExtResource("1_8iw8n") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd542"] +atlas = ExtResource("1_8iw8n") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w5ud"] +atlas = ExtResource("1_8iw8n") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqmo3"] +atlas = ExtResource("1_8iw8n") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b0pf"] +atlas = ExtResource("1_8iw8n") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flpur"] +atlas = ExtResource("1_8iw8n") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0xpg"] +atlas = ExtResource("1_8iw8n") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8srcb"] +atlas = ExtResource("1_8iw8n") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk5v7"] +atlas = ExtResource("1_8iw8n") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3sl8"] +atlas = ExtResource("1_8iw8n") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj02p"] +atlas = ExtResource("1_8iw8n") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksqks"] +atlas = ExtResource("1_8iw8n") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2hsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs8nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wd8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c623m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd542") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w5ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqmo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b0pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flpur") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0xpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8srcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk5v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3sl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj02p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksqks") +}], +"loop": true, +"name": &"beamshock", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_blessing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_blessing.tres new file mode 100644 index 0000000..cdb71db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_blessing.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://ck0kvy8uvolpm"] + +[ext_resource type="Texture2D" uid="uid://dkjt5s41jb77u" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png" id="1_odems"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1ni2"] +atlas = ExtResource("1_odems") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rqia"] +atlas = ExtResource("1_odems") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fryo1"] +atlas = ExtResource("1_odems") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h63b"] +atlas = ExtResource("1_odems") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4er75"] +atlas = ExtResource("1_odems") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88osl"] +atlas = ExtResource("1_odems") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8cnk"] +atlas = ExtResource("1_odems") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpyp1"] +atlas = ExtResource("1_odems") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gn1u"] +atlas = ExtResource("1_odems") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxsfp"] +atlas = ExtResource("1_odems") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjegc"] +atlas = ExtResource("1_odems") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlyia"] +atlas = ExtResource("1_odems") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylquy"] +atlas = ExtResource("1_odems") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi5b0"] +atlas = ExtResource("1_odems") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbvnp"] +atlas = ExtResource("1_odems") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx4i5"] +atlas = ExtResource("1_odems") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2urk"] +atlas = ExtResource("1_odems") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibhar"] +atlas = ExtResource("1_odems") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptje8"] +atlas = ExtResource("1_odems") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3yne"] +atlas = ExtResource("1_odems") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1ni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rqia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fryo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h63b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4er75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88osl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8cnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpyp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gn1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxsfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjegc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlyia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylquy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi5b0") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbvnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx4i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2urk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibhar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptje8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3yne") +}], +"loop": true, +"name": &"blessing", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_breathoflife.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_breathoflife.tres new file mode 100644 index 0000000..95c7998 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_breathoflife.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://mns5uq5msf1o"] + +[ext_resource type="Texture2D" uid="uid://cyiwaaaqvevm3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png" id="1_ysaxp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_14vy8"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsnj5"] +atlas = ExtResource("1_ysaxp") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuwpg"] +atlas = ExtResource("1_ysaxp") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2rhx"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_717or"] +atlas = ExtResource("1_ysaxp") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud88a"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycuco"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx3nq"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q855l"] +atlas = ExtResource("1_ysaxp") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybhg5"] +atlas = ExtResource("1_ysaxp") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsy3j"] +atlas = ExtResource("1_ysaxp") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57j78"] +atlas = ExtResource("1_ysaxp") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy412"] +atlas = ExtResource("1_ysaxp") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xdd8"] +atlas = ExtResource("1_ysaxp") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc6co"] +atlas = ExtResource("1_ysaxp") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vlht"] +atlas = ExtResource("1_ysaxp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnbwp"] +atlas = ExtResource("1_ysaxp") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3drxj"] +atlas = ExtResource("1_ysaxp") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_14vy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsnj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuwpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2rhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_717or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud88a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycuco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx3nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q855l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybhg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsy3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57j78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy412") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xdd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc6co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vlht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnbwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3drxj") +}], +"loop": true, +"name": &"breathoflife", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_buffbloom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_buffbloom.tres new file mode 100644 index 0000000..01e821d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_buffbloom.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://deio8274erir4"] + +[ext_resource type="Texture2D" uid="uid://blbbu6rd4ol5m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png" id="1_a0vdt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ciii"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc7m7"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oof2v"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1yvb"] +atlas = ExtResource("1_a0vdt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg757"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2efn"] +atlas = ExtResource("1_a0vdt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0tvm"] +atlas = ExtResource("1_a0vdt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3yj0"] +atlas = ExtResource("1_a0vdt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7x2w"] +atlas = ExtResource("1_a0vdt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rhw3"] +atlas = ExtResource("1_a0vdt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5dj0"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwttx"] +atlas = ExtResource("1_a0vdt") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dau33"] +atlas = ExtResource("1_a0vdt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mon4"] +atlas = ExtResource("1_a0vdt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24shx"] +atlas = ExtResource("1_a0vdt") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ciii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc7m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oof2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1yvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg757") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2efn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0tvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3yj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7x2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rhw3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5dj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwttx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dau33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mon4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24shx") +}], +"loop": true, +"name": &"buffbloom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_celestialconduit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_celestialconduit.tres new file mode 100644 index 0000000..d21aaf5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_celestialconduit.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://bguehtugyf84b"] + +[ext_resource type="Texture2D" uid="uid://cgymxpporivcp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png" id="1_0qs8q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dxkn"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64lbw"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myvj8"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x52f"] +atlas = ExtResource("1_0qs8q") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le5lp"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4t7v"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq1wt"] +atlas = ExtResource("1_0qs8q") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3xjx"] +atlas = ExtResource("1_0qs8q") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byv1y"] +atlas = ExtResource("1_0qs8q") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3xj2"] +atlas = ExtResource("1_0qs8q") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwi10"] +atlas = ExtResource("1_0qs8q") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkuee"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10wad"] +atlas = ExtResource("1_0qs8q") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lgpm"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp062"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euhfl"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbej6"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fext"] +atlas = ExtResource("1_0qs8q") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dxkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64lbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myvj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x52f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le5lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4t7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq1wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3xjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byv1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3xj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwi10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkuee") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_10wad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lgpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp062") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euhfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbej6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fext") +}], +"loop": true, +"name": &"celestialconduit", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_chargeintobattle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_chargeintobattle.tres new file mode 100644 index 0000000..f97e429 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_chargeintobattle.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://247tkiif5m0e"] + +[ext_resource type="Texture2D" uid="uid://bevuop64q018k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png" id="1_wsii3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj5au"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4b0d"] +atlas = ExtResource("1_wsii3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg1dr"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctce1"] +atlas = ExtResource("1_wsii3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1ifq"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdnpt"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6omc"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqa61"] +atlas = ExtResource("1_wsii3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow7co"] +atlas = ExtResource("1_wsii3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtdar"] +atlas = ExtResource("1_wsii3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac7w3"] +atlas = ExtResource("1_wsii3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhwwk"] +atlas = ExtResource("1_wsii3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l10q0"] +atlas = ExtResource("1_wsii3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s78fy"] +atlas = ExtResource("1_wsii3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h6hk"] +atlas = ExtResource("1_wsii3") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ses"] +atlas = ExtResource("1_wsii3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8i3k"] +atlas = ExtResource("1_wsii3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11tov"] +atlas = ExtResource("1_wsii3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8w4r"] +atlas = ExtResource("1_wsii3") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj5au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4b0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg1dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctce1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1ifq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdnpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6omc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqa61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow7co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtdar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac7w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhwwk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l10q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s78fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h6hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ses") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8i3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11tov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8w4r") +}], +"loop": true, +"name": &"chargeintobattle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_circleoflife.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_circleoflife.tres new file mode 100644 index 0000000..d9638f8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_circleoflife.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://drls150o5ijd2"] + +[ext_resource type="Texture2D" uid="uid://c3c03dsy51ept" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png" id="1_54n0s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5ef"] +atlas = ExtResource("1_54n0s") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tg6i"] +atlas = ExtResource("1_54n0s") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbuml"] +atlas = ExtResource("1_54n0s") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fdi4"] +atlas = ExtResource("1_54n0s") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko662"] +atlas = ExtResource("1_54n0s") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmf87"] +atlas = ExtResource("1_54n0s") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_761we"] +atlas = ExtResource("1_54n0s") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x5xx"] +atlas = ExtResource("1_54n0s") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ututg"] +atlas = ExtResource("1_54n0s") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fekrs"] +atlas = ExtResource("1_54n0s") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4f4y"] +atlas = ExtResource("1_54n0s") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j331e"] +atlas = ExtResource("1_54n0s") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn1lc"] +atlas = ExtResource("1_54n0s") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgjhy"] +atlas = ExtResource("1_54n0s") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfgt6"] +atlas = ExtResource("1_54n0s") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vd4f"] +atlas = ExtResource("1_54n0s") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do1jk"] +atlas = ExtResource("1_54n0s") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swwr5"] +atlas = ExtResource("1_54n0s") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bswl3"] +atlas = ExtResource("1_54n0s") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ufwy"] +atlas = ExtResource("1_54n0s") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcl1t"] +atlas = ExtResource("1_54n0s") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tg6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbuml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fdi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko662") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmf87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_761we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x5xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ututg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fekrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4f4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j331e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn1lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgjhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfgt6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vd4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do1jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swwr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bswl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ufwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcl1t") +}], +"loop": true, +"name": &"circleoflife", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_decimate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_decimate.tres new file mode 100644 index 0000000..9bb66bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_decimate.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://c5rjtateovoo7"] + +[ext_resource type="Texture2D" uid="uid://gypu63mpgdna" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png" id="1_cjnsg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpkdn"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atgin"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lrr8"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gybf"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a2gs"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg7e2"] +atlas = ExtResource("1_cjnsg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjg2k"] +atlas = ExtResource("1_cjnsg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj31b"] +atlas = ExtResource("1_cjnsg") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfck5"] +atlas = ExtResource("1_cjnsg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c8en"] +atlas = ExtResource("1_cjnsg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsmt7"] +atlas = ExtResource("1_cjnsg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2qy0"] +atlas = ExtResource("1_cjnsg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1fd1"] +atlas = ExtResource("1_cjnsg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tjlq"] +atlas = ExtResource("1_cjnsg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6p1w"] +atlas = ExtResource("1_cjnsg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gesoj"] +atlas = ExtResource("1_cjnsg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcov3"] +atlas = ExtResource("1_cjnsg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5ldl"] +atlas = ExtResource("1_cjnsg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onqyk"] +atlas = ExtResource("1_cjnsg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcdua"] +atlas = ExtResource("1_cjnsg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1spmt"] +atlas = ExtResource("1_cjnsg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgqa3"] +atlas = ExtResource("1_cjnsg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uxf7"] +atlas = ExtResource("1_cjnsg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le0d1"] +atlas = ExtResource("1_cjnsg") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fbl7"] +atlas = ExtResource("1_cjnsg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfbkv"] +atlas = ExtResource("1_cjnsg") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpkdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atgin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lrr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gybf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a2gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg7e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjg2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj31b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfck5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c8en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsmt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2qy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1fd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tjlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6p1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gesoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcov3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5ldl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onqyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcdua") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1spmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgqa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uxf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le0d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fbl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfbkv") +}], +"loop": true, +"name": &"decimate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinebond.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinebond.tres new file mode 100644 index 0000000..fe0134b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinebond.tres @@ -0,0 +1,205 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://oyxl08vcml58"] + +[ext_resource type="Texture2D" uid="uid://chrqneg7vk153" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png" id="1_ds6n0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgoop"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ahi"] +atlas = ExtResource("1_ds6n0") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lobfg"] +atlas = ExtResource("1_ds6n0") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bs51"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dee8j"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4db45"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g36ig"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xopik"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju4ys"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jilw"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7d73"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs2xi"] +atlas = ExtResource("1_ds6n0") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p2bo"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aba8w"] +atlas = ExtResource("1_ds6n0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pnrl"] +atlas = ExtResource("1_ds6n0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq3ik"] +atlas = ExtResource("1_ds6n0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eti1d"] +atlas = ExtResource("1_ds6n0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm8l4"] +atlas = ExtResource("1_ds6n0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktals"] +atlas = ExtResource("1_ds6n0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8v8x"] +atlas = ExtResource("1_ds6n0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skn34"] +atlas = ExtResource("1_ds6n0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh16t"] +atlas = ExtResource("1_ds6n0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3ut5"] +atlas = ExtResource("1_ds6n0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itfgf"] +atlas = ExtResource("1_ds6n0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo4il"] +atlas = ExtResource("1_ds6n0") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3unx0"] +atlas = ExtResource("1_ds6n0") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xbjs"] +atlas = ExtResource("1_ds6n0") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgoop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ahi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lobfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bs51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dee8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4db45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g36ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xopik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju4ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jilw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7d73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs2xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p2bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aba8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pnrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq3ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eti1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm8l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktals") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8v8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skn34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh16t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3ut5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_itfgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo4il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3unx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xbjs") +}], +"loop": true, +"name": &"divinebond", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinestbond.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinestbond.tres new file mode 100644 index 0000000..fa32764 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_divinestbond.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://iwoponorg23x"] + +[ext_resource type="Texture2D" uid="uid://cffiiijlu2yjo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png" id="1_fvqth"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyfp0"] +atlas = ExtResource("1_fvqth") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmrlu"] +atlas = ExtResource("1_fvqth") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5tw3"] +atlas = ExtResource("1_fvqth") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2w54"] +atlas = ExtResource("1_fvqth") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns6mg"] +atlas = ExtResource("1_fvqth") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi8x2"] +atlas = ExtResource("1_fvqth") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqpyl"] +atlas = ExtResource("1_fvqth") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ib1n"] +atlas = ExtResource("1_fvqth") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wfrn"] +atlas = ExtResource("1_fvqth") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4mnq"] +atlas = ExtResource("1_fvqth") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s1fe"] +atlas = ExtResource("1_fvqth") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8nrc"] +atlas = ExtResource("1_fvqth") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jpky"] +atlas = ExtResource("1_fvqth") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntuxj"] +atlas = ExtResource("1_fvqth") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_furwa"] +atlas = ExtResource("1_fvqth") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmx5j"] +atlas = ExtResource("1_fvqth") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t8rp"] +atlas = ExtResource("1_fvqth") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43t5y"] +atlas = ExtResource("1_fvqth") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuagi"] +atlas = ExtResource("1_fvqth") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es8ex"] +atlas = ExtResource("1_fvqth") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyfp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmrlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5tw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2w54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns6mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi8x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqpyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ib1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wfrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4mnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s1fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8nrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jpky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntuxj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_furwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmx5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t8rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43t5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuagi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es8ex") +}], +"loop": true, +"name": &"divinestbond", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_drainingwave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_drainingwave.tres new file mode 100644 index 0000000..182be8c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_drainingwave.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://del7ytdixkiw5"] + +[ext_resource type="Texture2D" uid="uid://bvy1qj53a5v44" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png" id="1_kd8mh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucmmh"] +atlas = ExtResource("1_kd8mh") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3lxx"] +atlas = ExtResource("1_kd8mh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y14jn"] +atlas = ExtResource("1_kd8mh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgmpx"] +atlas = ExtResource("1_kd8mh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5enfu"] +atlas = ExtResource("1_kd8mh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pqpk"] +atlas = ExtResource("1_kd8mh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e657"] +atlas = ExtResource("1_kd8mh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_810xd"] +atlas = ExtResource("1_kd8mh") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvr5y"] +atlas = ExtResource("1_kd8mh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivpog"] +atlas = ExtResource("1_kd8mh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3utj3"] +atlas = ExtResource("1_kd8mh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf6gu"] +atlas = ExtResource("1_kd8mh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etmh2"] +atlas = ExtResource("1_kd8mh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk4m8"] +atlas = ExtResource("1_kd8mh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsae6"] +atlas = ExtResource("1_kd8mh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u1pu"] +atlas = ExtResource("1_kd8mh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f8l5"] +atlas = ExtResource("1_kd8mh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woxls"] +atlas = ExtResource("1_kd8mh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkyhv"] +atlas = ExtResource("1_kd8mh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cipk0"] +atlas = ExtResource("1_kd8mh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiodj"] +atlas = ExtResource("1_kd8mh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ijmf"] +atlas = ExtResource("1_kd8mh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmwg0"] +atlas = ExtResource("1_kd8mh") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucmmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3lxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y14jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgmpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5enfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pqpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e657") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_810xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvr5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivpog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3utj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf6gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etmh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk4m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsae6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u1pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f8l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woxls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkyhv") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cipk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiodj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ijmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmwg0") +}], +"loop": true, +"name": &"drainingwave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_enthrall.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_enthrall.tres new file mode 100644 index 0000000..a70ff26 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_enthrall.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://7f1v06i34pnt"] + +[ext_resource type="Texture2D" uid="uid://ccmiy78r0oqge" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png" id="1_bffpe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iinf"] +atlas = ExtResource("1_bffpe") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qqxa"] +atlas = ExtResource("1_bffpe") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up3bx"] +atlas = ExtResource("1_bffpe") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ycj"] +atlas = ExtResource("1_bffpe") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vldjq"] +atlas = ExtResource("1_bffpe") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nswn"] +atlas = ExtResource("1_bffpe") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sakxp"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62k4s"] +atlas = ExtResource("1_bffpe") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw3fd"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc2bd"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3yvn"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h6ep"] +atlas = ExtResource("1_bffpe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xk2s"] +atlas = ExtResource("1_bffpe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hs0v"] +atlas = ExtResource("1_bffpe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqyog"] +atlas = ExtResource("1_bffpe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmtdp"] +atlas = ExtResource("1_bffpe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkebb"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rror"] +atlas = ExtResource("1_bffpe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qwka"] +atlas = ExtResource("1_bffpe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stevm"] +atlas = ExtResource("1_bffpe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyc7w"] +atlas = ExtResource("1_bffpe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65f0i"] +atlas = ExtResource("1_bffpe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsepw"] +atlas = ExtResource("1_bffpe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkxuw"] +atlas = ExtResource("1_bffpe") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfblw"] +atlas = ExtResource("1_bffpe") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmvbw"] +atlas = ExtResource("1_bffpe") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4cw5"] +atlas = ExtResource("1_bffpe") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0kho"] +atlas = ExtResource("1_bffpe") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iinf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qqxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up3bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ycj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vldjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nswn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sakxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62k4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw3fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc2bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3yvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h6ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xk2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hs0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqyog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmtdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkebb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rror") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qwka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stevm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyc7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65f0i") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsepw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkxuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfblw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmvbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4cw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0kho") +}], +"loop": true, +"name": &"enthrall", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_fortifiedassault.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_fortifiedassault.tres new file mode 100644 index 0000000..531170a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_fortifiedassault.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://cnnxefx5dfndc"] + +[ext_resource type="Texture2D" uid="uid://c1d2bues4akeq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png" id="1_l07nt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlkvl"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4duvf"] +atlas = ExtResource("1_l07nt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07pex"] +atlas = ExtResource("1_l07nt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdt1s"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g40hm"] +atlas = ExtResource("1_l07nt") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7gb5"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4nmu"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e117u"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uprqp"] +atlas = ExtResource("1_l07nt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxyja"] +atlas = ExtResource("1_l07nt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ait7q"] +atlas = ExtResource("1_l07nt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwa7a"] +atlas = ExtResource("1_l07nt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjy55"] +atlas = ExtResource("1_l07nt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nihfb"] +atlas = ExtResource("1_l07nt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioxfp"] +atlas = ExtResource("1_l07nt") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx4ah"] +atlas = ExtResource("1_l07nt") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62gjy"] +atlas = ExtResource("1_l07nt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n5tw"] +atlas = ExtResource("1_l07nt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5ccs"] +atlas = ExtResource("1_l07nt") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlkvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4duvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07pex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdt1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g40hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7gb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4nmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e117u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uprqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxyja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ait7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwa7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjy55") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nihfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioxfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx4ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62gjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n5tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5ccs") +}], +"loop": true, +"name": &"fortifiedassault", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_greatergood.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_greatergood.tres new file mode 100644 index 0000000..fee4c41 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_greatergood.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://cyudwfhtw2hvp"] + +[ext_resource type="Texture2D" uid="uid://bgs5c2f1nvfxb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png" id="1_5p75t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckf34"] +atlas = ExtResource("1_5p75t") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3br8"] +atlas = ExtResource("1_5p75t") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87t3d"] +atlas = ExtResource("1_5p75t") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqnac"] +atlas = ExtResource("1_5p75t") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cmp3"] +atlas = ExtResource("1_5p75t") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpp4j"] +atlas = ExtResource("1_5p75t") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm6vx"] +atlas = ExtResource("1_5p75t") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qafo3"] +atlas = ExtResource("1_5p75t") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5vaa"] +atlas = ExtResource("1_5p75t") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3dhm"] +atlas = ExtResource("1_5p75t") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jyvn"] +atlas = ExtResource("1_5p75t") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck412"] +atlas = ExtResource("1_5p75t") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh8fn"] +atlas = ExtResource("1_5p75t") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5n5w"] +atlas = ExtResource("1_5p75t") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x4fp"] +atlas = ExtResource("1_5p75t") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b38e"] +atlas = ExtResource("1_5p75t") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t16gb"] +atlas = ExtResource("1_5p75t") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flp0c"] +atlas = ExtResource("1_5p75t") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cii0"] +atlas = ExtResource("1_5p75t") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wevu"] +atlas = ExtResource("1_5p75t") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwdb1"] +atlas = ExtResource("1_5p75t") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ija"] +atlas = ExtResource("1_5p75t") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp8l5"] +atlas = ExtResource("1_5p75t") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bay1p"] +atlas = ExtResource("1_5p75t") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g7gq"] +atlas = ExtResource("1_5p75t") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuut6"] +atlas = ExtResource("1_5p75t") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckf34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3br8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87t3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqnac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cmp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpp4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm6vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qafo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5vaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3dhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jyvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck412") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh8fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5n5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x4fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b38e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t16gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flp0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cii0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wevu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwdb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ija") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp8l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bay1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g7gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuut6") +}], +"loop": true, +"name": &"greatergood", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_holyimmolation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_holyimmolation.tres new file mode 100644 index 0000000..54c3677 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_holyimmolation.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://826ga7dn45ql"] + +[ext_resource type="Texture2D" uid="uid://cdgy4ipq6n5bd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png" id="1_g4wes"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1n5e"] +atlas = ExtResource("1_g4wes") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5tv7"] +atlas = ExtResource("1_g4wes") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v30ka"] +atlas = ExtResource("1_g4wes") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcskp"] +atlas = ExtResource("1_g4wes") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq8ev"] +atlas = ExtResource("1_g4wes") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7hqb"] +atlas = ExtResource("1_g4wes") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuu13"] +atlas = ExtResource("1_g4wes") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idfrf"] +atlas = ExtResource("1_g4wes") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7wwa"] +atlas = ExtResource("1_g4wes") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0840d"] +atlas = ExtResource("1_g4wes") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afbdh"] +atlas = ExtResource("1_g4wes") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmj3p"] +atlas = ExtResource("1_g4wes") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbe4m"] +atlas = ExtResource("1_g4wes") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o321k"] +atlas = ExtResource("1_g4wes") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc6ch"] +atlas = ExtResource("1_g4wes") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rke2m"] +atlas = ExtResource("1_g4wes") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u41uv"] +atlas = ExtResource("1_g4wes") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1n5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5tv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v30ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcskp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq8ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7hqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuu13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idfrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7wwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0840d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afbdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmj3p") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbe4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o321k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc6ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rke2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u41uv") +}], +"loop": true, +"name": &"holyimmolation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_increasingdominance.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_increasingdominance.tres new file mode 100644 index 0000000..9ad5a58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_increasingdominance.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://cyb7cfctghj26"] + +[ext_resource type="Texture2D" uid="uid://66f0fnsb0w8r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png" id="1_trejr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_huc2x"] +atlas = ExtResource("1_trejr") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmkiq"] +atlas = ExtResource("1_trejr") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td3nd"] +atlas = ExtResource("1_trejr") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61uj0"] +atlas = ExtResource("1_trejr") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vx8o"] +atlas = ExtResource("1_trejr") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woyve"] +atlas = ExtResource("1_trejr") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtrlx"] +atlas = ExtResource("1_trejr") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25jnx"] +atlas = ExtResource("1_trejr") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68sdw"] +atlas = ExtResource("1_trejr") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndp2a"] +atlas = ExtResource("1_trejr") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7gmr"] +atlas = ExtResource("1_trejr") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khvgn"] +atlas = ExtResource("1_trejr") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k71wt"] +atlas = ExtResource("1_trejr") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lyn2"] +atlas = ExtResource("1_trejr") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn7gf"] +atlas = ExtResource("1_trejr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymxmn"] +atlas = ExtResource("1_trejr") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_huc2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmkiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td3nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61uj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vx8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woyve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtrlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25jnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68sdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndp2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7gmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khvgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k71wt") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lyn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn7gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymxmn") +}], +"loop": true, +"name": &"increasingdominance", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_invincible.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_invincible.tres new file mode 100644 index 0000000..3714148 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_invincible.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://dssdh6v4y7ma6"] + +[ext_resource type="Texture2D" uid="uid://bor73th2l011j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png" id="1_03sbt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fagov"] +atlas = ExtResource("1_03sbt") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li76m"] +atlas = ExtResource("1_03sbt") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3pvc"] +atlas = ExtResource("1_03sbt") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g31y8"] +atlas = ExtResource("1_03sbt") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yh75"] +atlas = ExtResource("1_03sbt") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rro8"] +atlas = ExtResource("1_03sbt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duyme"] +atlas = ExtResource("1_03sbt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ph1"] +atlas = ExtResource("1_03sbt") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsdv7"] +atlas = ExtResource("1_03sbt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hexmp"] +atlas = ExtResource("1_03sbt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkp0y"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jovbg"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsd1h"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug6qu"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3cby"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c1ro"] +atlas = ExtResource("1_03sbt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n01oj"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt2od"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3jea"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35rea"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq58h"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frhi1"] +atlas = ExtResource("1_03sbt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cim3i"] +atlas = ExtResource("1_03sbt") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwcgp"] +atlas = ExtResource("1_03sbt") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_katvi"] +atlas = ExtResource("1_03sbt") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csx66"] +atlas = ExtResource("1_03sbt") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce8o4"] +atlas = ExtResource("1_03sbt") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfcos"] +atlas = ExtResource("1_03sbt") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fagov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li76m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3pvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g31y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yh75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rro8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duyme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ph1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsdv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hexmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkp0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jovbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsd1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug6qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3cby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c1ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n01oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt2od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3jea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35rea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq58h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frhi1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cim3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwcgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_katvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csx66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce8o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfcos") +}], +"loop": true, +"name": &"invincible", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lastingjudgement.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lastingjudgement.tres new file mode 100644 index 0000000..0706f81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lastingjudgement.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://ceaumxcdh3jnr"] + +[ext_resource type="Texture2D" uid="uid://b5drm6qkqy4v7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png" id="1_gqibv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0n12"] +atlas = ExtResource("1_gqibv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk28u"] +atlas = ExtResource("1_gqibv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0l4g"] +atlas = ExtResource("1_gqibv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3cm8"] +atlas = ExtResource("1_gqibv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p85u4"] +atlas = ExtResource("1_gqibv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbqj8"] +atlas = ExtResource("1_gqibv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctxh5"] +atlas = ExtResource("1_gqibv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ion1"] +atlas = ExtResource("1_gqibv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmvxp"] +atlas = ExtResource("1_gqibv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v420"] +atlas = ExtResource("1_gqibv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bih2l"] +atlas = ExtResource("1_gqibv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fkvd"] +atlas = ExtResource("1_gqibv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kawxv"] +atlas = ExtResource("1_gqibv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6vh1"] +atlas = ExtResource("1_gqibv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_285wa"] +atlas = ExtResource("1_gqibv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5g15"] +atlas = ExtResource("1_gqibv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdu8o"] +atlas = ExtResource("1_gqibv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n27sp"] +atlas = ExtResource("1_gqibv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvq0p"] +atlas = ExtResource("1_gqibv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr7a1"] +atlas = ExtResource("1_gqibv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfmva"] +atlas = ExtResource("1_gqibv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tc1m"] +atlas = ExtResource("1_gqibv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yk4m"] +atlas = ExtResource("1_gqibv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gvl5"] +atlas = ExtResource("1_gqibv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c63ta"] +atlas = ExtResource("1_gqibv") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0n12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk28u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0l4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3cm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p85u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbqj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctxh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ion1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmvxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v420") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bih2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fkvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kawxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6vh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_285wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5g15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdu8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n27sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvq0p") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr7a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfmva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tc1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yk4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gvl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c63ta") +}], +"loop": true, +"name": &"lastingjudgement", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_laststand.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_laststand.tres new file mode 100644 index 0000000..bd84e1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_laststand.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://u2l5t5jkmadj"] + +[ext_resource type="Texture2D" uid="uid://ccxcnx53r1fj7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png" id="1_2aukd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_71qc0"] +atlas = ExtResource("1_2aukd") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvj50"] +atlas = ExtResource("1_2aukd") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxcbi"] +atlas = ExtResource("1_2aukd") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l40v"] +atlas = ExtResource("1_2aukd") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41lfs"] +atlas = ExtResource("1_2aukd") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvjp4"] +atlas = ExtResource("1_2aukd") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lymnr"] +atlas = ExtResource("1_2aukd") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3wnj"] +atlas = ExtResource("1_2aukd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdi3w"] +atlas = ExtResource("1_2aukd") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m11c"] +atlas = ExtResource("1_2aukd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui0fe"] +atlas = ExtResource("1_2aukd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgrrq"] +atlas = ExtResource("1_2aukd") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt1na"] +atlas = ExtResource("1_2aukd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6qox"] +atlas = ExtResource("1_2aukd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckhmw"] +atlas = ExtResource("1_2aukd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfvm2"] +atlas = ExtResource("1_2aukd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxdwu"] +atlas = ExtResource("1_2aukd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bev55"] +atlas = ExtResource("1_2aukd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqifj"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxg3y"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u04o1"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_norxl"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyxu2"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6233r"] +atlas = ExtResource("1_2aukd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay5ua"] +atlas = ExtResource("1_2aukd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5726e"] +atlas = ExtResource("1_2aukd") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xjjp"] +atlas = ExtResource("1_2aukd") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4pe4"] +atlas = ExtResource("1_2aukd") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmyp"] +atlas = ExtResource("1_2aukd") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjr7i"] +atlas = ExtResource("1_2aukd") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_71qc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvj50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxcbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l40v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41lfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvjp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lymnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3wnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdi3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m11c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui0fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgrrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt1na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6qox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckhmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfvm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxdwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bev55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqifj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxg3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u04o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_norxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyxu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6233r") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay5ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5726e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xjjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4pe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjr7i") +}], +"loop": true, +"name": &"laststand", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lifecoil.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lifecoil.tres new file mode 100644 index 0000000..004f060 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lifecoil.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://b6po2xlolrrlf"] + +[ext_resource type="Texture2D" uid="uid://dlhy8o2o5l221" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png" id="1_t1f2w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lng5c"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsvod"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ira"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47t8c"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7q0k"] +atlas = ExtResource("1_t1f2w") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8wjh"] +atlas = ExtResource("1_t1f2w") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rajm6"] +atlas = ExtResource("1_t1f2w") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysdt2"] +atlas = ExtResource("1_t1f2w") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psvof"] +atlas = ExtResource("1_t1f2w") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v3ae"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oifnc"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tlxg"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47b60"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvf5s"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87fuc"] +atlas = ExtResource("1_t1f2w") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p53if"] +atlas = ExtResource("1_t1f2w") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5gnr"] +atlas = ExtResource("1_t1f2w") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjn0u"] +atlas = ExtResource("1_t1f2w") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7yh3"] +atlas = ExtResource("1_t1f2w") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c5o8"] +atlas = ExtResource("1_t1f2w") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypg0o"] +atlas = ExtResource("1_t1f2w") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrr2t"] +atlas = ExtResource("1_t1f2w") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o1pu"] +atlas = ExtResource("1_t1f2w") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb2q3"] +atlas = ExtResource("1_t1f2w") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba3x5"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gmh2"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4phlp"] +atlas = ExtResource("1_t1f2w") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykwx8"] +atlas = ExtResource("1_t1f2w") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lng5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsvod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ira") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47t8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7q0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8wjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rajm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysdt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psvof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v3ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oifnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tlxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47b60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvf5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87fuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p53if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5gnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjn0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7yh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c5o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypg0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrr2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o1pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb2q3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba3x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gmh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4phlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykwx8") +}], +"loop": true, +"name": &"lifecoil", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lionheartblessing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lionheartblessing.tres new file mode 100644 index 0000000..83ae3c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lionheartblessing.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://ymbbf0gi4e81"] + +[ext_resource type="Texture2D" uid="uid://kbr6gcc6kthg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png" id="1_m7v4e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj12m"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shokw"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjluf"] +atlas = ExtResource("1_m7v4e") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0r5f"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ji6x"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkfm5"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rxnl"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7icd"] +atlas = ExtResource("1_m7v4e") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3hli"] +atlas = ExtResource("1_m7v4e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gs0t"] +atlas = ExtResource("1_m7v4e") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro2kk"] +atlas = ExtResource("1_m7v4e") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmplq"] +atlas = ExtResource("1_m7v4e") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp5bh"] +atlas = ExtResource("1_m7v4e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wvc8"] +atlas = ExtResource("1_m7v4e") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8h61"] +atlas = ExtResource("1_m7v4e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfbyy"] +atlas = ExtResource("1_m7v4e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhfgt"] +atlas = ExtResource("1_m7v4e") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geqnw"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od1mj"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk1n5"] +atlas = ExtResource("1_m7v4e") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jux2n"] +atlas = ExtResource("1_m7v4e") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbsw7"] +atlas = ExtResource("1_m7v4e") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7dmd"] +atlas = ExtResource("1_m7v4e") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybpju"] +atlas = ExtResource("1_m7v4e") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uks6k"] +atlas = ExtResource("1_m7v4e") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_362u1"] +atlas = ExtResource("1_m7v4e") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wynnd"] +atlas = ExtResource("1_m7v4e") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1h0n"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlwqu"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na17h"] +atlas = ExtResource("1_m7v4e") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhdjp"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yubyb"] +atlas = ExtResource("1_m7v4e") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj12m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shokw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjluf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0r5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ji6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkfm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rxnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7icd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3hli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gs0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro2kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmplq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp5bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wvc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8h61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfbyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhfgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geqnw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_od1mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk1n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jux2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbsw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7dmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybpju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uks6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_362u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wynnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1h0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlwqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na17h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhdjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yubyb") +}], +"loop": true, +"name": &"lionheartblessing", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lucentbeam.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lucentbeam.tres new file mode 100644 index 0000000..0954ac7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_lucentbeam.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://6bqe6kbi7ey"] + +[ext_resource type="Texture2D" uid="uid://conc7ojebdlov" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png" id="1_n82pa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0qg7"] +atlas = ExtResource("1_n82pa") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bby8h"] +atlas = ExtResource("1_n82pa") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivydt"] +atlas = ExtResource("1_n82pa") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0ur4"] +atlas = ExtResource("1_n82pa") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8drv"] +atlas = ExtResource("1_n82pa") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u5uo"] +atlas = ExtResource("1_n82pa") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_030bf"] +atlas = ExtResource("1_n82pa") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs48w"] +atlas = ExtResource("1_n82pa") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryk5c"] +atlas = ExtResource("1_n82pa") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_421s1"] +atlas = ExtResource("1_n82pa") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkvu1"] +atlas = ExtResource("1_n82pa") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou54w"] +atlas = ExtResource("1_n82pa") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaap2"] +atlas = ExtResource("1_n82pa") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05lf0"] +atlas = ExtResource("1_n82pa") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crbnf"] +atlas = ExtResource("1_n82pa") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c738e"] +atlas = ExtResource("1_n82pa") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cw21"] +atlas = ExtResource("1_n82pa") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt2o3"] +atlas = ExtResource("1_n82pa") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr5el"] +atlas = ExtResource("1_n82pa") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1285"] +atlas = ExtResource("1_n82pa") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6m1q"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk647"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55cfh"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3fqi"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfhga"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udwks"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vncc"] +atlas = ExtResource("1_n82pa") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wv7x"] +atlas = ExtResource("1_n82pa") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy7jc"] +atlas = ExtResource("1_n82pa") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5qfl"] +atlas = ExtResource("1_n82pa") +region = Rect2(245, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0qg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bby8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivydt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0ur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8drv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u5uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_030bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs48w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryk5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_421s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkvu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou54w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaap2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05lf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crbnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c738e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cw21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt2o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr5el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1285") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6m1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk647") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55cfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3fqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfhga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udwks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vncc") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wv7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy7jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5qfl") +}], +"loop": true, +"name": &"lucentbeam", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_magnetize.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_magnetize.tres new file mode 100644 index 0000000..39d32c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_magnetize.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://cdh6am0bvjlqt"] + +[ext_resource type="Texture2D" uid="uid://b62a1sgd1pfiq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png" id="1_osiem"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_24t7a"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htdj5"] +atlas = ExtResource("1_osiem") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuk84"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbmup"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqanl"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k87t"] +atlas = ExtResource("1_osiem") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxm8o"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k74ab"] +atlas = ExtResource("1_osiem") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwfmn"] +atlas = ExtResource("1_osiem") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10cdp"] +atlas = ExtResource("1_osiem") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aukt"] +atlas = ExtResource("1_osiem") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijibi"] +atlas = ExtResource("1_osiem") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnd1y"] +atlas = ExtResource("1_osiem") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoqa6"] +atlas = ExtResource("1_osiem") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fepg"] +atlas = ExtResource("1_osiem") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24t7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htdj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuk84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbmup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqanl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k87t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxm8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k74ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwfmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10cdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aukt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijibi") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnd1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoqa6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fepg") +}], +"loop": true, +"name": &"magnetize", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_martydom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_martydom.tres new file mode 100644 index 0000000..ab78475 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_martydom.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://clmhjlj4ol5hd"] + +[ext_resource type="Texture2D" uid="uid://dp7eygriaq0il" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png" id="1_60nxs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojnxi"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g07g3"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ooih"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf1em"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7wxb"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvs2w"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iib3s"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkkp2"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv3qt"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhyqo"] +atlas = ExtResource("1_60nxs") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgdp5"] +atlas = ExtResource("1_60nxs") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol1gw"] +atlas = ExtResource("1_60nxs") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dceny"] +atlas = ExtResource("1_60nxs") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_363x4"] +atlas = ExtResource("1_60nxs") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mtux"] +atlas = ExtResource("1_60nxs") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpqp8"] +atlas = ExtResource("1_60nxs") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a683"] +atlas = ExtResource("1_60nxs") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svek6"] +atlas = ExtResource("1_60nxs") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy8m5"] +atlas = ExtResource("1_60nxs") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obht6"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igit0"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wgyy"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao3m6"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvflo"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfuku"] +atlas = ExtResource("1_60nxs") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktdpq"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs08l"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0i1a"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5xho"] +atlas = ExtResource("1_60nxs") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4b6w"] +atlas = ExtResource("1_60nxs") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojnxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g07g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ooih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf1em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7wxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvs2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iib3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkkp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv3qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhyqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgdp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol1gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dceny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_363x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mtux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpqp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a683") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svek6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy8m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obht6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igit0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wgyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao3m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvflo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfuku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktdpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs08l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0i1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5xho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4b6w") +}], +"loop": true, +"name": &"martydom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_oncemore.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_oncemore.tres new file mode 100644 index 0000000..1a5f4b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_oncemore.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://dvcbbyn8gevu4"] + +[ext_resource type="Texture2D" uid="uid://dsgbwy8lf6wtv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png" id="1_jj1pk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yxyr"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_far7q"] +atlas = ExtResource("1_jj1pk") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btke8"] +atlas = ExtResource("1_jj1pk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a4f8"] +atlas = ExtResource("1_jj1pk") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ehw0"] +atlas = ExtResource("1_jj1pk") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15cqj"] +atlas = ExtResource("1_jj1pk") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpoha"] +atlas = ExtResource("1_jj1pk") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwvbn"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lheu"] +atlas = ExtResource("1_jj1pk") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnh6b"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chsw1"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmod5"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbjdp"] +atlas = ExtResource("1_jj1pk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amhbl"] +atlas = ExtResource("1_jj1pk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q4t2"] +atlas = ExtResource("1_jj1pk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jybbw"] +atlas = ExtResource("1_jj1pk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00cv5"] +atlas = ExtResource("1_jj1pk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdmbf"] +atlas = ExtResource("1_jj1pk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph8is"] +atlas = ExtResource("1_jj1pk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brtp7"] +atlas = ExtResource("1_jj1pk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upy54"] +atlas = ExtResource("1_jj1pk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2u2a"] +atlas = ExtResource("1_jj1pk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkm1c"] +atlas = ExtResource("1_jj1pk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xejm"] +atlas = ExtResource("1_jj1pk") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtvuv"] +atlas = ExtResource("1_jj1pk") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qfp4"] +atlas = ExtResource("1_jj1pk") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72v6p"] +atlas = ExtResource("1_jj1pk") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hwgb"] +atlas = ExtResource("1_jj1pk") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yxyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_far7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btke8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a4f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ehw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15cqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpoha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwvbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lheu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnh6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chsw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmod5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbjdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amhbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q4t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jybbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00cv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdmbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph8is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brtp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upy54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2u2a") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkm1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xejm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtvuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qfp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72v6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hwgb") +}], +"loop": true, +"name": &"oncemore", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_presstheattack.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_presstheattack.tres new file mode 100644 index 0000000..3c530c6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_presstheattack.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://djd4t5bdoy3e0"] + +[ext_resource type="Texture2D" uid="uid://cr6wlulyxje4t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png" id="1_m70uo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n0e1"] +atlas = ExtResource("1_m70uo") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqwwy"] +atlas = ExtResource("1_m70uo") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfc8a"] +atlas = ExtResource("1_m70uo") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7wvu"] +atlas = ExtResource("1_m70uo") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rklwr"] +atlas = ExtResource("1_m70uo") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh2mt"] +atlas = ExtResource("1_m70uo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfjf2"] +atlas = ExtResource("1_m70uo") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aba7"] +atlas = ExtResource("1_m70uo") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xutl5"] +atlas = ExtResource("1_m70uo") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcdx6"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05m0p"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcrxt"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_647rc"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lor5b"] +atlas = ExtResource("1_m70uo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f8x2"] +atlas = ExtResource("1_m70uo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00shk"] +atlas = ExtResource("1_m70uo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfvvx"] +atlas = ExtResource("1_m70uo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luycw"] +atlas = ExtResource("1_m70uo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p25me"] +atlas = ExtResource("1_m70uo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngy7"] +atlas = ExtResource("1_m70uo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak7sm"] +atlas = ExtResource("1_m70uo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ob2"] +atlas = ExtResource("1_m70uo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix2qx"] +atlas = ExtResource("1_m70uo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3sog"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1c1s"] +atlas = ExtResource("1_m70uo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73aes"] +atlas = ExtResource("1_m70uo") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4l7j"] +atlas = ExtResource("1_m70uo") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbftm"] +atlas = ExtResource("1_m70uo") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nppot"] +atlas = ExtResource("1_m70uo") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnbup"] +atlas = ExtResource("1_m70uo") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n0e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqwwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfc8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7wvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rklwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh2mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfjf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aba7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xutl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcdx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05m0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcrxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_647rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lor5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f8x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00shk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfvvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luycw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p25me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak7sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ob2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix2qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3sog") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1c1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73aes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4l7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbftm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nppot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnbup") +}], +"loop": true, +"name": &"presstheattack", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_prismbarrier.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_prismbarrier.tres new file mode 100644 index 0000000..9ad85fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_prismbarrier.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://ofdvr4pa0qgj"] + +[ext_resource type="Texture2D" uid="uid://cp4rovb6foyi5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png" id="1_c8cwv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj3w4"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqgqu"] +atlas = ExtResource("1_c8cwv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0si5"] +atlas = ExtResource("1_c8cwv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loyuq"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un5q8"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol5en"] +atlas = ExtResource("1_c8cwv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmbld"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp1ja"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgcau"] +atlas = ExtResource("1_c8cwv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1u0b"] +atlas = ExtResource("1_c8cwv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h75um"] +atlas = ExtResource("1_c8cwv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw857"] +atlas = ExtResource("1_c8cwv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1biff"] +atlas = ExtResource("1_c8cwv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfvnq"] +atlas = ExtResource("1_c8cwv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6j0p"] +atlas = ExtResource("1_c8cwv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3fkl"] +atlas = ExtResource("1_c8cwv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjvjo"] +atlas = ExtResource("1_c8cwv") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj3w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqgqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0si5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loyuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un5q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol5en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmbld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp1ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgcau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1u0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h75um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw857") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1biff") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfvnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6j0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3fkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjvjo") +}], +"loop": true, +"name": &"prismbarrier", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rally.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rally.tres new file mode 100644 index 0000000..2d0ccf2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rally.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dksgf8fgyki2"] + +[ext_resource type="Texture2D" uid="uid://cbxl7fjjiav0s" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png" id="1_vh031"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4wnp"] +atlas = ExtResource("1_vh031") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0nrg"] +atlas = ExtResource("1_vh031") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdaij"] +atlas = ExtResource("1_vh031") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mubo3"] +atlas = ExtResource("1_vh031") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk0rm"] +atlas = ExtResource("1_vh031") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhq51"] +atlas = ExtResource("1_vh031") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhnej"] +atlas = ExtResource("1_vh031") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvpfn"] +atlas = ExtResource("1_vh031") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca0w8"] +atlas = ExtResource("1_vh031") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf2k8"] +atlas = ExtResource("1_vh031") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udsma"] +atlas = ExtResource("1_vh031") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur8ss"] +atlas = ExtResource("1_vh031") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14xh6"] +atlas = ExtResource("1_vh031") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge4mb"] +atlas = ExtResource("1_vh031") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2lpc"] +atlas = ExtResource("1_vh031") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipnu0"] +atlas = ExtResource("1_vh031") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4wnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0nrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdaij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mubo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk0rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhq51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhnej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvpfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca0w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf2k8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_udsma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur8ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14xh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge4mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2lpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipnu0") +}], +"loop": true, +"name": &"rally", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rayoflight.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rayoflight.tres new file mode 100644 index 0000000..4dfd9da --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_rayoflight.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://5vrf7xdppx5q"] + +[ext_resource type="Texture2D" uid="uid://dj6lralv13tt4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png" id="1_7ma82"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tud66"] +atlas = ExtResource("1_7ma82") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr0xg"] +atlas = ExtResource("1_7ma82") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thytj"] +atlas = ExtResource("1_7ma82") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c6mk"] +atlas = ExtResource("1_7ma82") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vy3u"] +atlas = ExtResource("1_7ma82") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npjtv"] +atlas = ExtResource("1_7ma82") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcygg"] +atlas = ExtResource("1_7ma82") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shpr2"] +atlas = ExtResource("1_7ma82") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdolh"] +atlas = ExtResource("1_7ma82") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk23g"] +atlas = ExtResource("1_7ma82") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mqiq"] +atlas = ExtResource("1_7ma82") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxfy0"] +atlas = ExtResource("1_7ma82") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tippa"] +atlas = ExtResource("1_7ma82") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1okfh"] +atlas = ExtResource("1_7ma82") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q4lu"] +atlas = ExtResource("1_7ma82") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn57u"] +atlas = ExtResource("1_7ma82") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wuyu"] +atlas = ExtResource("1_7ma82") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lktw"] +atlas = ExtResource("1_7ma82") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lps57"] +atlas = ExtResource("1_7ma82") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icbfa"] +atlas = ExtResource("1_7ma82") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwjt6"] +atlas = ExtResource("1_7ma82") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tud66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr0xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thytj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c6mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vy3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npjtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcygg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shpr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdolh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk23g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mqiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxfy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tippa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1okfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q4lu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn57u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wuyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lps57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icbfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwjt6") +}], +"loop": true, +"name": &"rayoflight", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_resilience.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_resilience.tres new file mode 100644 index 0000000..41555b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_resilience.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://b2ekm1hqj0wbs"] + +[ext_resource type="Texture2D" uid="uid://o24ixhgoxq3e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png" id="1_cilmh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_566k5"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibbbp"] +atlas = ExtResource("1_cilmh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjkq"] +atlas = ExtResource("1_cilmh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6st5g"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk6h4"] +atlas = ExtResource("1_cilmh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jmig"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2q55"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp186"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33yhw"] +atlas = ExtResource("1_cilmh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkc8x"] +atlas = ExtResource("1_cilmh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7p8q"] +atlas = ExtResource("1_cilmh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eiqb"] +atlas = ExtResource("1_cilmh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx1es"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qjb8"] +atlas = ExtResource("1_cilmh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ndv1"] +atlas = ExtResource("1_cilmh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmni"] +atlas = ExtResource("1_cilmh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmqpr"] +atlas = ExtResource("1_cilmh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmuve"] +atlas = ExtResource("1_cilmh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l87u"] +atlas = ExtResource("1_cilmh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dauc5"] +atlas = ExtResource("1_cilmh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5loqn"] +atlas = ExtResource("1_cilmh") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_566k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibbbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgjkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6st5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk6h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jmig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2q55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp186") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33yhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkc8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7p8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eiqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx1es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qjb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ndv1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmqpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmuve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l87u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dauc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5loqn") +}], +"loop": true, +"name": &"resilience", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyburial.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyburial.tres new file mode 100644 index 0000000..cfcfee4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyburial.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://bdxyeevvi6p2k"] + +[ext_resource type="Texture2D" uid="uid://bmcl5ggfaj4ac" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png" id="1_ugtld"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnnqb"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0os8"] +atlas = ExtResource("1_ugtld") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6sr3"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx5bo"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cy15"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v43nn"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m72qg"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf2dy"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grxnw"] +atlas = ExtResource("1_ugtld") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77j7g"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_latas"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y7vm"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxpah"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmqhw"] +atlas = ExtResource("1_ugtld") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6wln"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xhuo"] +atlas = ExtResource("1_ugtld") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6bua"] +atlas = ExtResource("1_ugtld") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f4le"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6m4p"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pa6f"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2oo8"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ac73"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mfu7"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hkr5"] +atlas = ExtResource("1_ugtld") +region = Rect2(0, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnnqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0os8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6sr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx5bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cy15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v43nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m72qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf2dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grxnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77j7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_latas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y7vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxpah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmqhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6wln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xhuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6bua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f4le") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6m4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pa6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2oo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ac73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mfu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hkr5") +}], +"loop": true, +"name": &"skyburial", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyphalanx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyphalanx.tres new file mode 100644 index 0000000..cb858f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_skyphalanx.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bdreanbean53p"] + +[ext_resource type="Texture2D" uid="uid://bqb60jl5n0vjo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png" id="1_7inrs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn1wx"] +atlas = ExtResource("1_7inrs") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue8vy"] +atlas = ExtResource("1_7inrs") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_041fw"] +atlas = ExtResource("1_7inrs") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdvhg"] +atlas = ExtResource("1_7inrs") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsa25"] +atlas = ExtResource("1_7inrs") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6eyg"] +atlas = ExtResource("1_7inrs") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kapuf"] +atlas = ExtResource("1_7inrs") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dybc"] +atlas = ExtResource("1_7inrs") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22cwo"] +atlas = ExtResource("1_7inrs") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt5n8"] +atlas = ExtResource("1_7inrs") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeo0v"] +atlas = ExtResource("1_7inrs") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps7r0"] +atlas = ExtResource("1_7inrs") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyphl"] +atlas = ExtResource("1_7inrs") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h050l"] +atlas = ExtResource("1_7inrs") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6y6e"] +atlas = ExtResource("1_7inrs") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhwl6"] +atlas = ExtResource("1_7inrs") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n36uq"] +atlas = ExtResource("1_7inrs") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sc3q"] +atlas = ExtResource("1_7inrs") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tydon"] +atlas = ExtResource("1_7inrs") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i70tu"] +atlas = ExtResource("1_7inrs") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q33fw"] +atlas = ExtResource("1_7inrs") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn1wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue8vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_041fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdvhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsa25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6eyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kapuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dybc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22cwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt5n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeo0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps7r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyphl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h050l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6y6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhwl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n36uq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sc3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tydon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i70tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q33fw") +}], +"loop": true, +"name": &"skyphalanx", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_standtogether.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_standtogether.tres new file mode 100644 index 0000000..b62d6dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_standtogether.tres @@ -0,0 +1,247 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://byfs4a5xw8x04"] + +[ext_resource type="Texture2D" uid="uid://bihn08i2u8w7t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png" id="1_63rio"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv0s6"] +atlas = ExtResource("1_63rio") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqgkx"] +atlas = ExtResource("1_63rio") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea1jk"] +atlas = ExtResource("1_63rio") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aetl"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxax2"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o58uc"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlo2v"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psxu0"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pmef"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oevbc"] +atlas = ExtResource("1_63rio") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cpuu"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptr82"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6d5p"] +atlas = ExtResource("1_63rio") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmko4"] +atlas = ExtResource("1_63rio") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkvsv"] +atlas = ExtResource("1_63rio") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3intb"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo5no"] +atlas = ExtResource("1_63rio") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiyim"] +atlas = ExtResource("1_63rio") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swrtr"] +atlas = ExtResource("1_63rio") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccxnh"] +atlas = ExtResource("1_63rio") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avywq"] +atlas = ExtResource("1_63rio") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd2bg"] +atlas = ExtResource("1_63rio") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jlpd"] +atlas = ExtResource("1_63rio") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrgr6"] +atlas = ExtResource("1_63rio") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quvpk"] +atlas = ExtResource("1_63rio") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iev5w"] +atlas = ExtResource("1_63rio") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag6n4"] +atlas = ExtResource("1_63rio") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu7m8"] +atlas = ExtResource("1_63rio") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b31ks"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3q86"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot13r"] +atlas = ExtResource("1_63rio") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdba4"] +atlas = ExtResource("1_63rio") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjrwj"] +atlas = ExtResource("1_63rio") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv0s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqgkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea1jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aetl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxax2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o58uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlo2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psxu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pmef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oevbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cpuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptr82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6d5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmko4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkvsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3intb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo5no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiyim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swrtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccxnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avywq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd2bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jlpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrgr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quvpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iev5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag6n4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu7m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b31ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3q86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot13r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdba4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjrwj") +}], +"loop": true, +"name": &"standtogether", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sunbloom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sunbloom.tres new file mode 100644 index 0000000..ab634d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sunbloom.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dbdgwsqa7sbes"] + +[ext_resource type="Texture2D" uid="uid://dd4cp428klb0i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png" id="1_ix1xy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_25qmm"] +atlas = ExtResource("1_ix1xy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qj4p"] +atlas = ExtResource("1_ix1xy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hi6h"] +atlas = ExtResource("1_ix1xy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf88r"] +atlas = ExtResource("1_ix1xy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5nnd"] +atlas = ExtResource("1_ix1xy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6owwf"] +atlas = ExtResource("1_ix1xy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nofij"] +atlas = ExtResource("1_ix1xy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as4uy"] +atlas = ExtResource("1_ix1xy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5ven"] +atlas = ExtResource("1_ix1xy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl8bu"] +atlas = ExtResource("1_ix1xy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd86u"] +atlas = ExtResource("1_ix1xy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i83i4"] +atlas = ExtResource("1_ix1xy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmkug"] +atlas = ExtResource("1_ix1xy") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghl33"] +atlas = ExtResource("1_ix1xy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67fnh"] +atlas = ExtResource("1_ix1xy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n34q"] +atlas = ExtResource("1_ix1xy") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_25qmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qj4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hi6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf88r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5nnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6owwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nofij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as4uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5ven") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl8bu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd86u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i83i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmkug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghl33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67fnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n34q") +}], +"loop": true, +"name": &"sunbloom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sundropelixir.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sundropelixir.tres new file mode 100644 index 0000000..8660694 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_sundropelixir.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://cvs5313f5v4ei"] + +[ext_resource type="Texture2D" uid="uid://blff5xiop6d21" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png" id="1_4lfoo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgulf"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwclk"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq25m"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvwl5"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4payx"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h5ht"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbilr"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up7pg"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77f80"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl8rx"] +atlas = ExtResource("1_4lfoo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7c5v"] +atlas = ExtResource("1_4lfoo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3d4s"] +atlas = ExtResource("1_4lfoo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwy80"] +atlas = ExtResource("1_4lfoo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm6ma"] +atlas = ExtResource("1_4lfoo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hk1c"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n41t"] +atlas = ExtResource("1_4lfoo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krn7m"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdq3v"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2id0"] +atlas = ExtResource("1_4lfoo") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwclk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq25m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvwl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4payx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h5ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbilr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up7pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77f80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl8rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7c5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3d4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwy80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm6ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hk1c") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n41t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krn7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdq3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2id0") +}], +"loop": true, +"name": &"sundropelixir", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_tempest.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_tempest.tres new file mode 100644 index 0000000..215cd10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_tempest.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://bnqlxw5xq1cpa"] + +[ext_resource type="Texture2D" uid="uid://tecfuebhyiir" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png" id="1_i72vo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_alj5q"] +atlas = ExtResource("1_i72vo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4mux"] +atlas = ExtResource("1_i72vo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88hiq"] +atlas = ExtResource("1_i72vo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42y3r"] +atlas = ExtResource("1_i72vo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tho8y"] +atlas = ExtResource("1_i72vo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twiwa"] +atlas = ExtResource("1_i72vo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gufx4"] +atlas = ExtResource("1_i72vo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyjkk"] +atlas = ExtResource("1_i72vo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x310i"] +atlas = ExtResource("1_i72vo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm00f"] +atlas = ExtResource("1_i72vo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoe0j"] +atlas = ExtResource("1_i72vo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u8oy"] +atlas = ExtResource("1_i72vo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54rsh"] +atlas = ExtResource("1_i72vo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kitwk"] +atlas = ExtResource("1_i72vo") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dpp8"] +atlas = ExtResource("1_i72vo") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unfal"] +atlas = ExtResource("1_i72vo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_037ch"] +atlas = ExtResource("1_i72vo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pifjb"] +atlas = ExtResource("1_i72vo") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_alj5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4mux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88hiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42y3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tho8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twiwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gufx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyjkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x310i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm00f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoe0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u8oy") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_54rsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kitwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dpp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unfal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_037ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pifjb") +}], +"loop": true, +"name": &"tempest", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_togetherness.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_togetherness.tres new file mode 100644 index 0000000..c63375e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_togetherness.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://bgkug0ynaxn8l"] + +[ext_resource type="Texture2D" uid="uid://c64gbsvlhh2l0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png" id="1_ww3m8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2w4q"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yne5o"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3djch"] +atlas = ExtResource("1_ww3m8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx846"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3rbd"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj67q"] +atlas = ExtResource("1_ww3m8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdc0a"] +atlas = ExtResource("1_ww3m8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ne8"] +atlas = ExtResource("1_ww3m8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekyxw"] +atlas = ExtResource("1_ww3m8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgbfr"] +atlas = ExtResource("1_ww3m8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3iqo"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y78u5"] +atlas = ExtResource("1_ww3m8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5jip"] +atlas = ExtResource("1_ww3m8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukapl"] +atlas = ExtResource("1_ww3m8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaofh"] +atlas = ExtResource("1_ww3m8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajtir"] +atlas = ExtResource("1_ww3m8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wua3d"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooayv"] +atlas = ExtResource("1_ww3m8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w54vv"] +atlas = ExtResource("1_ww3m8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yip4v"] +atlas = ExtResource("1_ww3m8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5kac"] +atlas = ExtResource("1_ww3m8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xjfc"] +atlas = ExtResource("1_ww3m8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvxuu"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf0cw"] +atlas = ExtResource("1_ww3m8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fnhd"] +atlas = ExtResource("1_ww3m8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qtda"] +atlas = ExtResource("1_ww3m8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk07p"] +atlas = ExtResource("1_ww3m8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kma6t"] +atlas = ExtResource("1_ww3m8") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2w4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yne5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3djch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx846") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3rbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj67q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdc0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ne8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekyxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgbfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3iqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y78u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5jip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukapl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaofh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajtir") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wua3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooayv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w54vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yip4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5kac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xjfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvxuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf0cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fnhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qtda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk07p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kma6t") +}], +"loop": true, +"name": &"togetherness", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_trinityoath.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_trinityoath.tres new file mode 100644 index 0000000..470bf6e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_trinityoath.tres @@ -0,0 +1,114 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://dvrbhqnnahnaa"] + +[ext_resource type="Texture2D" uid="uid://461i62t0ulgd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png" id="1_vocnm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxaxo"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydqhj"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by37e"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqqj3"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sussc"] +atlas = ExtResource("1_vocnm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ysj3"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anbqs"] +atlas = ExtResource("1_vocnm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6vrq"] +atlas = ExtResource("1_vocnm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ajy4"] +atlas = ExtResource("1_vocnm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i1wv"] +atlas = ExtResource("1_vocnm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdy03"] +atlas = ExtResource("1_vocnm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5d3i"] +atlas = ExtResource("1_vocnm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww4ay"] +atlas = ExtResource("1_vocnm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcv5b"] +atlas = ExtResource("1_vocnm") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxaxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydqhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by37e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqqj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sussc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ysj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anbqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6vrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ajy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i1wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdy03") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5d3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww4ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcv5b") +}], +"loop": true, +"name": &"trinityoath", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_truestrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_truestrike.tres new file mode 100644 index 0000000..74747c3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_truestrike.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bj7nwsi3oljqm"] + +[ext_resource type="Texture2D" uid="uid://bryoch8xcqtup" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png" id="1_4c83d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4lmq"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktvuf"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhfut"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42kj3"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu3y7"] +atlas = ExtResource("1_4c83d") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiexi"] +atlas = ExtResource("1_4c83d") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psomg"] +atlas = ExtResource("1_4c83d") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcot6"] +atlas = ExtResource("1_4c83d") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k81fw"] +atlas = ExtResource("1_4c83d") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drf1p"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggi0e"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w54td"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vty0t"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6or2"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75dwe"] +atlas = ExtResource("1_4c83d") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n54hh"] +atlas = ExtResource("1_4c83d") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6xig"] +atlas = ExtResource("1_4c83d") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51nta"] +atlas = ExtResource("1_4c83d") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbl4t"] +atlas = ExtResource("1_4c83d") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83sik"] +atlas = ExtResource("1_4c83d") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ah7o"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8to0i"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1nu2"] +atlas = ExtResource("1_4c83d") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4lmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktvuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhfut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42kj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu3y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiexi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psomg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcot6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k81fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drf1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggi0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w54td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vty0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6or2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75dwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n54hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6xig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51nta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbl4t") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_83sik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ah7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8to0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1nu2") +}], +"loop": true, +"name": &"truestrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_warsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_warsurge.tres new file mode 100644 index 0000000..8431fb0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f1_warsurge.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://c37avaqwtxwux"] + +[ext_resource type="Texture2D" uid="uid://b8nbesbxakdew" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png" id="1_18jax"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mx2q"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k27j"] +atlas = ExtResource("1_18jax") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73k3m"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0cdf"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj0d3"] +atlas = ExtResource("1_18jax") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lmt7"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70v27"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tchv"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa1fr"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw2kc"] +atlas = ExtResource("1_18jax") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cogs5"] +atlas = ExtResource("1_18jax") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hxw6"] +atlas = ExtResource("1_18jax") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8dl6"] +atlas = ExtResource("1_18jax") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3awsf"] +atlas = ExtResource("1_18jax") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teci4"] +atlas = ExtResource("1_18jax") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d2jp"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxa41"] +atlas = ExtResource("1_18jax") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wchc"] +atlas = ExtResource("1_18jax") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mx2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k27j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73k3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0cdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj0d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lmt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70v27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tchv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa1fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw2kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cogs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hxw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8dl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3awsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teci4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d2jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxa41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wchc") +}], +"loop": true, +"name": &"warsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ancestralpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ancestralpact.tres new file mode 100644 index 0000000..b8cebb2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ancestralpact.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://cm4j4ije3i1ug"] + +[ext_resource type="Texture2D" uid="uid://dewcsbahi7itg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png" id="1_bf3kw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv1pe"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sxsm"] +atlas = ExtResource("1_bf3kw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jldyi"] +atlas = ExtResource("1_bf3kw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvlv6"] +atlas = ExtResource("1_bf3kw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1k4b"] +atlas = ExtResource("1_bf3kw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycsfg"] +atlas = ExtResource("1_bf3kw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkxyt"] +atlas = ExtResource("1_bf3kw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbxi0"] +atlas = ExtResource("1_bf3kw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ofyn"] +atlas = ExtResource("1_bf3kw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rri2a"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyv72"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f37gq"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w21rn"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0btpw"] +atlas = ExtResource("1_bf3kw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcymm"] +atlas = ExtResource("1_bf3kw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjxyr"] +atlas = ExtResource("1_bf3kw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68044"] +atlas = ExtResource("1_bf3kw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w44lj"] +atlas = ExtResource("1_bf3kw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8b8g"] +atlas = ExtResource("1_bf3kw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oovd7"] +atlas = ExtResource("1_bf3kw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlksc"] +atlas = ExtResource("1_bf3kw") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv1pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sxsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jldyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvlv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1k4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycsfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkxyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbxi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ofyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rri2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyv72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f37gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w21rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0btpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcymm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjxyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68044") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w44lj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8b8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oovd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlksc") +}], +"loop": true, +"name": &"ancestralpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_artifact_defiler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_artifact_defiler.tres new file mode 100644 index 0000000..7253d03 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_artifact_defiler.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://dbpmavvjunbpd"] + +[ext_resource type="Texture2D" uid="uid://b2f1j4gelgtsg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png" id="1_pbuj6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwquh"] +atlas = ExtResource("1_pbuj6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6etr"] +atlas = ExtResource("1_pbuj6") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otp01"] +atlas = ExtResource("1_pbuj6") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6e2r"] +atlas = ExtResource("1_pbuj6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1dhm"] +atlas = ExtResource("1_pbuj6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbwhv"] +atlas = ExtResource("1_pbuj6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4pkh"] +atlas = ExtResource("1_pbuj6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsevd"] +atlas = ExtResource("1_pbuj6") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lppy5"] +atlas = ExtResource("1_pbuj6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16jj7"] +atlas = ExtResource("1_pbuj6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in01k"] +atlas = ExtResource("1_pbuj6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c60hx"] +atlas = ExtResource("1_pbuj6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7wx5"] +atlas = ExtResource("1_pbuj6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3writ"] +atlas = ExtResource("1_pbuj6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8maqq"] +atlas = ExtResource("1_pbuj6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbva6"] +atlas = ExtResource("1_pbuj6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4e50"] +atlas = ExtResource("1_pbuj6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my8e2"] +atlas = ExtResource("1_pbuj6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmq8o"] +atlas = ExtResource("1_pbuj6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rw44"] +atlas = ExtResource("1_pbuj6") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0jph"] +atlas = ExtResource("1_pbuj6") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwquh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6etr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otp01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6e2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1dhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbwhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4pkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsevd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lppy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16jj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in01k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c60hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7wx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3writ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8maqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbva6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4e50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my8e2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmq8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rw44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0jph") +}], +"loop": true, +"name": &"defiler", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_bombard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_bombard.tres new file mode 100644 index 0000000..ee56120 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_bombard.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://d4kugwkqw2lbu"] + +[ext_resource type="Texture2D" uid="uid://bynesg17r4uml" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png" id="1_477nw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cdp0"] +atlas = ExtResource("1_477nw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfxvy"] +atlas = ExtResource("1_477nw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we5vk"] +atlas = ExtResource("1_477nw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rsg8"] +atlas = ExtResource("1_477nw") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aleoe"] +atlas = ExtResource("1_477nw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3xj5"] +atlas = ExtResource("1_477nw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b3e1"] +atlas = ExtResource("1_477nw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mw7l"] +atlas = ExtResource("1_477nw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvinc"] +atlas = ExtResource("1_477nw") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8vo7"] +atlas = ExtResource("1_477nw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrukc"] +atlas = ExtResource("1_477nw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpccx"] +atlas = ExtResource("1_477nw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v533j"] +atlas = ExtResource("1_477nw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckdht"] +atlas = ExtResource("1_477nw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egsj6"] +atlas = ExtResource("1_477nw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28oku"] +atlas = ExtResource("1_477nw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxppk"] +atlas = ExtResource("1_477nw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htrqj"] +atlas = ExtResource("1_477nw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8702x"] +atlas = ExtResource("1_477nw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt28u"] +atlas = ExtResource("1_477nw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th07m"] +atlas = ExtResource("1_477nw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2ppx"] +atlas = ExtResource("1_477nw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d568m"] +atlas = ExtResource("1_477nw") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roa3h"] +atlas = ExtResource("1_477nw") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du84l"] +atlas = ExtResource("1_477nw") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cdp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfxvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we5vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rsg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aleoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3xj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b3e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mw7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvinc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8vo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrukc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpccx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v533j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckdht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egsj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28oku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxppk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htrqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8702x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt28u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th07m") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2ppx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d568m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roa3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du84l") +}], +"loop": true, +"name": &"bombard", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_cobrastrike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_cobrastrike.tres new file mode 100644 index 0000000..53b94f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_cobrastrike.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://b8lxf0cjfxger"] + +[ext_resource type="Texture2D" uid="uid://h44rrmgguoac" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png" id="1_mfftp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl45f"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2653"] +atlas = ExtResource("1_mfftp") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1hnf"] +atlas = ExtResource("1_mfftp") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k2f"] +atlas = ExtResource("1_mfftp") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02br1"] +atlas = ExtResource("1_mfftp") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnpkx"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q5ed"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mexis"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk173"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4vdb"] +atlas = ExtResource("1_mfftp") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t4u0"] +atlas = ExtResource("1_mfftp") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynjhk"] +atlas = ExtResource("1_mfftp") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbsml"] +atlas = ExtResource("1_mfftp") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wjqq"] +atlas = ExtResource("1_mfftp") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keyfi"] +atlas = ExtResource("1_mfftp") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8qd8"] +atlas = ExtResource("1_mfftp") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61tw2"] +atlas = ExtResource("1_mfftp") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fve64"] +atlas = ExtResource("1_mfftp") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e60q"] +atlas = ExtResource("1_mfftp") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq3v4"] +atlas = ExtResource("1_mfftp") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl45f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2653") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1hnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80k2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02br1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnpkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q5ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mexis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk173") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4vdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t4u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynjhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbsml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wjqq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_keyfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8qd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61tw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fve64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e60q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq3v4") +}], +"loop": true, +"name": &"cobrastrike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_crimsoncoil.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_crimsoncoil.tres new file mode 100644 index 0000000..957fde1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_crimsoncoil.tres @@ -0,0 +1,205 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://dmlnxyix3n1os"] + +[ext_resource type="Texture2D" uid="uid://bq4cu836kg2r8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png" id="1_vtg3o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhi46"] +atlas = ExtResource("1_vtg3o") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4s5w"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4yvq"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7rk2"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r10fa"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7fho"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56sc1"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2uiu"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvq2h"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16le5"] +atlas = ExtResource("1_vtg3o") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3gv8"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hk4"] +atlas = ExtResource("1_vtg3o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mx6o"] +atlas = ExtResource("1_vtg3o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlp26"] +atlas = ExtResource("1_vtg3o") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obvru"] +atlas = ExtResource("1_vtg3o") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmeel"] +atlas = ExtResource("1_vtg3o") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsdha"] +atlas = ExtResource("1_vtg3o") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3njxr"] +atlas = ExtResource("1_vtg3o") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8hh4"] +atlas = ExtResource("1_vtg3o") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4lu3"] +atlas = ExtResource("1_vtg3o") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5krdq"] +atlas = ExtResource("1_vtg3o") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8yys"] +atlas = ExtResource("1_vtg3o") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaxcl"] +atlas = ExtResource("1_vtg3o") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o6u7"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dm1m"] +atlas = ExtResource("1_vtg3o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqiu1"] +atlas = ExtResource("1_vtg3o") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tstau"] +atlas = ExtResource("1_vtg3o") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhi46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4s5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4yvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7rk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r10fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7fho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56sc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2uiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvq2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16le5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3gv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0hk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mx6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlp26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obvru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmeel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsdha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3njxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8hh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4lu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5krdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8yys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaxcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o6u7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dm1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqiu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tstau") +}], +"loop": true, +"name": &"crimsoncoil", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_deathstrikeseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_deathstrikeseal.tres new file mode 100644 index 0000000..631b045 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_deathstrikeseal.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://ilj8bm6e4emo"] + +[ext_resource type="Texture2D" uid="uid://t8rgul5jxgjm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png" id="1_jsfu0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_081vp"] +atlas = ExtResource("1_jsfu0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o48er"] +atlas = ExtResource("1_jsfu0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p874r"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5ns2"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xcr7"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynrie"] +atlas = ExtResource("1_jsfu0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4q51"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hodnu"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xx55"] +atlas = ExtResource("1_jsfu0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vtwr"] +atlas = ExtResource("1_jsfu0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv526"] +atlas = ExtResource("1_jsfu0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvudq"] +atlas = ExtResource("1_jsfu0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peyls"] +atlas = ExtResource("1_jsfu0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hvpb"] +atlas = ExtResource("1_jsfu0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52ugu"] +atlas = ExtResource("1_jsfu0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85hav"] +atlas = ExtResource("1_jsfu0") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_081vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o48er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p874r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5ns2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xcr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynrie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4q51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hodnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xx55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vtwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv526") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvudq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peyls") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hvpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52ugu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85hav") +}], +"loop": true, +"name": &"deathstrikeseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_dejavu.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_dejavu.tres new file mode 100644 index 0000000..1be04b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_dejavu.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://d4h1ono5683qi"] + +[ext_resource type="Texture2D" uid="uid://cq0j2q8yf63vx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png" id="1_x1fy6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e48o"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0s80"] +atlas = ExtResource("1_x1fy6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m67em"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj4ss"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnnql"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx1of"] +atlas = ExtResource("1_x1fy6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh77f"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgomp"] +atlas = ExtResource("1_x1fy6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c48to"] +atlas = ExtResource("1_x1fy6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms7pk"] +atlas = ExtResource("1_x1fy6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g22o"] +atlas = ExtResource("1_x1fy6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4sb3"] +atlas = ExtResource("1_x1fy6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x00tk"] +atlas = ExtResource("1_x1fy6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouv8b"] +atlas = ExtResource("1_x1fy6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euswt"] +atlas = ExtResource("1_x1fy6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l5iv"] +atlas = ExtResource("1_x1fy6") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e48o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0s80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m67em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj4ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnnql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh77f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgomp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c48to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms7pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g22o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4sb3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x00tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouv8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euswt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l5iv") +}], +"loop": true, +"name": &"dejavu", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_earthtwilight.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_earthtwilight.tres new file mode 100644 index 0000000..0543cfe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_earthtwilight.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://dij64ofv85r48"] + +[ext_resource type="Texture2D" uid="uid://bx6mhu6i7la7j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png" id="1_gmwkm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sahm"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ydlp"] +atlas = ExtResource("1_gmwkm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbjmx"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvmai"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwc4v"] +atlas = ExtResource("1_gmwkm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2gai"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axbrn"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_386m4"] +atlas = ExtResource("1_gmwkm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuuin"] +atlas = ExtResource("1_gmwkm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjhdj"] +atlas = ExtResource("1_gmwkm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er4at"] +atlas = ExtResource("1_gmwkm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34w2r"] +atlas = ExtResource("1_gmwkm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojxun"] +atlas = ExtResource("1_gmwkm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6752o"] +atlas = ExtResource("1_gmwkm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kxiv"] +atlas = ExtResource("1_gmwkm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft84g"] +atlas = ExtResource("1_gmwkm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxi5k"] +atlas = ExtResource("1_gmwkm") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sahm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ydlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbjmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvmai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwc4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2gai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axbrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_386m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuuin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjhdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er4at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34w2r") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojxun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6752o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kxiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft84g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxi5k") +}], +"loop": true, +"name": &"earthtwilight", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_eightgates.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_eightgates.tres new file mode 100644 index 0000000..eeba9ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_eightgates.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://da230pqltmbhg"] + +[ext_resource type="Texture2D" uid="uid://c32eotppdrtt4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png" id="1_htwmv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5faqi"] +atlas = ExtResource("1_htwmv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekqnf"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43l0k"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axi5e"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucxop"] +atlas = ExtResource("1_htwmv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toei6"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjta8"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nslq7"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcul0"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gynif"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v7ay"] +atlas = ExtResource("1_htwmv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6che"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t70k8"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxj2b"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlekg"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bam5a"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6afa"] +atlas = ExtResource("1_htwmv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaap0"] +atlas = ExtResource("1_htwmv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f72r0"] +atlas = ExtResource("1_htwmv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi02p"] +atlas = ExtResource("1_htwmv") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5faqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekqnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43l0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axi5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucxop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toei6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjta8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nslq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcul0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gynif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v7ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6che") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t70k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxj2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlekg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bam5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6afa") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaap0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f72r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi02p") +}], +"loop": true, +"name": &"eightgates", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_enpassant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_enpassant.tres new file mode 100644 index 0000000..1df210e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_enpassant.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://c1vg83aiecrkj"] + +[ext_resource type="Texture2D" uid="uid://duuaflexpfyaf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png" id="1_0qi2l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_08c2t"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn6n0"] +atlas = ExtResource("1_0qi2l") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glrpn"] +atlas = ExtResource("1_0qi2l") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqpe6"] +atlas = ExtResource("1_0qi2l") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4atj"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrlv4"] +atlas = ExtResource("1_0qi2l") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42xv4"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1005l"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vfpf"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcj42"] +atlas = ExtResource("1_0qi2l") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eedvo"] +atlas = ExtResource("1_0qi2l") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o256"] +atlas = ExtResource("1_0qi2l") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfcg1"] +atlas = ExtResource("1_0qi2l") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqw77"] +atlas = ExtResource("1_0qi2l") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1646"] +atlas = ExtResource("1_0qi2l") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw07q"] +atlas = ExtResource("1_0qi2l") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qexfv"] +atlas = ExtResource("1_0qi2l") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hllr4"] +atlas = ExtResource("1_0qi2l") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h3le"] +atlas = ExtResource("1_0qi2l") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_08c2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn6n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glrpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqpe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4atj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrlv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42xv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1005l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vfpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcj42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eedvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o256") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfcg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqw77") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1646") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw07q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qexfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hllr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h3le") +}], +"loop": true, +"name": &"enpassant", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_etherealblades.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_etherealblades.tres new file mode 100644 index 0000000..552b237 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_etherealblades.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dt4jw7vrqc6hg"] + +[ext_resource type="Texture2D" uid="uid://dlywv6utgh03w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png" id="1_3ojqe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixymj"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p232p"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oxq0"] +atlas = ExtResource("1_3ojqe") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ymwv"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5umf4"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1t1a"] +atlas = ExtResource("1_3ojqe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd5w4"] +atlas = ExtResource("1_3ojqe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45vtq"] +atlas = ExtResource("1_3ojqe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u16ua"] +atlas = ExtResource("1_3ojqe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye2vg"] +atlas = ExtResource("1_3ojqe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpv8i"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smqmj"] +atlas = ExtResource("1_3ojqe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp5pj"] +atlas = ExtResource("1_3ojqe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u74qk"] +atlas = ExtResource("1_3ojqe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6dp1"] +atlas = ExtResource("1_3ojqe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijqpa"] +atlas = ExtResource("1_3ojqe") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixymj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p232p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oxq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ymwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5umf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1t1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd5w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45vtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u16ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye2vg") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpv8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smqmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp5pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u74qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6dp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijqpa") +}], +"loop": true, +"name": &"etherealblades", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_firestormofagony.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_firestormofagony.tres new file mode 100644 index 0000000..e67c5ce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_firestormofagony.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://rg1mgg3mii5f"] + +[ext_resource type="Texture2D" uid="uid://bfi0nmy3wupxt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png" id="1_0tvco"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_us2qi"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f7kp"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckyg2"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48r5k"] +atlas = ExtResource("1_0tvco") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ujrt"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1v8v"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sag82"] +atlas = ExtResource("1_0tvco") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s44yb"] +atlas = ExtResource("1_0tvco") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbq6p"] +atlas = ExtResource("1_0tvco") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc0mc"] +atlas = ExtResource("1_0tvco") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqn8w"] +atlas = ExtResource("1_0tvco") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o88k"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1qw1"] +atlas = ExtResource("1_0tvco") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceebn"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjga5"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v52ry"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bkjs"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdyc7"] +atlas = ExtResource("1_0tvco") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_us2qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f7kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckyg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48r5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ujrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1v8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sag82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s44yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbq6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc0mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqn8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o88k") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1qw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceebn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjga5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v52ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bkjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdyc7") +}], +"loop": true, +"name": &"firestormofagony", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ghost_lightning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ghost_lightning.tres new file mode 100644 index 0000000..863e12e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ghost_lightning.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://bto66l1utt3yp"] + +[ext_resource type="Texture2D" uid="uid://dl4i1abxdkirp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png" id="1_juwr5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw733"] +atlas = ExtResource("1_juwr5") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggpcc"] +atlas = ExtResource("1_juwr5") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkwmp"] +atlas = ExtResource("1_juwr5") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qa3a"] +atlas = ExtResource("1_juwr5") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ynhk"] +atlas = ExtResource("1_juwr5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hj83"] +atlas = ExtResource("1_juwr5") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pejbs"] +atlas = ExtResource("1_juwr5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hatm"] +atlas = ExtResource("1_juwr5") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwo4n"] +atlas = ExtResource("1_juwr5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc3uv"] +atlas = ExtResource("1_juwr5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4djx"] +atlas = ExtResource("1_juwr5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mooep"] +atlas = ExtResource("1_juwr5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klknx"] +atlas = ExtResource("1_juwr5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11aym"] +atlas = ExtResource("1_juwr5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6cww"] +atlas = ExtResource("1_juwr5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bicig"] +atlas = ExtResource("1_juwr5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6kep"] +atlas = ExtResource("1_juwr5") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auujp"] +atlas = ExtResource("1_juwr5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlm1k"] +atlas = ExtResource("1_juwr5") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2sq7"] +atlas = ExtResource("1_juwr5") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw733") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggpcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkwmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qa3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ynhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hj83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pejbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hatm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwo4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc3uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4djx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mooep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klknx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11aym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6cww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bicig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6kep") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_auujp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlm1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2sq7") +}], +"loop": true, +"name": &"lightning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gogetem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gogetem.tres new file mode 100644 index 0000000..8d5e893 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gogetem.tres @@ -0,0 +1,86 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://dmaso73vvsq5j"] + +[ext_resource type="Texture2D" uid="uid://s2k1mm8ggo8d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png" id="1_1u3f7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckp3m"] +atlas = ExtResource("1_1u3f7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xog5v"] +atlas = ExtResource("1_1u3f7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuwbe"] +atlas = ExtResource("1_1u3f7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n88nw"] +atlas = ExtResource("1_1u3f7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtrrg"] +atlas = ExtResource("1_1u3f7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6btn"] +atlas = ExtResource("1_1u3f7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmgod"] +atlas = ExtResource("1_1u3f7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8fsr"] +atlas = ExtResource("1_1u3f7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_racj2"] +atlas = ExtResource("1_1u3f7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv86i"] +atlas = ExtResource("1_1u3f7") +region = Rect2(49, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckp3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xog5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuwbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n88nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtrrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6btn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmgod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8fsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_racj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv86i") +}], +"loop": true, +"name": &"gogetem", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gotatsu.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gotatsu.tres new file mode 100644 index 0000000..ad661d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_gotatsu.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://78rl5u5vb5x4"] + +[ext_resource type="Texture2D" uid="uid://dfotgstwfosu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png" id="1_w1npe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_750vg"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwb41"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mnvv"] +atlas = ExtResource("1_w1npe") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax32x"] +atlas = ExtResource("1_w1npe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5g6e"] +atlas = ExtResource("1_w1npe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxmj1"] +atlas = ExtResource("1_w1npe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nagu7"] +atlas = ExtResource("1_w1npe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4db2"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4vcp"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdytk"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fj1j"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qehwc"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58aje"] +atlas = ExtResource("1_w1npe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8opbv"] +atlas = ExtResource("1_w1npe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrtlp"] +atlas = ExtResource("1_w1npe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqd2t"] +atlas = ExtResource("1_w1npe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6f53"] +atlas = ExtResource("1_w1npe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufddw"] +atlas = ExtResource("1_w1npe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx78p"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msp3e"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f52r"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bii2g"] +atlas = ExtResource("1_w1npe") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_750vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwb41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mnvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax32x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5g6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxmj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nagu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4db2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4vcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdytk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fj1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qehwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58aje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8opbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrtlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqd2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6f53") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufddw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx78p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msp3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f52r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bii2g") +}], +"loop": true, +"name": &"gotatsu", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_heavens_eclipse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_heavens_eclipse.tres new file mode 100644 index 0000000..466e488 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_heavens_eclipse.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://cl5g3bjwqqtwq"] + +[ext_resource type="Texture2D" uid="uid://ch0r5ki7c3shu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png" id="1_7ifyx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_inkvi"] +atlas = ExtResource("1_7ifyx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pee3u"] +atlas = ExtResource("1_7ifyx") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4wpj"] +atlas = ExtResource("1_7ifyx") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmmdf"] +atlas = ExtResource("1_7ifyx") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x08di"] +atlas = ExtResource("1_7ifyx") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg2j7"] +atlas = ExtResource("1_7ifyx") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moy2d"] +atlas = ExtResource("1_7ifyx") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd0cp"] +atlas = ExtResource("1_7ifyx") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f83st"] +atlas = ExtResource("1_7ifyx") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xngsq"] +atlas = ExtResource("1_7ifyx") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efp5m"] +atlas = ExtResource("1_7ifyx") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkcp6"] +atlas = ExtResource("1_7ifyx") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6a37"] +atlas = ExtResource("1_7ifyx") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b80vc"] +atlas = ExtResource("1_7ifyx") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iothj"] +atlas = ExtResource("1_7ifyx") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7cpe"] +atlas = ExtResource("1_7ifyx") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyhdd"] +atlas = ExtResource("1_7ifyx") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2ni4"] +atlas = ExtResource("1_7ifyx") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_inkvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pee3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4wpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmmdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x08di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg2j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moy2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd0cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f83st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xngsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efp5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkcp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6a37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b80vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iothj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7cpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyhdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2ni4") +}], +"loop": true, +"name": &"eclipse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hellskitchen.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hellskitchen.tres new file mode 100644 index 0000000..73ac06b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hellskitchen.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://dev8xyc8e2axo"] + +[ext_resource type="Texture2D" uid="uid://bipfsx7de7dkp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png" id="1_lnm2x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq4wp"] +atlas = ExtResource("1_lnm2x") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sanni"] +atlas = ExtResource("1_lnm2x") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arpvt"] +atlas = ExtResource("1_lnm2x") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nopvi"] +atlas = ExtResource("1_lnm2x") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53xyc"] +atlas = ExtResource("1_lnm2x") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84eq1"] +atlas = ExtResource("1_lnm2x") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x316j"] +atlas = ExtResource("1_lnm2x") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfvle"] +atlas = ExtResource("1_lnm2x") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5htlc"] +atlas = ExtResource("1_lnm2x") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gioei"] +atlas = ExtResource("1_lnm2x") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4m5k"] +atlas = ExtResource("1_lnm2x") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxrdx"] +atlas = ExtResource("1_lnm2x") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1k8g"] +atlas = ExtResource("1_lnm2x") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l87tp"] +atlas = ExtResource("1_lnm2x") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqh5a"] +atlas = ExtResource("1_lnm2x") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpx88"] +atlas = ExtResource("1_lnm2x") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osfb4"] +atlas = ExtResource("1_lnm2x") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdc4t"] +atlas = ExtResource("1_lnm2x") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k211s"] +atlas = ExtResource("1_lnm2x") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kxxm"] +atlas = ExtResource("1_lnm2x") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hcbg"] +atlas = ExtResource("1_lnm2x") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ofay"] +atlas = ExtResource("1_lnm2x") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq4wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sanni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arpvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nopvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53xyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84eq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x316j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfvle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5htlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gioei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4m5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxrdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1k8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l87tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqh5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpx88") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_osfb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdc4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k211s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kxxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hcbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ofay") +}], +"loop": true, +"name": &"hellskitchen", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hollowvortex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hollowvortex.tres new file mode 100644 index 0000000..10b6c76 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_hollowvortex.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://8vuxe1p5v34d"] + +[ext_resource type="Texture2D" uid="uid://cfh0p0nk18bet" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png" id="1_e8q4l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbyjs"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87xrs"] +atlas = ExtResource("1_e8q4l") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uxx5"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt4kh"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuqv0"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mwrv"] +atlas = ExtResource("1_e8q4l") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7rcu"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlmgy"] +atlas = ExtResource("1_e8q4l") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkdcp"] +atlas = ExtResource("1_e8q4l") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbyn4"] +atlas = ExtResource("1_e8q4l") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onstf"] +atlas = ExtResource("1_e8q4l") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuxgk"] +atlas = ExtResource("1_e8q4l") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ji8b"] +atlas = ExtResource("1_e8q4l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2og0d"] +atlas = ExtResource("1_e8q4l") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdfgi"] +atlas = ExtResource("1_e8q4l") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3up6"] +atlas = ExtResource("1_e8q4l") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbyjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87xrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uxx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt4kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuqv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mwrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7rcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlmgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkdcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbyn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onstf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuxgk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ji8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2og0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdfgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3up6") +}], +"loop": true, +"name": &"hollowvortex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_inner_focus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_inner_focus.tres new file mode 100644 index 0000000..67b43e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_inner_focus.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://ds7jfh0o2xsep"] + +[ext_resource type="Texture2D" uid="uid://daiuihkc87p16" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png" id="1_hqtxd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c7w5"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmgxn"] +atlas = ExtResource("1_hqtxd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l6c2"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k2ej"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4uxk"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6cew"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykbcr"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qweu6"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib2s3"] +atlas = ExtResource("1_hqtxd") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2btvk"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj5vk"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m760x"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpf8o"] +atlas = ExtResource("1_hqtxd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4qla"] +atlas = ExtResource("1_hqtxd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r164x"] +atlas = ExtResource("1_hqtxd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3v25"] +atlas = ExtResource("1_hqtxd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aail"] +atlas = ExtResource("1_hqtxd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n173l"] +atlas = ExtResource("1_hqtxd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3bcw"] +atlas = ExtResource("1_hqtxd") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh1au"] +atlas = ExtResource("1_hqtxd") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c7w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmgxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l6c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k2ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4uxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6cew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykbcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qweu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib2s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2btvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj5vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m760x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpf8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4qla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r164x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3v25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aail") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n173l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3bcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh1au") +}], +"loop": true, +"name": &"focus", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_joseki.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_joseki.tres new file mode 100644 index 0000000..303ad5c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_joseki.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://3eu216kod8mg"] + +[ext_resource type="Texture2D" uid="uid://dkvc6kcdnwk5c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png" id="1_owxaf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g1s6"] +atlas = ExtResource("1_owxaf") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rc8v"] +atlas = ExtResource("1_owxaf") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_211ce"] +atlas = ExtResource("1_owxaf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj3q2"] +atlas = ExtResource("1_owxaf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq1t7"] +atlas = ExtResource("1_owxaf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omtnj"] +atlas = ExtResource("1_owxaf") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8gw4"] +atlas = ExtResource("1_owxaf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgfiq"] +atlas = ExtResource("1_owxaf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daox2"] +atlas = ExtResource("1_owxaf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeca2"] +atlas = ExtResource("1_owxaf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syq7l"] +atlas = ExtResource("1_owxaf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jci8m"] +atlas = ExtResource("1_owxaf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cho4"] +atlas = ExtResource("1_owxaf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcrkt"] +atlas = ExtResource("1_owxaf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvmgd"] +atlas = ExtResource("1_owxaf") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij7qn"] +atlas = ExtResource("1_owxaf") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llhs2"] +atlas = ExtResource("1_owxaf") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4uun"] +atlas = ExtResource("1_owxaf") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dby3q"] +atlas = ExtResource("1_owxaf") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpfn4"] +atlas = ExtResource("1_owxaf") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g1s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rc8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_211ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq1t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omtnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8gw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgfiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daox2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeca2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syq7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jci8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cho4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcrkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvmgd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij7qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llhs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4uun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dby3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpfn4") +}], +"loop": true, +"name": &"joseki", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtaposition.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtaposition.tres new file mode 100644 index 0000000..d7204ba --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtaposition.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://biek66pbp3cud"] + +[ext_resource type="Texture2D" uid="uid://dbutdemuvd1y6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png" id="1_23csj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h4bm"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xq8t"] +atlas = ExtResource("1_23csj") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ntx"] +atlas = ExtResource("1_23csj") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ufog"] +atlas = ExtResource("1_23csj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf6ew"] +atlas = ExtResource("1_23csj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsbmu"] +atlas = ExtResource("1_23csj") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv3iy"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrno4"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujm1p"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0g1b"] +atlas = ExtResource("1_23csj") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6vos"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8f3y"] +atlas = ExtResource("1_23csj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee251"] +atlas = ExtResource("1_23csj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkan0"] +atlas = ExtResource("1_23csj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a56dr"] +atlas = ExtResource("1_23csj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4d6h"] +atlas = ExtResource("1_23csj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ap8w"] +atlas = ExtResource("1_23csj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjmqr"] +atlas = ExtResource("1_23csj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3mo6"] +atlas = ExtResource("1_23csj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rtft"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kug6"] +atlas = ExtResource("1_23csj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rchhn"] +atlas = ExtResource("1_23csj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgtny"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cey3"] +atlas = ExtResource("1_23csj") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52afy"] +atlas = ExtResource("1_23csj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idfl5"] +atlas = ExtResource("1_23csj") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h4bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xq8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ntx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ufog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf6ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsbmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv3iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrno4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujm1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0g1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6vos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8f3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee251") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkan0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a56dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4d6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ap8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjmqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3mo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rtft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kug6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rchhn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgtny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cey3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52afy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idfl5") +}], +"loop": true, +"name": &"juxtaposition", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtfriends.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtfriends.tres new file mode 100644 index 0000000..346f4cb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_juxtfriends.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://bjgn3rg3wmy6f"] + +[ext_resource type="Texture2D" uid="uid://da5t8nop37w6y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png" id="1_ij0q1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhaw1"] +atlas = ExtResource("1_ij0q1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrrx4"] +atlas = ExtResource("1_ij0q1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32ws7"] +atlas = ExtResource("1_ij0q1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kag0"] +atlas = ExtResource("1_ij0q1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y4ga"] +atlas = ExtResource("1_ij0q1") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w68q4"] +atlas = ExtResource("1_ij0q1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xrhu"] +atlas = ExtResource("1_ij0q1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkiud"] +atlas = ExtResource("1_ij0q1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c5np"] +atlas = ExtResource("1_ij0q1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntp1o"] +atlas = ExtResource("1_ij0q1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fc43"] +atlas = ExtResource("1_ij0q1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe4a2"] +atlas = ExtResource("1_ij0q1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8mnr"] +atlas = ExtResource("1_ij0q1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vi1g"] +atlas = ExtResource("1_ij0q1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsrq1"] +atlas = ExtResource("1_ij0q1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7idc"] +atlas = ExtResource("1_ij0q1") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqaiu"] +atlas = ExtResource("1_ij0q1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymecw"] +atlas = ExtResource("1_ij0q1") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb8rn"] +atlas = ExtResource("1_ij0q1") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m6tr"] +atlas = ExtResource("1_ij0q1") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhaw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrrx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32ws7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kag0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y4ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w68q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xrhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkiud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c5np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntp1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fc43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe4a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8mnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vi1g") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsrq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7idc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqaiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymecw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb8rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m6tr") +}], +"loop": true, +"name": &"juxtfriends", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kagelightning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kagelightning.tres new file mode 100644 index 0000000..8b39aad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kagelightning.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://cfw0snvxbiq65"] + +[ext_resource type="Texture2D" uid="uid://7mh58ki8k7l6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png" id="1_hr0u3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fow5s"] +atlas = ExtResource("1_hr0u3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fitwm"] +atlas = ExtResource("1_hr0u3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6dng"] +atlas = ExtResource("1_hr0u3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2w14"] +atlas = ExtResource("1_hr0u3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la08v"] +atlas = ExtResource("1_hr0u3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h304"] +atlas = ExtResource("1_hr0u3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n28lh"] +atlas = ExtResource("1_hr0u3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72irh"] +atlas = ExtResource("1_hr0u3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hj2w"] +atlas = ExtResource("1_hr0u3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0su3"] +atlas = ExtResource("1_hr0u3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn643"] +atlas = ExtResource("1_hr0u3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8q2k"] +atlas = ExtResource("1_hr0u3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14ti"] +atlas = ExtResource("1_hr0u3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj1p3"] +atlas = ExtResource("1_hr0u3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgo6j"] +atlas = ExtResource("1_hr0u3") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fow5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fitwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6dng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2w14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la08v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h304") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n28lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72irh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hj2w") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0su3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn643") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8q2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj1p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgo6j") +}], +"loop": true, +"name": &"kagelightning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_killingedge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_killingedge.tres new file mode 100644 index 0000000..3cfa2b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_killingedge.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://d4evx0jklira4"] + +[ext_resource type="Texture2D" uid="uid://rv55x18nuuuw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png" id="1_nboav"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir7jn"] +atlas = ExtResource("1_nboav") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juo2y"] +atlas = ExtResource("1_nboav") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mceem"] +atlas = ExtResource("1_nboav") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcs1o"] +atlas = ExtResource("1_nboav") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t5ga"] +atlas = ExtResource("1_nboav") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2i57"] +atlas = ExtResource("1_nboav") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwfp6"] +atlas = ExtResource("1_nboav") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72b4d"] +atlas = ExtResource("1_nboav") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdswr"] +atlas = ExtResource("1_nboav") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inqqd"] +atlas = ExtResource("1_nboav") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnrn8"] +atlas = ExtResource("1_nboav") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5obd4"] +atlas = ExtResource("1_nboav") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_simxh"] +atlas = ExtResource("1_nboav") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b77mv"] +atlas = ExtResource("1_nboav") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjh0q"] +atlas = ExtResource("1_nboav") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqgbi"] +atlas = ExtResource("1_nboav") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir7jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juo2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mceem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcs1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t5ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2i57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwfp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72b4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdswr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inqqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnrn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5obd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_simxh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b77mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjh0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqgbi") +}], +"loop": true, +"name": &"killingedge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kindle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kindle.tres new file mode 100644 index 0000000..8a63a77 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_kindle.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://bumxh444i0y5a"] + +[ext_resource type="Texture2D" uid="uid://cgcw50phtenta" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png" id="1_1k1nc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3a8h"] +atlas = ExtResource("1_1k1nc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtgad"] +atlas = ExtResource("1_1k1nc") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tejb7"] +atlas = ExtResource("1_1k1nc") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h012t"] +atlas = ExtResource("1_1k1nc") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5i6i"] +atlas = ExtResource("1_1k1nc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkox7"] +atlas = ExtResource("1_1k1nc") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulmdr"] +atlas = ExtResource("1_1k1nc") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0kqg"] +atlas = ExtResource("1_1k1nc") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iutnn"] +atlas = ExtResource("1_1k1nc") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svnga"] +atlas = ExtResource("1_1k1nc") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1xps"] +atlas = ExtResource("1_1k1nc") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bepg"] +atlas = ExtResource("1_1k1nc") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k57t"] +atlas = ExtResource("1_1k1nc") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6avo4"] +atlas = ExtResource("1_1k1nc") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s23qr"] +atlas = ExtResource("1_1k1nc") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6e2w"] +atlas = ExtResource("1_1k1nc") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3a8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtgad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tejb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h012t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5i6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkox7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulmdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0kqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iutnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svnga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1xps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bepg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k57t") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6avo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s23qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6e2w") +}], +"loop": true, +"name": &"kindle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_koanofhorns.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_koanofhorns.tres new file mode 100644 index 0000000..d8d5f9a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_koanofhorns.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://dtjh63wiqnfae"] + +[ext_resource type="Texture2D" uid="uid://bcl744js1g371" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png" id="1_833xd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwva2"] +atlas = ExtResource("1_833xd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lba3b"] +atlas = ExtResource("1_833xd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1ydh"] +atlas = ExtResource("1_833xd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj5pn"] +atlas = ExtResource("1_833xd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ximi"] +atlas = ExtResource("1_833xd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4okj7"] +atlas = ExtResource("1_833xd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eq8j"] +atlas = ExtResource("1_833xd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkdq0"] +atlas = ExtResource("1_833xd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47vdp"] +atlas = ExtResource("1_833xd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8dh0"] +atlas = ExtResource("1_833xd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivvdb"] +atlas = ExtResource("1_833xd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llt1b"] +atlas = ExtResource("1_833xd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffpyc"] +atlas = ExtResource("1_833xd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ow54"] +atlas = ExtResource("1_833xd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l7lg"] +atlas = ExtResource("1_833xd") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwva2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lba3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1ydh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj5pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ximi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4okj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eq8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkdq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47vdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8dh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivvdb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_llt1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffpyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ow54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l7lg") +}], +"loop": true, +"name": &"koanofhorns", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mana_vortex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mana_vortex.tres new file mode 100644 index 0000000..dd77e30 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mana_vortex.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://bmh4gqrk8d6ot"] + +[ext_resource type="Texture2D" uid="uid://1qr47hs7yqa1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png" id="1_o8he1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8x1m"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqo4u"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63qpk"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2jtq"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oijab"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0ik4"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a17g"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2afao"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80yb3"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hrjt"] +atlas = ExtResource("1_o8he1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw75s"] +atlas = ExtResource("1_o8he1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajrkd"] +atlas = ExtResource("1_o8he1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t4el"] +atlas = ExtResource("1_o8he1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qly72"] +atlas = ExtResource("1_o8he1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u16k"] +atlas = ExtResource("1_o8he1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sn1a"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqex1"] +atlas = ExtResource("1_o8he1") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8x1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqo4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63qpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2jtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oijab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0ik4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a17g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2afao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80yb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hrjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw75s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajrkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t4el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qly72") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u16k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sn1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqex1") +}], +"loop": true, +"name": &"vortex", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mechprogress.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mechprogress.tres new file mode 100644 index 0000000..ec59670 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mechprogress.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://b2tefwpkytg7v"] + +[ext_resource type="Texture2D" uid="uid://dsd5ovc0artmy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png" id="1_rlnkr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h6xj"] +atlas = ExtResource("1_rlnkr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4g2u"] +atlas = ExtResource("1_rlnkr") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe1q6"] +atlas = ExtResource("1_rlnkr") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbd70"] +atlas = ExtResource("1_rlnkr") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbx82"] +atlas = ExtResource("1_rlnkr") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f06mi"] +atlas = ExtResource("1_rlnkr") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mj0r"] +atlas = ExtResource("1_rlnkr") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_527c0"] +atlas = ExtResource("1_rlnkr") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l02c"] +atlas = ExtResource("1_rlnkr") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj1e4"] +atlas = ExtResource("1_rlnkr") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klqsj"] +atlas = ExtResource("1_rlnkr") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es4ty"] +atlas = ExtResource("1_rlnkr") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikgjk"] +atlas = ExtResource("1_rlnkr") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1ar7"] +atlas = ExtResource("1_rlnkr") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upjgy"] +atlas = ExtResource("1_rlnkr") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0mdq"] +atlas = ExtResource("1_rlnkr") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c11sc"] +atlas = ExtResource("1_rlnkr") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kapl5"] +atlas = ExtResource("1_rlnkr") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jt5i"] +atlas = ExtResource("1_rlnkr") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2dl4"] +atlas = ExtResource("1_rlnkr") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsikc"] +atlas = ExtResource("1_rlnkr") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h6xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4g2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe1q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbd70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbx82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f06mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mj0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_527c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l02c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj1e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klqsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es4ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikgjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1ar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upjgy") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0mdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c11sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kapl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jt5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2dl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsikc") +}], +"loop": true, +"name": &"mechprogress", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mirrormeld.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mirrormeld.tres new file mode 100644 index 0000000..f60b60f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mirrormeld.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://ntqsvesq721t"] + +[ext_resource type="Texture2D" uid="uid://eva3cwf2hx7y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png" id="1_dhsp8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_et2em"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7kd0"] +atlas = ExtResource("1_dhsp8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijle8"] +atlas = ExtResource("1_dhsp8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcf6d"] +atlas = ExtResource("1_dhsp8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wmaw"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq6by"] +atlas = ExtResource("1_dhsp8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvqii"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hthi3"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wemm3"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvgvv"] +atlas = ExtResource("1_dhsp8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr2ev"] +atlas = ExtResource("1_dhsp8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in1m7"] +atlas = ExtResource("1_dhsp8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xf6"] +atlas = ExtResource("1_dhsp8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpge4"] +atlas = ExtResource("1_dhsp8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyogp"] +atlas = ExtResource("1_dhsp8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7m0x"] +atlas = ExtResource("1_dhsp8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5o46"] +atlas = ExtResource("1_dhsp8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rvsq"] +atlas = ExtResource("1_dhsp8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm7d7"] +atlas = ExtResource("1_dhsp8") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_et2em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7kd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijle8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcf6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wmaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq6by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvqii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hthi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wemm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvgvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr2ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in1m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpge4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyogp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7m0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5o46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rvsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm7d7") +}], +"loop": true, +"name": &"mirrormeld", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistdragonseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistdragonseal.tres new file mode 100644 index 0000000..81244d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistdragonseal.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://k7ywvq15agu0"] + +[ext_resource type="Texture2D" uid="uid://djs3rhcqyb2u7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png" id="1_64qyx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5lyn"] +atlas = ExtResource("1_64qyx") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpyba"] +atlas = ExtResource("1_64qyx") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kprim"] +atlas = ExtResource("1_64qyx") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuvu0"] +atlas = ExtResource("1_64qyx") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqb0x"] +atlas = ExtResource("1_64qyx") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uchx5"] +atlas = ExtResource("1_64qyx") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4v4d"] +atlas = ExtResource("1_64qyx") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg7yp"] +atlas = ExtResource("1_64qyx") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmvb"] +atlas = ExtResource("1_64qyx") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c80u"] +atlas = ExtResource("1_64qyx") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73y1e"] +atlas = ExtResource("1_64qyx") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eg70"] +atlas = ExtResource("1_64qyx") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4lcl"] +atlas = ExtResource("1_64qyx") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4uvb"] +atlas = ExtResource("1_64qyx") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djghq"] +atlas = ExtResource("1_64qyx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4weox"] +atlas = ExtResource("1_64qyx") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5lyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpyba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kprim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuvu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqb0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uchx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4v4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg7yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c80u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73y1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eg70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4lcl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4uvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djghq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4weox") +}], +"loop": true, +"name": &"mistdragonseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistwalking.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistwalking.tres new file mode 100644 index 0000000..53858cc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_mistwalking.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://btab1rlpsdwrs"] + +[ext_resource type="Texture2D" uid="uid://yb4f6soh5bnp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png" id="1_tfea1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmld1"] +atlas = ExtResource("1_tfea1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tswi"] +atlas = ExtResource("1_tfea1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2qkl"] +atlas = ExtResource("1_tfea1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n45b"] +atlas = ExtResource("1_tfea1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyeg5"] +atlas = ExtResource("1_tfea1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54kvg"] +atlas = ExtResource("1_tfea1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dsgp"] +atlas = ExtResource("1_tfea1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jem5f"] +atlas = ExtResource("1_tfea1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmlt6"] +atlas = ExtResource("1_tfea1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rso2o"] +atlas = ExtResource("1_tfea1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41gik"] +atlas = ExtResource("1_tfea1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82kjd"] +atlas = ExtResource("1_tfea1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhq1k"] +atlas = ExtResource("1_tfea1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vnv5"] +atlas = ExtResource("1_tfea1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qc1y"] +atlas = ExtResource("1_tfea1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1fqt"] +atlas = ExtResource("1_tfea1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8ato"] +atlas = ExtResource("1_tfea1") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cirs6"] +atlas = ExtResource("1_tfea1") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmld1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tswi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2qkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n45b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyeg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54kvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dsgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jem5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmlt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rso2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41gik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82kjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhq1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vnv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qc1y") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1fqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8ato") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cirs6") +}], +"loop": true, +"name": &"mistwalking", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ninjutsumagics.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ninjutsumagics.tres new file mode 100644 index 0000000..35080bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ninjutsumagics.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://dd742r8spavjb"] + +[ext_resource type="Texture2D" uid="uid://d1r1o878cruu5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png" id="1_amgcj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1crr"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaus0"] +atlas = ExtResource("1_amgcj") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qivg2"] +atlas = ExtResource("1_amgcj") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k8vs"] +atlas = ExtResource("1_amgcj") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idv2y"] +atlas = ExtResource("1_amgcj") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q76r"] +atlas = ExtResource("1_amgcj") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufjby"] +atlas = ExtResource("1_amgcj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35auc"] +atlas = ExtResource("1_amgcj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np11v"] +atlas = ExtResource("1_amgcj") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n56e6"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6itrv"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_821wj"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6yr4"] +atlas = ExtResource("1_amgcj") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6d8p"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hecdm"] +atlas = ExtResource("1_amgcj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjgn0"] +atlas = ExtResource("1_amgcj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80hgm"] +atlas = ExtResource("1_amgcj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m2ye"] +atlas = ExtResource("1_amgcj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eof58"] +atlas = ExtResource("1_amgcj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix05m"] +atlas = ExtResource("1_amgcj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1evb4"] +atlas = ExtResource("1_amgcj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mac0s"] +atlas = ExtResource("1_amgcj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehvui"] +atlas = ExtResource("1_amgcj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymwsl"] +atlas = ExtResource("1_amgcj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qusbu"] +atlas = ExtResource("1_amgcj") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1crr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaus0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qivg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k8vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idv2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q76r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufjby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35auc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np11v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n56e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6itrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_821wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6yr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6d8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hecdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjgn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80hgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m2ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eof58") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix05m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1evb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mac0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehvui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymwsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qusbu") +}], +"loop": true, +"name": &"ninjutsumagics", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_obscuringblow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_obscuringblow.tres new file mode 100644 index 0000000..c4d51ad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_obscuringblow.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://dta5ajtk1mu0e"] + +[ext_resource type="Texture2D" uid="uid://bojho2cbg5g2k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png" id="1_u1c5w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g4ew"] +atlas = ExtResource("1_u1c5w") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16t0f"] +atlas = ExtResource("1_u1c5w") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg3ni"] +atlas = ExtResource("1_u1c5w") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj1qg"] +atlas = ExtResource("1_u1c5w") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe1i3"] +atlas = ExtResource("1_u1c5w") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txby1"] +atlas = ExtResource("1_u1c5w") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnow7"] +atlas = ExtResource("1_u1c5w") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ari5l"] +atlas = ExtResource("1_u1c5w") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ikn"] +atlas = ExtResource("1_u1c5w") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dye4x"] +atlas = ExtResource("1_u1c5w") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev5vh"] +atlas = ExtResource("1_u1c5w") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y0gd"] +atlas = ExtResource("1_u1c5w") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxl6n"] +atlas = ExtResource("1_u1c5w") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh8rw"] +atlas = ExtResource("1_u1c5w") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plapo"] +atlas = ExtResource("1_u1c5w") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m8pp"] +atlas = ExtResource("1_u1c5w") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg5oy"] +atlas = ExtResource("1_u1c5w") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecmed"] +atlas = ExtResource("1_u1c5w") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g4ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16t0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg3ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj1qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe1i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txby1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnow7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ari5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ikn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dye4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev5vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y0gd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxl6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh8rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plapo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m8pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg5oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecmed") +}], +"loop": true, +"name": &"obscuringblow", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_onyxbearseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_onyxbearseal.tres new file mode 100644 index 0000000..66c42bd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_onyxbearseal.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://bpdq14tbm1pfp"] + +[ext_resource type="Texture2D" uid="uid://cuofbkmry5slq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png" id="1_sj5nl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dofob"] +atlas = ExtResource("1_sj5nl") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1ax5"] +atlas = ExtResource("1_sj5nl") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4itqn"] +atlas = ExtResource("1_sj5nl") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sslet"] +atlas = ExtResource("1_sj5nl") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g413w"] +atlas = ExtResource("1_sj5nl") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsdyr"] +atlas = ExtResource("1_sj5nl") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qin18"] +atlas = ExtResource("1_sj5nl") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqjxx"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2oy8"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmc70"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vi5q"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ly"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em4iu"] +atlas = ExtResource("1_sj5nl") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ufkw"] +atlas = ExtResource("1_sj5nl") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15kud"] +atlas = ExtResource("1_sj5nl") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdt3s"] +atlas = ExtResource("1_sj5nl") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dofob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1ax5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4itqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sslet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g413w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsdyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qin18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqjxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2oy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmc70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vi5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h7ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em4iu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ufkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15kud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdt3s") +}], +"loop": true, +"name": &"onyxbearseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_pandajail.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_pandajail.tres new file mode 100644 index 0000000..3f6812e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_pandajail.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://hcam6wtcb58g"] + +[ext_resource type="Texture2D" uid="uid://dx1ptdkx17tir" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png" id="1_1dsw2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxt5t"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixb0x"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg7g0"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2jyt"] +atlas = ExtResource("1_1dsw2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u3x0"] +atlas = ExtResource("1_1dsw2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nupp6"] +atlas = ExtResource("1_1dsw2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0uo8"] +atlas = ExtResource("1_1dsw2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vavmc"] +atlas = ExtResource("1_1dsw2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj4m8"] +atlas = ExtResource("1_1dsw2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8sjv"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jclwc"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovssd"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu5bb"] +atlas = ExtResource("1_1dsw2") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxt5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixb0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg7g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2jyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u3x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nupp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0uo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vavmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj4m8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8sjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jclwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovssd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu5bb") +}], +"loop": true, +"name": &"pandajail", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_panddohug.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_panddohug.tres new file mode 100644 index 0000000..db60d3f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_panddohug.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://ytqheripwxst"] + +[ext_resource type="Texture2D" uid="uid://660nr2sbrp1g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png" id="1_q08yw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qxtn"] +atlas = ExtResource("1_q08yw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoft7"] +atlas = ExtResource("1_q08yw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m12ne"] +atlas = ExtResource("1_q08yw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrtrd"] +atlas = ExtResource("1_q08yw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_580lo"] +atlas = ExtResource("1_q08yw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_optv8"] +atlas = ExtResource("1_q08yw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ual5s"] +atlas = ExtResource("1_q08yw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkqq1"] +atlas = ExtResource("1_q08yw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxng6"] +atlas = ExtResource("1_q08yw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2gxn"] +atlas = ExtResource("1_q08yw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryof2"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp012"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4twf"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt1j3"] +atlas = ExtResource("1_q08yw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5d5k"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoi7q"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxp7b"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24q00"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hihl"] +atlas = ExtResource("1_q08yw") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qxtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoft7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m12ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrtrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_580lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_optv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ual5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkqq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxng6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2gxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryof2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp012") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4twf") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt1j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5d5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoi7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxp7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24q00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hihl") +}], +"loop": true, +"name": &"panddohug", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixbarrage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixbarrage.tres new file mode 100644 index 0000000..cffcf2f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixbarrage.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://e53t0kmxaumg"] + +[ext_resource type="Texture2D" uid="uid://cmxuk7m65368g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png" id="1_lg5oi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ban0"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j6gn"] +atlas = ExtResource("1_lg5oi") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2knl"] +atlas = ExtResource("1_lg5oi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miti0"] +atlas = ExtResource("1_lg5oi") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpdg7"] +atlas = ExtResource("1_lg5oi") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdqsg"] +atlas = ExtResource("1_lg5oi") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hya6u"] +atlas = ExtResource("1_lg5oi") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nlb3"] +atlas = ExtResource("1_lg5oi") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl285"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ux6"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onjxj"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chvee"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57wx1"] +atlas = ExtResource("1_lg5oi") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbhnx"] +atlas = ExtResource("1_lg5oi") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsqd5"] +atlas = ExtResource("1_lg5oi") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3fcd"] +atlas = ExtResource("1_lg5oi") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcp7k"] +atlas = ExtResource("1_lg5oi") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me2dg"] +atlas = ExtResource("1_lg5oi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rxve"] +atlas = ExtResource("1_lg5oi") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoqxg"] +atlas = ExtResource("1_lg5oi") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap13i"] +atlas = ExtResource("1_lg5oi") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ban0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j6gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2knl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miti0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpdg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdqsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hya6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nlb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl285") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ux6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onjxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chvee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57wx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbhnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsqd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3fcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcp7k") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_me2dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rxve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoqxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap13i") +}], +"loop": true, +"name": &"phoenixbarrage", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire.tres new file mode 100644 index 0000000..20774aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://b1v6mjxka82mn"] + +[ext_resource type="Texture2D" uid="uid://jtfkvn2iajru" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png" id="1_0bniv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmjwa"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gja1"] +atlas = ExtResource("1_0bniv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld25u"] +atlas = ExtResource("1_0bniv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqkbm"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13iyt"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x511k"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md3b8"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ov0"] +atlas = ExtResource("1_0bniv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4csqv"] +atlas = ExtResource("1_0bniv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5gwq"] +atlas = ExtResource("1_0bniv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjtua"] +atlas = ExtResource("1_0bniv") +region = Rect2(49, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmjwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gja1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld25u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqkbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13iyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x511k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md3b8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ov0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4csqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5gwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjtua") +}], +"loop": true, +"name": &"phoenixfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire02.tres new file mode 100644 index 0000000..6e5d761 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_phoenixfire02.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://ch7muq0ld6prx"] + +[ext_resource type="Texture2D" uid="uid://f4tn6mi6ylb3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png" id="1_hkedn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5q2d"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckxon"] +atlas = ExtResource("1_hkedn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f5p6"] +atlas = ExtResource("1_hkedn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5unt"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ga8e"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qrgw"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv2bk"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01g3o"] +atlas = ExtResource("1_hkedn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aegy"] +atlas = ExtResource("1_hkedn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o63hd"] +atlas = ExtResource("1_hkedn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xmee"] +atlas = ExtResource("1_hkedn") +region = Rect2(49, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5q2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckxon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f5p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5unt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ga8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qrgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv2bk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01g3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aegy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o63hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xmee") +}], +"loop": true, +"name": &"phoenixfire02", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_projection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_projection.tres new file mode 100644 index 0000000..60ab5db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_projection.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://2o3gjy65324p"] + +[ext_resource type="Texture2D" uid="uid://bemfips2codri" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png" id="1_kcl1o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mshiu"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxt47"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_150b0"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv8yl"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgltq"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80q8o"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx2sa"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm6os"] +atlas = ExtResource("1_kcl1o") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oihjr"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faeu6"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fap0o"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sh84"] +atlas = ExtResource("1_kcl1o") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muvcp"] +atlas = ExtResource("1_kcl1o") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7arbv"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0t7e"] +atlas = ExtResource("1_kcl1o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huhxp"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hns76"] +atlas = ExtResource("1_kcl1o") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pcch"] +atlas = ExtResource("1_kcl1o") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh32k"] +atlas = ExtResource("1_kcl1o") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl0pc"] +atlas = ExtResource("1_kcl1o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfkyn"] +atlas = ExtResource("1_kcl1o") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvwom"] +atlas = ExtResource("1_kcl1o") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3f8e"] +atlas = ExtResource("1_kcl1o") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mshiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxt47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_150b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv8yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgltq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80q8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx2sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm6os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oihjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faeu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fap0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sh84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muvcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7arbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0t7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huhxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hns76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pcch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh32k") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl0pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfkyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvwom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3f8e") +}], +"loop": true, +"name": &"projection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_saberspineseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_saberspineseal.tres new file mode 100644 index 0000000..3ea6478 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_saberspineseal.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dyoe7gjc35g1d"] + +[ext_resource type="Texture2D" uid="uid://c8iwxc3cueyjq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png" id="1_dtv2x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_brkvq"] +atlas = ExtResource("1_dtv2x") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrx1f"] +atlas = ExtResource("1_dtv2x") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ac47"] +atlas = ExtResource("1_dtv2x") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfek5"] +atlas = ExtResource("1_dtv2x") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fvoi"] +atlas = ExtResource("1_dtv2x") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7slpb"] +atlas = ExtResource("1_dtv2x") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jko1y"] +atlas = ExtResource("1_dtv2x") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34g0w"] +atlas = ExtResource("1_dtv2x") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klgcp"] +atlas = ExtResource("1_dtv2x") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffmnu"] +atlas = ExtResource("1_dtv2x") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hxv6"] +atlas = ExtResource("1_dtv2x") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6p6k"] +atlas = ExtResource("1_dtv2x") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix837"] +atlas = ExtResource("1_dtv2x") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qcb6"] +atlas = ExtResource("1_dtv2x") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik7gq"] +atlas = ExtResource("1_dtv2x") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myab5"] +atlas = ExtResource("1_dtv2x") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_brkvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrx1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ac47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfek5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fvoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7slpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jko1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34g0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klgcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffmnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hxv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6p6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix837") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qcb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik7gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myab5") +}], +"loop": true, +"name": &"saberspineseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_seekersquad.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_seekersquad.tres new file mode 100644 index 0000000..d17ff25 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_seekersquad.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://dvdlcobrnygyn"] + +[ext_resource type="Texture2D" uid="uid://dqvrsvlgm3fx3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png" id="1_7b6xg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_elqkv"] +atlas = ExtResource("1_7b6xg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws6qo"] +atlas = ExtResource("1_7b6xg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuac0"] +atlas = ExtResource("1_7b6xg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de1dg"] +atlas = ExtResource("1_7b6xg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0axnm"] +atlas = ExtResource("1_7b6xg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aemx"] +atlas = ExtResource("1_7b6xg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f01md"] +atlas = ExtResource("1_7b6xg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2b5p"] +atlas = ExtResource("1_7b6xg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8tvk"] +atlas = ExtResource("1_7b6xg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpd6u"] +atlas = ExtResource("1_7b6xg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf51q"] +atlas = ExtResource("1_7b6xg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkrog"] +atlas = ExtResource("1_7b6xg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t4ms"] +atlas = ExtResource("1_7b6xg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58v3j"] +atlas = ExtResource("1_7b6xg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjc5k"] +atlas = ExtResource("1_7b6xg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tew4e"] +atlas = ExtResource("1_7b6xg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pxep"] +atlas = ExtResource("1_7b6xg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ucy"] +atlas = ExtResource("1_7b6xg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mou41"] +atlas = ExtResource("1_7b6xg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdio6"] +atlas = ExtResource("1_7b6xg") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yx1p"] +atlas = ExtResource("1_7b6xg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndabn"] +atlas = ExtResource("1_7b6xg") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt458"] +atlas = ExtResource("1_7b6xg") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqut5"] +atlas = ExtResource("1_7b6xg") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_elqkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws6qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuac0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de1dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0axnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aemx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f01md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2b5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8tvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpd6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf51q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkrog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t4ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58v3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjc5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tew4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pxep") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mou41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdio6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yx1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndabn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt458") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqut5") +}], +"loop": true, +"name": &"seekersquad", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_shadowwaltz.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_shadowwaltz.tres new file mode 100644 index 0000000..57fda45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_shadowwaltz.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://i04pmmj3pxnm"] + +[ext_resource type="Texture2D" uid="uid://cvwtwor0u48j7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png" id="1_fd4xd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoqw2"] +atlas = ExtResource("1_fd4xd") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5xhn"] +atlas = ExtResource("1_fd4xd") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b52nn"] +atlas = ExtResource("1_fd4xd") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwuxv"] +atlas = ExtResource("1_fd4xd") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqi5n"] +atlas = ExtResource("1_fd4xd") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxhg4"] +atlas = ExtResource("1_fd4xd") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpdnw"] +atlas = ExtResource("1_fd4xd") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wedom"] +atlas = ExtResource("1_fd4xd") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdfjm"] +atlas = ExtResource("1_fd4xd") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsyw6"] +atlas = ExtResource("1_fd4xd") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp7jx"] +atlas = ExtResource("1_fd4xd") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxgv6"] +atlas = ExtResource("1_fd4xd") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08x7w"] +atlas = ExtResource("1_fd4xd") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmg16"] +atlas = ExtResource("1_fd4xd") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57e0p"] +atlas = ExtResource("1_fd4xd") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoqw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5xhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b52nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwuxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqi5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxhg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpdnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wedom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdfjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsyw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp7jx") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxgv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08x7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmg16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57e0p") +}], +"loop": true, +"name": &"shadowwaltz", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_darkness.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_darkness.tres new file mode 100644 index 0000000..d358b3a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_darkness.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://cd26gny5lsgj1"] + +[ext_resource type="Texture2D" uid="uid://dlvxa8bpiwmyx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png" id="1_hx2fc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kluk"] +atlas = ExtResource("1_hx2fc") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm7af"] +atlas = ExtResource("1_hx2fc") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6cw5"] +atlas = ExtResource("1_hx2fc") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16hb4"] +atlas = ExtResource("1_hx2fc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f1t3"] +atlas = ExtResource("1_hx2fc") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dse1s"] +atlas = ExtResource("1_hx2fc") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omoi3"] +atlas = ExtResource("1_hx2fc") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00a0q"] +atlas = ExtResource("1_hx2fc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh1h5"] +atlas = ExtResource("1_hx2fc") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpumm"] +atlas = ExtResource("1_hx2fc") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkuuj"] +atlas = ExtResource("1_hx2fc") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhttr"] +atlas = ExtResource("1_hx2fc") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqe1g"] +atlas = ExtResource("1_hx2fc") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onj06"] +atlas = ExtResource("1_hx2fc") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbkxe"] +atlas = ExtResource("1_hx2fc") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhf74"] +atlas = ExtResource("1_hx2fc") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0p36"] +atlas = ExtResource("1_hx2fc") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ly7"] +atlas = ExtResource("1_hx2fc") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ome"] +atlas = ExtResource("1_hx2fc") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g25fx"] +atlas = ExtResource("1_hx2fc") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kluk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm7af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6cw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16hb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f1t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dse1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omoi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00a0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh1h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpumm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkuuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhttr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqe1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onj06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbkxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhf74") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0p36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ly7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ome") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g25fx") +}], +"loop": true, +"name": &"darkness", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_earth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_earth.tres new file mode 100644 index 0000000..05494a9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_earth.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://osq20en1te5h"] + +[ext_resource type="Texture2D" uid="uid://s20co4cgp21b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png" id="1_jo5wh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukjjd"] +atlas = ExtResource("1_jo5wh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7sfb"] +atlas = ExtResource("1_jo5wh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w4hw"] +atlas = ExtResource("1_jo5wh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kti1j"] +atlas = ExtResource("1_jo5wh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3jji"] +atlas = ExtResource("1_jo5wh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k0wq"] +atlas = ExtResource("1_jo5wh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va648"] +atlas = ExtResource("1_jo5wh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rge7d"] +atlas = ExtResource("1_jo5wh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do58g"] +atlas = ExtResource("1_jo5wh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntrfj"] +atlas = ExtResource("1_jo5wh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45uws"] +atlas = ExtResource("1_jo5wh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmi5e"] +atlas = ExtResource("1_jo5wh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8icci"] +atlas = ExtResource("1_jo5wh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai4ir"] +atlas = ExtResource("1_jo5wh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvo41"] +atlas = ExtResource("1_jo5wh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqmfy"] +atlas = ExtResource("1_jo5wh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xv7f"] +atlas = ExtResource("1_jo5wh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5dst"] +atlas = ExtResource("1_jo5wh") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyqtg"] +atlas = ExtResource("1_jo5wh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eunok"] +atlas = ExtResource("1_jo5wh") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukjjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7sfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w4hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kti1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3jji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k0wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va648") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rge7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do58g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntrfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45uws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmi5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8icci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai4ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvo41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqmfy") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xv7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5dst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyqtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eunok") +}], +"loop": true, +"name": &"earth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_light.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_light.tres new file mode 100644 index 0000000..e3b3b94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_light.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://wccmhyjhbbs4"] + +[ext_resource type="Texture2D" uid="uid://c4vd1avo5jrtf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png" id="1_qovbo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w100y"] +atlas = ExtResource("1_qovbo") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdup8"] +atlas = ExtResource("1_qovbo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4x14"] +atlas = ExtResource("1_qovbo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqa8q"] +atlas = ExtResource("1_qovbo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqh5c"] +atlas = ExtResource("1_qovbo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4acf"] +atlas = ExtResource("1_qovbo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llmyh"] +atlas = ExtResource("1_qovbo") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kkge"] +atlas = ExtResource("1_qovbo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2h5t"] +atlas = ExtResource("1_qovbo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51843"] +atlas = ExtResource("1_qovbo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bcgk"] +atlas = ExtResource("1_qovbo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i1wa"] +atlas = ExtResource("1_qovbo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttrps"] +atlas = ExtResource("1_qovbo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr6k0"] +atlas = ExtResource("1_qovbo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnwkt"] +atlas = ExtResource("1_qovbo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8387"] +atlas = ExtResource("1_qovbo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wcg4"] +atlas = ExtResource("1_qovbo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hb7d"] +atlas = ExtResource("1_qovbo") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8atw8"] +atlas = ExtResource("1_qovbo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk3kg"] +atlas = ExtResource("1_qovbo") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w100y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdup8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4x14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqa8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqh5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4acf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llmyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kkge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2h5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51843") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bcgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i1wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttrps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr6k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnwkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8387") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wcg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hb7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8atw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk3kg") +}], +"loop": true, +"name": &"light", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_wind.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_wind.tres new file mode 100644 index 0000000..8905591 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spellsword_wind.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://dlbctyqytt2k1"] + +[ext_resource type="Texture2D" uid="uid://b6msm6mwdvq4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png" id="1_smncl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j45xd"] +atlas = ExtResource("1_smncl") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms4nj"] +atlas = ExtResource("1_smncl") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhn1s"] +atlas = ExtResource("1_smncl") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogjih"] +atlas = ExtResource("1_smncl") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5nf"] +atlas = ExtResource("1_smncl") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ueb"] +atlas = ExtResource("1_smncl") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs18t"] +atlas = ExtResource("1_smncl") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4cb2"] +atlas = ExtResource("1_smncl") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3k6s"] +atlas = ExtResource("1_smncl") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7luy7"] +atlas = ExtResource("1_smncl") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbpcb"] +atlas = ExtResource("1_smncl") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k6ie"] +atlas = ExtResource("1_smncl") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clf51"] +atlas = ExtResource("1_smncl") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqfhr"] +atlas = ExtResource("1_smncl") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k70ei"] +atlas = ExtResource("1_smncl") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi2wj"] +atlas = ExtResource("1_smncl") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nptnw"] +atlas = ExtResource("1_smncl") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwwut"] +atlas = ExtResource("1_smncl") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wer74"] +atlas = ExtResource("1_smncl") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edfql"] +atlas = ExtResource("1_smncl") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j45xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms4nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhn1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogjih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ueb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs18t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4cb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3k6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7luy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbpcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k6ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clf51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqfhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k70ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi2wj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nptnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwwut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wer74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edfql") +}], +"loop": true, +"name": &"wind", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiralcounter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiralcounter.tres new file mode 100644 index 0000000..ba207da --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiralcounter.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://bfa6tsk0lsjwg"] + +[ext_resource type="Texture2D" uid="uid://0n0bjmdmn7d2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png" id="1_i3pv8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvw0i"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bpp0"] +atlas = ExtResource("1_i3pv8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f7y8"] +atlas = ExtResource("1_i3pv8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrldd"] +atlas = ExtResource("1_i3pv8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohmhx"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvkdp"] +atlas = ExtResource("1_i3pv8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njc7o"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3m2a"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sqcf"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1d5y"] +atlas = ExtResource("1_i3pv8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53yje"] +atlas = ExtResource("1_i3pv8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llkxv"] +atlas = ExtResource("1_i3pv8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iolb3"] +atlas = ExtResource("1_i3pv8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d27ab"] +atlas = ExtResource("1_i3pv8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45b28"] +atlas = ExtResource("1_i3pv8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vsvj"] +atlas = ExtResource("1_i3pv8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiwme"] +atlas = ExtResource("1_i3pv8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd3xo"] +atlas = ExtResource("1_i3pv8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iya77"] +atlas = ExtResource("1_i3pv8") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvw0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bpp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f7y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrldd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohmhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvkdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njc7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3m2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sqcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1d5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53yje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llkxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iolb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d27ab") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_45b28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vsvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiwme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd3xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iya77") +}], +"loop": true, +"name": &"spiralcounter", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiraltechnique.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiraltechnique.tres new file mode 100644 index 0000000..39d8095 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_spiraltechnique.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://ctmn8gwsxi8ap"] + +[ext_resource type="Texture2D" uid="uid://df5xg5f3bxgum" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png" id="1_0xw0v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jri3c"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25d7t"] +atlas = ExtResource("1_0xw0v") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obiyg"] +atlas = ExtResource("1_0xw0v") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slbya"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ep6"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn8f6"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2rjv"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4lkm"] +atlas = ExtResource("1_0xw0v") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8f6"] +atlas = ExtResource("1_0xw0v") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5jrg"] +atlas = ExtResource("1_0xw0v") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iupwn"] +atlas = ExtResource("1_0xw0v") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxahf"] +atlas = ExtResource("1_0xw0v") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jete3"] +atlas = ExtResource("1_0xw0v") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptoyf"] +atlas = ExtResource("1_0xw0v") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en2hi"] +atlas = ExtResource("1_0xw0v") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krq5e"] +atlas = ExtResource("1_0xw0v") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v2ke"] +atlas = ExtResource("1_0xw0v") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo4ff"] +atlas = ExtResource("1_0xw0v") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyww0"] +atlas = ExtResource("1_0xw0v") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pees5"] +atlas = ExtResource("1_0xw0v") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pice4"] +atlas = ExtResource("1_0xw0v") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yv2a"] +atlas = ExtResource("1_0xw0v") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jri3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25d7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obiyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slbya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ep6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn8f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2rjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4lkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5jrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iupwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxahf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jete3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptoyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en2hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krq5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v2ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo4ff") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyww0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pees5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pice4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yv2a") +}], +"loop": true, +"name": &"spiraltechnique", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_twin_strike.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_twin_strike.tres new file mode 100644 index 0000000..fb8b138 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_twin_strike.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bwb04d6kwhu3h"] + +[ext_resource type="Texture2D" uid="uid://bu8v4i23qkr2f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png" id="1_yaq0o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_odls2"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waf33"] +atlas = ExtResource("1_yaq0o") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtggx"] +atlas = ExtResource("1_yaq0o") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh10w"] +atlas = ExtResource("1_yaq0o") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8jjs"] +atlas = ExtResource("1_yaq0o") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yomj"] +atlas = ExtResource("1_yaq0o") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpn8l"] +atlas = ExtResource("1_yaq0o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dftna"] +atlas = ExtResource("1_yaq0o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfoe1"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag5r8"] +atlas = ExtResource("1_yaq0o") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkgsj"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo0bf"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix0kb"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u42wr"] +atlas = ExtResource("1_yaq0o") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7m00"] +atlas = ExtResource("1_yaq0o") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_681ak"] +atlas = ExtResource("1_yaq0o") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pgyw"] +atlas = ExtResource("1_yaq0o") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40a6p"] +atlas = ExtResource("1_yaq0o") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imxb2"] +atlas = ExtResource("1_yaq0o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skanw"] +atlas = ExtResource("1_yaq0o") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ti4w"] +atlas = ExtResource("1_yaq0o") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_odls2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waf33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh10w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8jjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yomj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpn8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dftna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfoe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag5r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkgsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo0bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix0kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u42wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7m00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_681ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pgyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40a6p") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_imxb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skanw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ti4w") +}], +"loop": true, +"name": &"strike", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ursamonsoon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ursamonsoon.tres new file mode 100644 index 0000000..96b9cc7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f2_ursamonsoon.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://c52s88aylx4kl"] + +[ext_resource type="Texture2D" uid="uid://dv3e6ll4g0ro4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png" id="1_skcr2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g33oe"] +atlas = ExtResource("1_skcr2") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8s11"] +atlas = ExtResource("1_skcr2") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25lhk"] +atlas = ExtResource("1_skcr2") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dllg5"] +atlas = ExtResource("1_skcr2") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrw2k"] +atlas = ExtResource("1_skcr2") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sqk6"] +atlas = ExtResource("1_skcr2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfa6t"] +atlas = ExtResource("1_skcr2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7ojh"] +atlas = ExtResource("1_skcr2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5cun"] +atlas = ExtResource("1_skcr2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukd5l"] +atlas = ExtResource("1_skcr2") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk6sb"] +atlas = ExtResource("1_skcr2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ypj"] +atlas = ExtResource("1_skcr2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojgx2"] +atlas = ExtResource("1_skcr2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b251h"] +atlas = ExtResource("1_skcr2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n43dc"] +atlas = ExtResource("1_skcr2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m10il"] +atlas = ExtResource("1_skcr2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1trf"] +atlas = ExtResource("1_skcr2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1o5q"] +atlas = ExtResource("1_skcr2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27vgu"] +atlas = ExtResource("1_skcr2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjttv"] +atlas = ExtResource("1_skcr2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qet72"] +atlas = ExtResource("1_skcr2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2bgs"] +atlas = ExtResource("1_skcr2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_703a2"] +atlas = ExtResource("1_skcr2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp51u"] +atlas = ExtResource("1_skcr2") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul0ck"] +atlas = ExtResource("1_skcr2") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6wyc"] +atlas = ExtResource("1_skcr2") +region = Rect2(196, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g33oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8s11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25lhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dllg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrw2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sqk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfa6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7ojh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5cun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukd5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk6sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ypj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojgx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b251h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n43dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m10il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1trf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1o5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27vgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjttv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qet72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2bgs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_703a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp51u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul0ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6wyc") +}], +"loop": true, +"name": &"ursamonsoon", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astraflood.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astraflood.tres new file mode 100644 index 0000000..593cd1c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astraflood.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://cems7nnywodmb"] + +[ext_resource type="Texture2D" uid="uid://y2e8iucnlpcn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png" id="1_xf13j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vk2q"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x7un"] +atlas = ExtResource("1_xf13j") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vex67"] +atlas = ExtResource("1_xf13j") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tk8w"] +atlas = ExtResource("1_xf13j") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cdlx"] +atlas = ExtResource("1_xf13j") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpgi4"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py0vb"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wwv7"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsemo"] +atlas = ExtResource("1_xf13j") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkmrx"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wlgv"] +atlas = ExtResource("1_xf13j") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jg60"] +atlas = ExtResource("1_xf13j") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg1j5"] +atlas = ExtResource("1_xf13j") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gddp"] +atlas = ExtResource("1_xf13j") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gknu2"] +atlas = ExtResource("1_xf13j") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy4xw"] +atlas = ExtResource("1_xf13j") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fcao"] +atlas = ExtResource("1_xf13j") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehtwr"] +atlas = ExtResource("1_xf13j") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28nd0"] +atlas = ExtResource("1_xf13j") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7vsq"] +atlas = ExtResource("1_xf13j") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey0h2"] +atlas = ExtResource("1_xf13j") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3nbk"] +atlas = ExtResource("1_xf13j") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s6mh"] +atlas = ExtResource("1_xf13j") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvpin"] +atlas = ExtResource("1_xf13j") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vk2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x7un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vex67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tk8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cdlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpgi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py0vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wwv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsemo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkmrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wlgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jg60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg1j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gddp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gknu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy4xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fcao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehtwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28nd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7vsq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey0h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3nbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s6mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvpin") +}], +"loop": true, +"name": &"astraflood", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astralphasing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astralphasing.tres new file mode 100644 index 0000000..701d3e8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_astralphasing.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://0e7142u3fj82"] + +[ext_resource type="Texture2D" uid="uid://cbipolgkyyol1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png" id="1_6x0b8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ettp"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt8xo"] +atlas = ExtResource("1_6x0b8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2ik6"] +atlas = ExtResource("1_6x0b8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ut8"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fmak"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xl2q"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygqkc"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi5j8"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deuwl"] +atlas = ExtResource("1_6x0b8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16ujo"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i50jq"] +atlas = ExtResource("1_6x0b8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2blq"] +atlas = ExtResource("1_6x0b8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb27v"] +atlas = ExtResource("1_6x0b8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms3b8"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_322bf"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2igrv"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d66w"] +atlas = ExtResource("1_6x0b8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urr7r"] +atlas = ExtResource("1_6x0b8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5t24"] +atlas = ExtResource("1_6x0b8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do4dl"] +atlas = ExtResource("1_6x0b8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3mhp"] +atlas = ExtResource("1_6x0b8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xy0w"] +atlas = ExtResource("1_6x0b8") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ettp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt8xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2ik6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ut8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fmak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xl2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygqkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi5j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deuwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16ujo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i50jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2blq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb27v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms3b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_322bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2igrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d66w") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_urr7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5t24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do4dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3mhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xy0w") +}], +"loop": true, +"name": &"astralphasing", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_aurorastear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_aurorastear.tres new file mode 100644 index 0000000..db7e84e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_aurorastear.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://x6lylpi1nnhg"] + +[ext_resource type="Texture2D" uid="uid://c1ngf3a5h8c0b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png" id="1_ax6qf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r53rd"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyyxy"] +atlas = ExtResource("1_ax6qf") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4ok1"] +atlas = ExtResource("1_ax6qf") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhd65"] +atlas = ExtResource("1_ax6qf") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a88fx"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byahi"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeko1"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0gjn"] +atlas = ExtResource("1_ax6qf") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvish"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxup6"] +atlas = ExtResource("1_ax6qf") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06pql"] +atlas = ExtResource("1_ax6qf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj2ar"] +atlas = ExtResource("1_ax6qf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6206"] +atlas = ExtResource("1_ax6qf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05aoy"] +atlas = ExtResource("1_ax6qf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdsmu"] +atlas = ExtResource("1_ax6qf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyyli"] +atlas = ExtResource("1_ax6qf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14qb2"] +atlas = ExtResource("1_ax6qf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8x7k"] +atlas = ExtResource("1_ax6qf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd5bg"] +atlas = ExtResource("1_ax6qf") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6p4k"] +atlas = ExtResource("1_ax6qf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2c0x"] +atlas = ExtResource("1_ax6qf") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4xjr"] +atlas = ExtResource("1_ax6qf") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x054e"] +atlas = ExtResource("1_ax6qf") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl7ty"] +atlas = ExtResource("1_ax6qf") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r53rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyyxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4ok1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhd65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a88fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byahi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeko1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0gjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvish") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxup6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06pql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj2ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6206") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05aoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdsmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyyli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14qb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8x7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd5bg") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6p4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2c0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4xjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x054e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl7ty") +}], +"loop": true, +"name": &"aurorastear", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_autarchsgift.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_autarchsgift.tres new file mode 100644 index 0000000..7ddf47e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_autarchsgift.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://dxap82hd17uxl"] + +[ext_resource type="Texture2D" uid="uid://bw21hud7mxur5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png" id="1_0kcnk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgnwc"] +atlas = ExtResource("1_0kcnk") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mv7l"] +atlas = ExtResource("1_0kcnk") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwt4k"] +atlas = ExtResource("1_0kcnk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5egl"] +atlas = ExtResource("1_0kcnk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf04p"] +atlas = ExtResource("1_0kcnk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhtky"] +atlas = ExtResource("1_0kcnk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d75c7"] +atlas = ExtResource("1_0kcnk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb85k"] +atlas = ExtResource("1_0kcnk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3q6t"] +atlas = ExtResource("1_0kcnk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipx13"] +atlas = ExtResource("1_0kcnk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwha5"] +atlas = ExtResource("1_0kcnk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrkk7"] +atlas = ExtResource("1_0kcnk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn3l6"] +atlas = ExtResource("1_0kcnk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgwjy"] +atlas = ExtResource("1_0kcnk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yms85"] +atlas = ExtResource("1_0kcnk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aufb"] +atlas = ExtResource("1_0kcnk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7cvr"] +atlas = ExtResource("1_0kcnk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaqyv"] +atlas = ExtResource("1_0kcnk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reqrx"] +atlas = ExtResource("1_0kcnk") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuqtt"] +atlas = ExtResource("1_0kcnk") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgnwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mv7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwt4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5egl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf04p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhtky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d75c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb85k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3q6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipx13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwha5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrkk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn3l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgwjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yms85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aufb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7cvr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaqyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reqrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuqtt") +}], +"loop": true, +"name": &"autarchsgift", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_azuresummoning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_azuresummoning.tres new file mode 100644 index 0000000..06a2de0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_azuresummoning.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://c5d0pu0hl68nw"] + +[ext_resource type="Texture2D" uid="uid://c102j3msfx8t2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png" id="1_eiwt5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5soj2"] +atlas = ExtResource("1_eiwt5") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4cd1"] +atlas = ExtResource("1_eiwt5") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k41kd"] +atlas = ExtResource("1_eiwt5") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vwm8"] +atlas = ExtResource("1_eiwt5") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bgxa"] +atlas = ExtResource("1_eiwt5") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ef72"] +atlas = ExtResource("1_eiwt5") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb1mx"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2pgl"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt2av"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv1u4"] +atlas = ExtResource("1_eiwt5") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyd48"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llhl2"] +atlas = ExtResource("1_eiwt5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwnxa"] +atlas = ExtResource("1_eiwt5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53hro"] +atlas = ExtResource("1_eiwt5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajm4m"] +atlas = ExtResource("1_eiwt5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk5nf"] +atlas = ExtResource("1_eiwt5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5taux"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqk7h"] +atlas = ExtResource("1_eiwt5") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqygv"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi661"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tal7"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ygl7"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq1a8"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs46f"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wagg5"] +atlas = ExtResource("1_eiwt5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjyab"] +atlas = ExtResource("1_eiwt5") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhmd7"] +atlas = ExtResource("1_eiwt5") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sr8x"] +atlas = ExtResource("1_eiwt5") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5soj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4cd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k41kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vwm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bgxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ef72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb1mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2pgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt2av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv1u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyd48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llhl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwnxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53hro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajm4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk5nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5taux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqk7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqygv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi661") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tal7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ygl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq1a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs46f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wagg5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjyab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhmd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sr8x") +}], +"loop": true, +"name": &"azuresummoning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_blindscorch.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_blindscorch.tres new file mode 100644 index 0000000..b4c2727 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_blindscorch.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://dmyuu6lpa5vh"] + +[ext_resource type="Texture2D" uid="uid://dl8nv7ltrqxly" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png" id="1_ek738"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_827tc"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axylk"] +atlas = ExtResource("1_ek738") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa5qn"] +atlas = ExtResource("1_ek738") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nymyi"] +atlas = ExtResource("1_ek738") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_832ua"] +atlas = ExtResource("1_ek738") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84k8d"] +atlas = ExtResource("1_ek738") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv2dh"] +atlas = ExtResource("1_ek738") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q86k4"] +atlas = ExtResource("1_ek738") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ird8h"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_888ns"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hppos"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30ijl"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tbja"] +atlas = ExtResource("1_ek738") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0f5o"] +atlas = ExtResource("1_ek738") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhjmw"] +atlas = ExtResource("1_ek738") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0juar"] +atlas = ExtResource("1_ek738") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o0sl"] +atlas = ExtResource("1_ek738") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epony"] +atlas = ExtResource("1_ek738") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tihr2"] +atlas = ExtResource("1_ek738") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5nxy"] +atlas = ExtResource("1_ek738") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xibtk"] +atlas = ExtResource("1_ek738") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_827tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axylk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa5qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nymyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_832ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84k8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv2dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q86k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ird8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_888ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hppos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ijl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tbja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0f5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhjmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0juar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o0sl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_epony") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tihr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5nxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xibtk") +}], +"loop": true, +"name": &"blindscorch", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_bloodofair.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_bloodofair.tres new file mode 100644 index 0000000..fe6e96b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_bloodofair.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://j2s1p4gs3bxf"] + +[ext_resource type="Texture2D" uid="uid://bqiyj8fd1cisv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png" id="1_5y61a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1wp6"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbnm0"] +atlas = ExtResource("1_5y61a") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmfrl"] +atlas = ExtResource("1_5y61a") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b774e"] +atlas = ExtResource("1_5y61a") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugc7g"] +atlas = ExtResource("1_5y61a") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_metfb"] +atlas = ExtResource("1_5y61a") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ls2k"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmno3"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oks5k"] +atlas = ExtResource("1_5y61a") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agpxj"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skrh7"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne1cm"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd2sc"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy5ew"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g5qw"] +atlas = ExtResource("1_5y61a") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1pub"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vyb8"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n7wy"] +atlas = ExtResource("1_5y61a") +region = Rect2(0, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1wp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbnm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmfrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b774e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugc7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_metfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ls2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmno3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oks5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agpxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skrh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne1cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd2sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy5ew") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g5qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1pub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vyb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n7wy") +}], +"loop": true, +"name": &"bloodofair", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_boneswarm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_boneswarm.tres new file mode 100644 index 0000000..b1de669 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_boneswarm.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://r5i2772mou0s"] + +[ext_resource type="Texture2D" uid="uid://dlqcy8k68p0h8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png" id="1_03ogt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5eqq"] +atlas = ExtResource("1_03ogt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q152k"] +atlas = ExtResource("1_03ogt") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ro76"] +atlas = ExtResource("1_03ogt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkd3c"] +atlas = ExtResource("1_03ogt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtk77"] +atlas = ExtResource("1_03ogt") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckhla"] +atlas = ExtResource("1_03ogt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvrch"] +atlas = ExtResource("1_03ogt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es5nw"] +atlas = ExtResource("1_03ogt") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h0c0"] +atlas = ExtResource("1_03ogt") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltx84"] +atlas = ExtResource("1_03ogt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4oyk"] +atlas = ExtResource("1_03ogt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8bay"] +atlas = ExtResource("1_03ogt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of036"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbrjr"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vara1"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihx5e"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkbke"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wq8q"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3476j"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsep5"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hklcr"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pinw8"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8unh"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qnxe"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03lqr"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m20ya"] +atlas = ExtResource("1_03ogt") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5eqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q152k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ro76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkd3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtk77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckhla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvrch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es5nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h0c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltx84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4oyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8bay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of036") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbrjr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vara1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihx5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkbke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wq8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3476j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsep5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hklcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pinw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8unh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qnxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03lqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m20ya") +}], +"loop": true, +"name": &"boneswarm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_circleofdessication.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_circleofdessication.tres new file mode 100644 index 0000000..78331fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_circleofdessication.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://dtinfbipltxfy"] + +[ext_resource type="Texture2D" uid="uid://drxj5706wtatq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png" id="1_8hfr6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_23bas"] +atlas = ExtResource("1_8hfr6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tufi2"] +atlas = ExtResource("1_8hfr6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnpcs"] +atlas = ExtResource("1_8hfr6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kebo1"] +atlas = ExtResource("1_8hfr6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqxkf"] +atlas = ExtResource("1_8hfr6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8kmv"] +atlas = ExtResource("1_8hfr6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3dye"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysiku"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws3g1"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgnrl"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm4ew"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mp6u"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beoka"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iutt"] +atlas = ExtResource("1_8hfr6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpyfn"] +atlas = ExtResource("1_8hfr6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwgfn"] +atlas = ExtResource("1_8hfr6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdb2x"] +atlas = ExtResource("1_8hfr6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buyp7"] +atlas = ExtResource("1_8hfr6") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23bas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tufi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnpcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kebo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqxkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8kmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3dye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysiku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws3g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgnrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm4ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mp6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beoka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iutt") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpyfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwgfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdb2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buyp7") +}], +"loop": true, +"name": &"circleofdessication", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_communalgifts.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_communalgifts.tres new file mode 100644 index 0000000..3b4ff9f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_communalgifts.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://d3iiv7jrd5dg7"] + +[ext_resource type="Texture2D" uid="uid://bovu8otpvtfa4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png" id="1_deon7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaovy"] +atlas = ExtResource("1_deon7") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o7pp"] +atlas = ExtResource("1_deon7") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b57yq"] +atlas = ExtResource("1_deon7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg8u4"] +atlas = ExtResource("1_deon7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xvpv"] +atlas = ExtResource("1_deon7") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx2ae"] +atlas = ExtResource("1_deon7") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hxey"] +atlas = ExtResource("1_deon7") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w14ej"] +atlas = ExtResource("1_deon7") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uep75"] +atlas = ExtResource("1_deon7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pry82"] +atlas = ExtResource("1_deon7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g130w"] +atlas = ExtResource("1_deon7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jbxh"] +atlas = ExtResource("1_deon7") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwvsx"] +atlas = ExtResource("1_deon7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abcdw"] +atlas = ExtResource("1_deon7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02iee"] +atlas = ExtResource("1_deon7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07xf2"] +atlas = ExtResource("1_deon7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3goc"] +atlas = ExtResource("1_deon7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11w08"] +atlas = ExtResource("1_deon7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1ejv"] +atlas = ExtResource("1_deon7") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd2sb"] +atlas = ExtResource("1_deon7") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdld5"] +atlas = ExtResource("1_deon7") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaovy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o7pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b57yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg8u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xvpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx2ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hxey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w14ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uep75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pry82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g130w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jbxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwvsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abcdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02iee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07xf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3goc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11w08") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1ejv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd2sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdld5") +}], +"loop": true, +"name": &"communalgifts", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_corpsecombustion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_corpsecombustion.tres new file mode 100644 index 0000000..26fb356 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_corpsecombustion.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://c1qetrf7lh6eq"] + +[ext_resource type="Texture2D" uid="uid://c1ggevtg0nfqy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png" id="1_aym1m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovpas"] +atlas = ExtResource("1_aym1m") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imxgw"] +atlas = ExtResource("1_aym1m") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbhkp"] +atlas = ExtResource("1_aym1m") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tsb4"] +atlas = ExtResource("1_aym1m") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6qoy"] +atlas = ExtResource("1_aym1m") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm4t0"] +atlas = ExtResource("1_aym1m") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tduyx"] +atlas = ExtResource("1_aym1m") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aalqy"] +atlas = ExtResource("1_aym1m") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j565u"] +atlas = ExtResource("1_aym1m") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x47ko"] +atlas = ExtResource("1_aym1m") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fulbq"] +atlas = ExtResource("1_aym1m") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7up3"] +atlas = ExtResource("1_aym1m") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7762"] +atlas = ExtResource("1_aym1m") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slxrm"] +atlas = ExtResource("1_aym1m") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wb7t"] +atlas = ExtResource("1_aym1m") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a26ug"] +atlas = ExtResource("1_aym1m") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yj0m"] +atlas = ExtResource("1_aym1m") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib8an"] +atlas = ExtResource("1_aym1m") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1epk6"] +atlas = ExtResource("1_aym1m") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvki3"] +atlas = ExtResource("1_aym1m") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_675s3"] +atlas = ExtResource("1_aym1m") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2whl"] +atlas = ExtResource("1_aym1m") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1tdq"] +atlas = ExtResource("1_aym1m") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovpas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imxgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbhkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tsb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6qoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm4t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tduyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aalqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j565u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x47ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fulbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7up3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7762") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slxrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wb7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a26ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yj0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib8an") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1epk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvki3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_675s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2whl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1tdq") +}], +"loop": true, +"name": &"corpsecombustion", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_cosmicflesh.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_cosmicflesh.tres new file mode 100644 index 0000000..319064d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_cosmicflesh.tres @@ -0,0 +1,247 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://3ecnr6l1a06l"] + +[ext_resource type="Texture2D" uid="uid://b1apgkkpgf5j4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png" id="1_txkvq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6qkq"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gga8"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67d3v"] +atlas = ExtResource("1_txkvq") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps0nv"] +atlas = ExtResource("1_txkvq") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_583b6"] +atlas = ExtResource("1_txkvq") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qufxb"] +atlas = ExtResource("1_txkvq") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eur4"] +atlas = ExtResource("1_txkvq") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4m16"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gafcl"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkg0u"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0k54"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r844s"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm6h1"] +atlas = ExtResource("1_txkvq") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fexj"] +atlas = ExtResource("1_txkvq") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va6fc"] +atlas = ExtResource("1_txkvq") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb1ls"] +atlas = ExtResource("1_txkvq") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbquu"] +atlas = ExtResource("1_txkvq") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iofo"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnq2y"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8guxo"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5k7v"] +atlas = ExtResource("1_txkvq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjqq5"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34f5q"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx6e7"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y0s1"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl376"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqcjp"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a72l"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rjrx"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kj5o"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yxaj"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed21a"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e6tn"] +atlas = ExtResource("1_txkvq") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6qkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gga8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67d3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps0nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_583b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qufxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4m16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gafcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkg0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0k54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r844s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm6h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fexj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va6fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb1ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbquu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iofo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnq2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8guxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5k7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjqq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34f5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx6e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y0s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl376") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqcjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a72l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rjrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kj5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yxaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed21a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e6tn") +}], +"loop": true, +"name": &"cosmicflesh", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_divinespark.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_divinespark.tres new file mode 100644 index 0000000..6fd10de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_divinespark.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://bqca1r1d25uf1"] + +[ext_resource type="Texture2D" uid="uid://dsoe61j5cxqof" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png" id="1_njkvy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbth7"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b45xs"] +atlas = ExtResource("1_njkvy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88ixr"] +atlas = ExtResource("1_njkvy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16m47"] +atlas = ExtResource("1_njkvy") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0yhe"] +atlas = ExtResource("1_njkvy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wr43"] +atlas = ExtResource("1_njkvy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1rc0"] +atlas = ExtResource("1_njkvy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwj1g"] +atlas = ExtResource("1_njkvy") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvbmn"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsuj5"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh75t"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy5c7"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufdfi"] +atlas = ExtResource("1_njkvy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xirnn"] +atlas = ExtResource("1_njkvy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fqjw"] +atlas = ExtResource("1_njkvy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8hnh"] +atlas = ExtResource("1_njkvy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q33xr"] +atlas = ExtResource("1_njkvy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjmdt"] +atlas = ExtResource("1_njkvy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nuwq"] +atlas = ExtResource("1_njkvy") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuvpx"] +atlas = ExtResource("1_njkvy") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbth7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b45xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88ixr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16m47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0yhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wr43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1rc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwj1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvbmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsuj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh75t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy5c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufdfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xirnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fqjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8hnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q33xr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjmdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nuwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuvpx") +}], +"loop": true, +"name": &"divinespark", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_droplift.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_droplift.tres new file mode 100644 index 0000000..997070a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_droplift.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://dvyrc6dnekd5q"] + +[ext_resource type="Texture2D" uid="uid://bv3bh4o2hunv5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png" id="1_ksbnn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb4tu"] +atlas = ExtResource("1_ksbnn") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1dxd"] +atlas = ExtResource("1_ksbnn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atbqp"] +atlas = ExtResource("1_ksbnn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45qmx"] +atlas = ExtResource("1_ksbnn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkkxo"] +atlas = ExtResource("1_ksbnn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc37g"] +atlas = ExtResource("1_ksbnn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07s82"] +atlas = ExtResource("1_ksbnn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27r67"] +atlas = ExtResource("1_ksbnn") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b58qi"] +atlas = ExtResource("1_ksbnn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flou1"] +atlas = ExtResource("1_ksbnn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu0jp"] +atlas = ExtResource("1_ksbnn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeymd"] +atlas = ExtResource("1_ksbnn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hnhe"] +atlas = ExtResource("1_ksbnn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk5mc"] +atlas = ExtResource("1_ksbnn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4o54"] +atlas = ExtResource("1_ksbnn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s674c"] +atlas = ExtResource("1_ksbnn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06cpi"] +atlas = ExtResource("1_ksbnn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bxcj"] +atlas = ExtResource("1_ksbnn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2cmk"] +atlas = ExtResource("1_ksbnn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbfb6"] +atlas = ExtResource("1_ksbnn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uprc"] +atlas = ExtResource("1_ksbnn") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tqw2"] +atlas = ExtResource("1_ksbnn") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lwis"] +atlas = ExtResource("1_ksbnn") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yls4k"] +atlas = ExtResource("1_ksbnn") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb4tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1dxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atbqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45qmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkkxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc37g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07s82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27r67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b58qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flou1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu0jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeymd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hnhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk5mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4o54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s674c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06cpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bxcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2cmk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbfb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uprc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tqw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lwis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yls4k") +}], +"loop": true, +"name": &"droplift", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_enslave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_enslave.tres new file mode 100644 index 0000000..931f0e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_enslave.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://u0op0f44t7r2"] + +[ext_resource type="Texture2D" uid="uid://b45cnt1rfew3c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png" id="1_cch7r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oher5"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3a2t"] +atlas = ExtResource("1_cch7r") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evhsq"] +atlas = ExtResource("1_cch7r") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgns4"] +atlas = ExtResource("1_cch7r") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7xf7"] +atlas = ExtResource("1_cch7r") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e2dx"] +atlas = ExtResource("1_cch7r") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qvyp"] +atlas = ExtResource("1_cch7r") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp66q"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_421w3"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf6gv"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj0gh"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a8pn"] +atlas = ExtResource("1_cch7r") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11tk4"] +atlas = ExtResource("1_cch7r") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsobc"] +atlas = ExtResource("1_cch7r") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye10x"] +atlas = ExtResource("1_cch7r") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvq17"] +atlas = ExtResource("1_cch7r") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uopff"] +atlas = ExtResource("1_cch7r") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaw0h"] +atlas = ExtResource("1_cch7r") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5nmg"] +atlas = ExtResource("1_cch7r") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb7vw"] +atlas = ExtResource("1_cch7r") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oher5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3a2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evhsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgns4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7xf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e2dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qvyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp66q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_421w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj0gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a8pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11tk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsobc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye10x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvq17") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uopff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaw0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5nmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb7vw") +}], +"loop": true, +"name": &"enslave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_entropicdecay.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_entropicdecay.tres new file mode 100644 index 0000000..ccf5a42 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_entropicdecay.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://bt1sxignl3aft"] + +[ext_resource type="Texture2D" uid="uid://djjxv4oki08ut" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png" id="1_6u31l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qbys"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om8ed"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dpci"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5b6j"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v6t5"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dyb1"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly1fp"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjlts"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1nit"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw2o2"] +atlas = ExtResource("1_6u31l") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jkkg"] +atlas = ExtResource("1_6u31l") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blfkk"] +atlas = ExtResource("1_6u31l") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grhj8"] +atlas = ExtResource("1_6u31l") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfb13"] +atlas = ExtResource("1_6u31l") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1vnr"] +atlas = ExtResource("1_6u31l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dngkn"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tqi2"] +atlas = ExtResource("1_6u31l") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qbys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om8ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dpci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5b6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v6t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dyb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly1fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjlts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1nit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw2o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jkkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blfkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grhj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfb13") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1vnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dngkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tqi2") +}], +"loop": true, +"name": &"entropicdecay", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_fountainofyouth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_fountainofyouth.tres new file mode 100644 index 0000000..41238dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_fountainofyouth.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://bqoi4y8du4hkl"] + +[ext_resource type="Texture2D" uid="uid://m8epny8qc5pn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png" id="1_6ql17"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhox0"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnjih"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkats"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ogdm"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhsil"] +atlas = ExtResource("1_6ql17") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uisnf"] +atlas = ExtResource("1_6ql17") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_355pu"] +atlas = ExtResource("1_6ql17") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6nwm"] +atlas = ExtResource("1_6ql17") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgtrd"] +atlas = ExtResource("1_6ql17") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs4kd"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prs7f"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynuuj"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aroh"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mud3e"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siscp"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy484"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymbws"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc4tw"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq6u5"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qhx0"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npjtn"] +atlas = ExtResource("1_6ql17") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmfby"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eknri"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6ii8"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbvfm"] +atlas = ExtResource("1_6ql17") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhox0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnjih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkats") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ogdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhsil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uisnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_355pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6nwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgtrd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs4kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prs7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynuuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aroh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mud3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siscp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy484") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymbws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc4tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq6u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qhx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npjtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmfby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eknri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6ii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbvfm") +}], +"loop": true, +"name": &"fountainofyouth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_glimpse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_glimpse.tres new file mode 100644 index 0000000..ca3ad4b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_glimpse.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bcn0bxp1rrqiu"] + +[ext_resource type="Texture2D" uid="uid://c4fhjjetgkmc0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png" id="1_k7fsq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdc3j"] +atlas = ExtResource("1_k7fsq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj8jp"] +atlas = ExtResource("1_k7fsq") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pnd0"] +atlas = ExtResource("1_k7fsq") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fudxn"] +atlas = ExtResource("1_k7fsq") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijjd1"] +atlas = ExtResource("1_k7fsq") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5snth"] +atlas = ExtResource("1_k7fsq") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4nq4"] +atlas = ExtResource("1_k7fsq") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvc7f"] +atlas = ExtResource("1_k7fsq") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndu8o"] +atlas = ExtResource("1_k7fsq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_655t8"] +atlas = ExtResource("1_k7fsq") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnkwl"] +atlas = ExtResource("1_k7fsq") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m55o2"] +atlas = ExtResource("1_k7fsq") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6ay2"] +atlas = ExtResource("1_k7fsq") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q2e6"] +atlas = ExtResource("1_k7fsq") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqdth"] +atlas = ExtResource("1_k7fsq") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4457"] +atlas = ExtResource("1_k7fsq") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x8qt"] +atlas = ExtResource("1_k7fsq") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh6ni"] +atlas = ExtResource("1_k7fsq") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuxyi"] +atlas = ExtResource("1_k7fsq") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l27x5"] +atlas = ExtResource("1_k7fsq") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52rxp"] +atlas = ExtResource("1_k7fsq") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdc3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj8jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pnd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fudxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijjd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5snth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4nq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvc7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndu8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_655t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnkwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m55o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6ay2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q2e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqdth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4457") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x8qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh6ni") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuxyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l27x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52rxp") +}], +"loop": true, +"name": &"glimpse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_godmulligan.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_godmulligan.tres new file mode 100644 index 0000000..4559b7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_godmulligan.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://bpljylcuj8gl7"] + +[ext_resource type="Texture2D" uid="uid://ccsm7y6qx15b3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png" id="1_mlifr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn7o6"] +atlas = ExtResource("1_mlifr") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yybvo"] +atlas = ExtResource("1_mlifr") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38bcm"] +atlas = ExtResource("1_mlifr") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrs6y"] +atlas = ExtResource("1_mlifr") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrdoi"] +atlas = ExtResource("1_mlifr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rftcl"] +atlas = ExtResource("1_mlifr") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mkpu"] +atlas = ExtResource("1_mlifr") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ie7b"] +atlas = ExtResource("1_mlifr") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq7t8"] +atlas = ExtResource("1_mlifr") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcx3o"] +atlas = ExtResource("1_mlifr") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w33f6"] +atlas = ExtResource("1_mlifr") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_646if"] +atlas = ExtResource("1_mlifr") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whlc8"] +atlas = ExtResource("1_mlifr") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ppu"] +atlas = ExtResource("1_mlifr") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueogy"] +atlas = ExtResource("1_mlifr") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn7o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yybvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38bcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrs6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrdoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rftcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mkpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ie7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq7t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcx3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w33f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_646if") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_whlc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ppu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueogy") +}], +"loop": true, +"name": &"godmulligan", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_gonewithwind.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_gonewithwind.tres new file mode 100644 index 0000000..d9c1067 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_gonewithwind.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://0n7sso0f7cxv"] + +[ext_resource type="Texture2D" uid="uid://unniffr3h4cv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png" id="1_ttwmx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2d70"] +atlas = ExtResource("1_ttwmx") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sinqk"] +atlas = ExtResource("1_ttwmx") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcaex"] +atlas = ExtResource("1_ttwmx") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wypn"] +atlas = ExtResource("1_ttwmx") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f05r3"] +atlas = ExtResource("1_ttwmx") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s57ni"] +atlas = ExtResource("1_ttwmx") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i81qy"] +atlas = ExtResource("1_ttwmx") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpwj2"] +atlas = ExtResource("1_ttwmx") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tlux"] +atlas = ExtResource("1_ttwmx") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrfur"] +atlas = ExtResource("1_ttwmx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htjdl"] +atlas = ExtResource("1_ttwmx") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rk4n"] +atlas = ExtResource("1_ttwmx") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pfwh"] +atlas = ExtResource("1_ttwmx") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vh1l"] +atlas = ExtResource("1_ttwmx") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oes3"] +atlas = ExtResource("1_ttwmx") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k4jl"] +atlas = ExtResource("1_ttwmx") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqygd"] +atlas = ExtResource("1_ttwmx") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0qyl"] +atlas = ExtResource("1_ttwmx") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5afvh"] +atlas = ExtResource("1_ttwmx") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3igs"] +atlas = ExtResource("1_ttwmx") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_berl0"] +atlas = ExtResource("1_ttwmx") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcni4"] +atlas = ExtResource("1_ttwmx") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp5o5"] +atlas = ExtResource("1_ttwmx") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iosoo"] +atlas = ExtResource("1_ttwmx") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs76d"] +atlas = ExtResource("1_ttwmx") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlo3p"] +atlas = ExtResource("1_ttwmx") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0swq2"] +atlas = ExtResource("1_ttwmx") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qwq1"] +atlas = ExtResource("1_ttwmx") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrsch"] +atlas = ExtResource("1_ttwmx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa6r8"] +atlas = ExtResource("1_ttwmx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn888"] +atlas = ExtResource("1_ttwmx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1g0g"] +atlas = ExtResource("1_ttwmx") +region = Rect2(196, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2d70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sinqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcaex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wypn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f05r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s57ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i81qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpwj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tlux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrfur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htjdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rk4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pfwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vh1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oes3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k4jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqygd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0qyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5afvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3igs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_berl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcni4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp5o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iosoo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs76d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlo3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0swq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qwq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrsch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa6r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn888") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1g0g") +}], +"loop": true, +"name": &"gonewithwind", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grabartifact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grabartifact.tres new file mode 100644 index 0000000..77fcbe6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grabartifact.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://cnil1yhx7oeq"] + +[ext_resource type="Texture2D" uid="uid://cpcm1d5o3ldyn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png" id="1_rec1n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h65ub"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn5q1"] +atlas = ExtResource("1_rec1n") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks7yv"] +atlas = ExtResource("1_rec1n") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfaxd"] +atlas = ExtResource("1_rec1n") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0awyo"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7ny6"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwmlp"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unjem"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm4gl"] +atlas = ExtResource("1_rec1n") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh2sg"] +atlas = ExtResource("1_rec1n") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2njs"] +atlas = ExtResource("1_rec1n") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_levpk"] +atlas = ExtResource("1_rec1n") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0pw4"] +atlas = ExtResource("1_rec1n") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo10b"] +atlas = ExtResource("1_rec1n") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nplc7"] +atlas = ExtResource("1_rec1n") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymahn"] +atlas = ExtResource("1_rec1n") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x51er"] +atlas = ExtResource("1_rec1n") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wg4e"] +atlas = ExtResource("1_rec1n") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubjfx"] +atlas = ExtResource("1_rec1n") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2qrg"] +atlas = ExtResource("1_rec1n") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boacv"] +atlas = ExtResource("1_rec1n") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwi6n"] +atlas = ExtResource("1_rec1n") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6p8e"] +atlas = ExtResource("1_rec1n") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1eka"] +atlas = ExtResource("1_rec1n") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb5nc"] +atlas = ExtResource("1_rec1n") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hu1w"] +atlas = ExtResource("1_rec1n") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drkbn"] +atlas = ExtResource("1_rec1n") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjmx8"] +atlas = ExtResource("1_rec1n") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0hyr"] +atlas = ExtResource("1_rec1n") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t64g5"] +atlas = ExtResource("1_rec1n") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqno5"] +atlas = ExtResource("1_rec1n") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s24nb"] +atlas = ExtResource("1_rec1n") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h65ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn5q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks7yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfaxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0awyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7ny6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwmlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unjem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm4gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh2sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2njs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_levpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0pw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo10b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nplc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x51er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wg4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubjfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2qrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boacv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwi6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6p8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1eka") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb5nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hu1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drkbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjmx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0hyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t64g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqno5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s24nb") +}], +"loop": true, +"name": &"grabartifact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grandmirage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grandmirage.tres new file mode 100644 index 0000000..50e950c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_grandmirage.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bvbcg1vuioj2e"] + +[ext_resource type="Texture2D" uid="uid://c5aslgkadr7xv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png" id="1_0pvm0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw8sq"] +atlas = ExtResource("1_0pvm0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2q6m"] +atlas = ExtResource("1_0pvm0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4skgi"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccssb"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na6sm"] +atlas = ExtResource("1_0pvm0") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cj6b"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2xm8"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py1d4"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvafc"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvxu5"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72jhx"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8a2s"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ksmo"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2jtl"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1harb"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v6ce"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxefd"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j76vv"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx426"] +atlas = ExtResource("1_0pvm0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3w26"] +atlas = ExtResource("1_0pvm0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knvyv"] +atlas = ExtResource("1_0pvm0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7udwi"] +atlas = ExtResource("1_0pvm0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toafu"] +atlas = ExtResource("1_0pvm0") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw8sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2q6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4skgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccssb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na6sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cj6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2xm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py1d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvafc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvxu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72jhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8a2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ksmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2jtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1harb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v6ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxefd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j76vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx426") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3w26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knvyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7udwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toafu") +}], +"loop": true, +"name": &"grandmirage", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_increasingwinds.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_increasingwinds.tres new file mode 100644 index 0000000..a9d5925 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_increasingwinds.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://djy8ec6c6f5g6"] + +[ext_resource type="Texture2D" uid="uid://hdx5xk1cax61" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png" id="1_ka0f2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhopo"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw1d1"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h12n"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwicr"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts3n6"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brp6h"] +atlas = ExtResource("1_ka0f2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ofhs"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jl4d"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehgnq"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5iol"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a67nv"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oswv"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k0s6"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cety2"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8coq"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyg7y"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc6cg"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np0ao"] +atlas = ExtResource("1_ka0f2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fkj6"] +atlas = ExtResource("1_ka0f2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw7rv"] +atlas = ExtResource("1_ka0f2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr74w"] +atlas = ExtResource("1_ka0f2") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhopo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw1d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h12n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwicr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts3n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brp6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ofhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jl4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehgnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5iol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a67nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oswv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k0s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cety2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8coq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyg7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc6cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np0ao") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fkj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw7rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr74w") +}], +"loop": true, +"name": &"increasingwinds", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_inneroasis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_inneroasis.tres new file mode 100644 index 0000000..aae833b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_inneroasis.tres @@ -0,0 +1,205 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://clvsjf1a713xu"] + +[ext_resource type="Texture2D" uid="uid://ctbtas5tytfbd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png" id="1_ytvtm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yplmx"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwnok"] +atlas = ExtResource("1_ytvtm") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkt5f"] +atlas = ExtResource("1_ytvtm") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys7cu"] +atlas = ExtResource("1_ytvtm") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta4se"] +atlas = ExtResource("1_ytvtm") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb3ga"] +atlas = ExtResource("1_ytvtm") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2x8t"] +atlas = ExtResource("1_ytvtm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntgem"] +atlas = ExtResource("1_ytvtm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17oxx"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfwdx"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15k0m"] +atlas = ExtResource("1_ytvtm") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4out5"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kldkx"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya01p"] +atlas = ExtResource("1_ytvtm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckpco"] +atlas = ExtResource("1_ytvtm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsu3i"] +atlas = ExtResource("1_ytvtm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1smxu"] +atlas = ExtResource("1_ytvtm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50lap"] +atlas = ExtResource("1_ytvtm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw5jn"] +atlas = ExtResource("1_ytvtm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdr8j"] +atlas = ExtResource("1_ytvtm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sv2v"] +atlas = ExtResource("1_ytvtm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7pp7"] +atlas = ExtResource("1_ytvtm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arjqp"] +atlas = ExtResource("1_ytvtm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ct3"] +atlas = ExtResource("1_ytvtm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufni5"] +atlas = ExtResource("1_ytvtm") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s6ys"] +atlas = ExtResource("1_ytvtm") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eu7u"] +atlas = ExtResource("1_ytvtm") +region = Rect2(196, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yplmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwnok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkt5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys7cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta4se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb3ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2x8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntgem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17oxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfwdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15k0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4out5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kldkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya01p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckpco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsu3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1smxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50lap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw5jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdr8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sv2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7pp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arjqp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ct3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufni5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s6ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eu7u") +}], +"loop": true, +"name": &"inneroasis", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_lostindesert.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_lostindesert.tres new file mode 100644 index 0000000..5799fcb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_lostindesert.tres @@ -0,0 +1,268 @@ +[gd_resource type="SpriteFrames" load_steps=38 format=3 uid="uid://cgrbxlhiyhwgj"] + +[ext_resource type="Texture2D" uid="uid://biuoki7lev8wh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png" id="1_v210t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kdky"] +atlas = ExtResource("1_v210t") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omdbl"] +atlas = ExtResource("1_v210t") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd2u0"] +atlas = ExtResource("1_v210t") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps8mj"] +atlas = ExtResource("1_v210t") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae8ke"] +atlas = ExtResource("1_v210t") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bffu"] +atlas = ExtResource("1_v210t") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkpxo"] +atlas = ExtResource("1_v210t") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec1a3"] +atlas = ExtResource("1_v210t") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbc0v"] +atlas = ExtResource("1_v210t") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei0cc"] +atlas = ExtResource("1_v210t") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srjwl"] +atlas = ExtResource("1_v210t") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb44d"] +atlas = ExtResource("1_v210t") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldae8"] +atlas = ExtResource("1_v210t") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1dpy"] +atlas = ExtResource("1_v210t") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i67i"] +atlas = ExtResource("1_v210t") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57wkd"] +atlas = ExtResource("1_v210t") +region = Rect2(343, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm06n"] +atlas = ExtResource("1_v210t") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykus4"] +atlas = ExtResource("1_v210t") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3bfh"] +atlas = ExtResource("1_v210t") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvmk4"] +atlas = ExtResource("1_v210t") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk5od"] +atlas = ExtResource("1_v210t") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn0i5"] +atlas = ExtResource("1_v210t") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nro4"] +atlas = ExtResource("1_v210t") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ugnk"] +atlas = ExtResource("1_v210t") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ywm6"] +atlas = ExtResource("1_v210t") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21lua"] +atlas = ExtResource("1_v210t") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vicdt"] +atlas = ExtResource("1_v210t") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk1ha"] +atlas = ExtResource("1_v210t") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58jmq"] +atlas = ExtResource("1_v210t") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csl0x"] +atlas = ExtResource("1_v210t") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngftf"] +atlas = ExtResource("1_v210t") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcfhg"] +atlas = ExtResource("1_v210t") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6xk1"] +atlas = ExtResource("1_v210t") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jffn0"] +atlas = ExtResource("1_v210t") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nbxd"] +atlas = ExtResource("1_v210t") +region = Rect2(294, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smtjm"] +atlas = ExtResource("1_v210t") +region = Rect2(294, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kdky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omdbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd2u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps8mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae8ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bffu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkpxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec1a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbc0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei0cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srjwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb44d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldae8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1dpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i67i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57wkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm06n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykus4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3bfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvmk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk5od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn0i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nro4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ugnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ywm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21lua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vicdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk1ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58jmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csl0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngftf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcfhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6xk1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jffn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nbxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smtjm") +}], +"loop": true, +"name": &"lostindesert", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_maelstrom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_maelstrom.tres new file mode 100644 index 0000000..d37a78e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_maelstrom.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://c83e0ipgnf033"] + +[ext_resource type="Texture2D" uid="uid://csyditxbdknvr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png" id="1_uunn0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xee6"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn74o"] +atlas = ExtResource("1_uunn0") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jivul"] +atlas = ExtResource("1_uunn0") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n3su"] +atlas = ExtResource("1_uunn0") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1tsj"] +atlas = ExtResource("1_uunn0") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwygy"] +atlas = ExtResource("1_uunn0") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8p8m"] +atlas = ExtResource("1_uunn0") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny610"] +atlas = ExtResource("1_uunn0") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtfwy"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q1qo"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck3gs"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvhfu"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdn6r"] +atlas = ExtResource("1_uunn0") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75xj8"] +atlas = ExtResource("1_uunn0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nsq4"] +atlas = ExtResource("1_uunn0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kyf1"] +atlas = ExtResource("1_uunn0") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rwns"] +atlas = ExtResource("1_uunn0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou6ej"] +atlas = ExtResource("1_uunn0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7deq"] +atlas = ExtResource("1_uunn0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjs6b"] +atlas = ExtResource("1_uunn0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqimg"] +atlas = ExtResource("1_uunn0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4d2g"] +atlas = ExtResource("1_uunn0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efh2t"] +atlas = ExtResource("1_uunn0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrlit"] +atlas = ExtResource("1_uunn0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ncx4"] +atlas = ExtResource("1_uunn0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fbio"] +atlas = ExtResource("1_uunn0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy235"] +atlas = ExtResource("1_uunn0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krv67"] +atlas = ExtResource("1_uunn0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otf8v"] +atlas = ExtResource("1_uunn0") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ey75"] +atlas = ExtResource("1_uunn0") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sv0u"] +atlas = ExtResource("1_uunn0") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e24sq"] +atlas = ExtResource("1_uunn0") +region = Rect2(245, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xee6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn74o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jivul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n3su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1tsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwygy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8p8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny610") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtfwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q1qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck3gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvhfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdn6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75xj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nsq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kyf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rwns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou6ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7deq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjs6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqimg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4d2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efh2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrlit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ncx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fbio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy235") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krv67") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_otf8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ey75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sv0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e24sq") +}], +"loop": true, +"name": &"maelstrom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_magitekupgrade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_magitekupgrade.tres new file mode 100644 index 0000000..8ac18d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_magitekupgrade.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://b2ddxvrgk35aj"] + +[ext_resource type="Texture2D" uid="uid://vsc8stqfrgm5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png" id="1_17igv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4bak"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmhmk"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vun6w"] +atlas = ExtResource("1_17igv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyhe6"] +atlas = ExtResource("1_17igv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6npag"] +atlas = ExtResource("1_17igv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0yh3"] +atlas = ExtResource("1_17igv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh4fx"] +atlas = ExtResource("1_17igv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb7nq"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbinq"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6pb3"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcmvx"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyfei"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd42w"] +atlas = ExtResource("1_17igv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2nhh"] +atlas = ExtResource("1_17igv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydfis"] +atlas = ExtResource("1_17igv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygkc4"] +atlas = ExtResource("1_17igv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oktw"] +atlas = ExtResource("1_17igv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxd47"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l0vo"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1km5"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxpfs"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp1p3"] +atlas = ExtResource("1_17igv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrn36"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpeis"] +atlas = ExtResource("1_17igv") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4bak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmhmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vun6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyhe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6npag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0yh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh4fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb7nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbinq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6pb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcmvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyfei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd42w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2nhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydfis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygkc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxd47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l0vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1km5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxpfs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp1p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrn36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpeis") +}], +"loop": true, +"name": &"magitekupgrade", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_matchtwo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_matchtwo.tres new file mode 100644 index 0000000..2412c93 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_matchtwo.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://gyowgvwq81gg"] + +[ext_resource type="Texture2D" uid="uid://c2bt7mbi748ry" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png" id="1_8j84m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwk66"] +atlas = ExtResource("1_8j84m") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j572a"] +atlas = ExtResource("1_8j84m") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf1i1"] +atlas = ExtResource("1_8j84m") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2lxh"] +atlas = ExtResource("1_8j84m") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cxno"] +atlas = ExtResource("1_8j84m") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyl4c"] +atlas = ExtResource("1_8j84m") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiooa"] +atlas = ExtResource("1_8j84m") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44fgp"] +atlas = ExtResource("1_8j84m") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftisj"] +atlas = ExtResource("1_8j84m") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fxek"] +atlas = ExtResource("1_8j84m") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp8uf"] +atlas = ExtResource("1_8j84m") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7niw"] +atlas = ExtResource("1_8j84m") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcpdn"] +atlas = ExtResource("1_8j84m") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e00r5"] +atlas = ExtResource("1_8j84m") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjgnp"] +atlas = ExtResource("1_8j84m") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6rnh"] +atlas = ExtResource("1_8j84m") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x23mh"] +atlas = ExtResource("1_8j84m") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uqpd"] +atlas = ExtResource("1_8j84m") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dota"] +atlas = ExtResource("1_8j84m") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duhbr"] +atlas = ExtResource("1_8j84m") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg86e"] +atlas = ExtResource("1_8j84m") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0n3x"] +atlas = ExtResource("1_8j84m") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxceo"] +atlas = ExtResource("1_8j84m") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwodv"] +atlas = ExtResource("1_8j84m") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwk66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j572a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf1i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2lxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cxno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyl4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiooa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44fgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftisj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fxek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp8uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7niw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcpdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e00r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjgnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6rnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x23mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uqpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dota") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duhbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg86e") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0n3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxceo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwodv") +}], +"loop": true, +"name": &"matchtwo", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_metalworking.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_metalworking.tres new file mode 100644 index 0000000..94b0aee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_metalworking.tres @@ -0,0 +1,261 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://ctjru6xwk5chk"] + +[ext_resource type="Texture2D" uid="uid://b8tttgh46mlph" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png" id="1_a620c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1jml"] +atlas = ExtResource("1_a620c") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqlti"] +atlas = ExtResource("1_a620c") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtmv3"] +atlas = ExtResource("1_a620c") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d7wf"] +atlas = ExtResource("1_a620c") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws3m7"] +atlas = ExtResource("1_a620c") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlmra"] +atlas = ExtResource("1_a620c") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ib7i"] +atlas = ExtResource("1_a620c") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tt31"] +atlas = ExtResource("1_a620c") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdacs"] +atlas = ExtResource("1_a620c") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgxme"] +atlas = ExtResource("1_a620c") +region = Rect2(294, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eusue"] +atlas = ExtResource("1_a620c") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gidic"] +atlas = ExtResource("1_a620c") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvaty"] +atlas = ExtResource("1_a620c") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5key"] +atlas = ExtResource("1_a620c") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r7bx"] +atlas = ExtResource("1_a620c") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_von23"] +atlas = ExtResource("1_a620c") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pib30"] +atlas = ExtResource("1_a620c") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igk8g"] +atlas = ExtResource("1_a620c") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqtkt"] +atlas = ExtResource("1_a620c") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsw3c"] +atlas = ExtResource("1_a620c") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghqxn"] +atlas = ExtResource("1_a620c") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ixn7"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk88i"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2b1w"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bttfc"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biayn"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eolsc"] +atlas = ExtResource("1_a620c") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg1ja"] +atlas = ExtResource("1_a620c") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbjj3"] +atlas = ExtResource("1_a620c") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8hkl"] +atlas = ExtResource("1_a620c") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erkxv"] +atlas = ExtResource("1_a620c") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy5pt"] +atlas = ExtResource("1_a620c") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0272b"] +atlas = ExtResource("1_a620c") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcexl"] +atlas = ExtResource("1_a620c") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0c6d"] +atlas = ExtResource("1_a620c") +region = Rect2(245, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1jml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqlti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtmv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d7wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws3m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlmra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ib7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tt31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdacs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgxme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eusue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gidic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvaty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5key") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r7bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_von23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pib30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igk8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqtkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsw3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghqxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ixn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk88i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2b1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bttfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biayn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eolsc") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg1ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbjj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8hkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erkxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy5pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0272b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcexl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0c6d") +}], +"loop": true, +"name": &"metalworking", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_psychicconduit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_psychicconduit.tres new file mode 100644 index 0000000..f9cacdc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_psychicconduit.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://xlj7ggw214ir"] + +[ext_resource type="Texture2D" uid="uid://cnlx3wd64eepa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png" id="1_1bw2w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysplu"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yytvj"] +atlas = ExtResource("1_1bw2w") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yymm2"] +atlas = ExtResource("1_1bw2w") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axvoh"] +atlas = ExtResource("1_1bw2w") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efbqq"] +atlas = ExtResource("1_1bw2w") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vstsq"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3dv4"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmnht"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaoq5"] +atlas = ExtResource("1_1bw2w") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ewnb"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcluc"] +atlas = ExtResource("1_1bw2w") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evuon"] +atlas = ExtResource("1_1bw2w") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0e4p"] +atlas = ExtResource("1_1bw2w") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phf1a"] +atlas = ExtResource("1_1bw2w") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj7yp"] +atlas = ExtResource("1_1bw2w") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2w5f"] +atlas = ExtResource("1_1bw2w") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twyfc"] +atlas = ExtResource("1_1bw2w") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kok28"] +atlas = ExtResource("1_1bw2w") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3f4d"] +atlas = ExtResource("1_1bw2w") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mlut"] +atlas = ExtResource("1_1bw2w") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ob1r"] +atlas = ExtResource("1_1bw2w") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yow3j"] +atlas = ExtResource("1_1bw2w") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b7qm"] +atlas = ExtResource("1_1bw2w") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1rwm"] +atlas = ExtResource("1_1bw2w") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysplu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yytvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yymm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axvoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efbqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vstsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3dv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmnht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaoq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ewnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcluc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evuon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0e4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phf1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj7yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2w5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twyfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kok28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3f4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mlut") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ob1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yow3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b7qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1rwm") +}], +"loop": true, +"name": &"psychicconduit", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_rashascurse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_rashascurse.tres new file mode 100644 index 0000000..f22f264 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_rashascurse.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://bhdqdg1jy16x7"] + +[ext_resource type="Texture2D" uid="uid://m2udi51tivy3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png" id="1_lgwgj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7rur"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t06xj"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bwfs"] +atlas = ExtResource("1_lgwgj") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhr2p"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rk8l"] +atlas = ExtResource("1_lgwgj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66fe1"] +atlas = ExtResource("1_lgwgj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0vvc"] +atlas = ExtResource("1_lgwgj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dfqn"] +atlas = ExtResource("1_lgwgj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flvl1"] +atlas = ExtResource("1_lgwgj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqxas"] +atlas = ExtResource("1_lgwgj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qewq"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps20m"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07vrt"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea88x"] +atlas = ExtResource("1_lgwgj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfndx"] +atlas = ExtResource("1_lgwgj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq1le"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x180h"] +atlas = ExtResource("1_lgwgj") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7rur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t06xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bwfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhr2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rk8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66fe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0vvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dfqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flvl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqxas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qewq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps20m") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_07vrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea88x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfndx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq1le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x180h") +}], +"loop": true, +"name": &"rashascurse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_reconstruct.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_reconstruct.tres new file mode 100644 index 0000000..6bf9267 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_reconstruct.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://iikcwojb56ey"] + +[ext_resource type="Texture2D" uid="uid://l737ibu5ek3k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png" id="1_0xy8m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt13c"] +atlas = ExtResource("1_0xy8m") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g5on"] +atlas = ExtResource("1_0xy8m") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me2nr"] +atlas = ExtResource("1_0xy8m") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3rbb"] +atlas = ExtResource("1_0xy8m") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uknlu"] +atlas = ExtResource("1_0xy8m") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l405i"] +atlas = ExtResource("1_0xy8m") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdyhu"] +atlas = ExtResource("1_0xy8m") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmuu5"] +atlas = ExtResource("1_0xy8m") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urdcs"] +atlas = ExtResource("1_0xy8m") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jehai"] +atlas = ExtResource("1_0xy8m") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktdqe"] +atlas = ExtResource("1_0xy8m") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyv7j"] +atlas = ExtResource("1_0xy8m") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxquq"] +atlas = ExtResource("1_0xy8m") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlcyh"] +atlas = ExtResource("1_0xy8m") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuh5y"] +atlas = ExtResource("1_0xy8m") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uulc5"] +atlas = ExtResource("1_0xy8m") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkka6"] +atlas = ExtResource("1_0xy8m") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45x1c"] +atlas = ExtResource("1_0xy8m") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpr2j"] +atlas = ExtResource("1_0xy8m") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nva8a"] +atlas = ExtResource("1_0xy8m") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dub1"] +atlas = ExtResource("1_0xy8m") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e177q"] +atlas = ExtResource("1_0xy8m") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifrk4"] +atlas = ExtResource("1_0xy8m") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf0tw"] +atlas = ExtResource("1_0xy8m") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt13c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g5on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me2nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3rbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uknlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l405i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdyhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmuu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urdcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jehai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktdqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyv7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxquq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlcyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuh5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uulc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkka6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45x1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpr2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nva8a") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dub1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e177q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifrk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf0tw") +}], +"loop": true, +"name": &"reconstruct", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandtrap.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandtrap.tres new file mode 100644 index 0000000..5b0816b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandtrap.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://bicfpvbudmki3"] + +[ext_resource type="Texture2D" uid="uid://la2q5hh4iqb6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png" id="1_sv53j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jams"] +atlas = ExtResource("1_sv53j") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrpwt"] +atlas = ExtResource("1_sv53j") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jk1e"] +atlas = ExtResource("1_sv53j") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amgmk"] +atlas = ExtResource("1_sv53j") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibn0b"] +atlas = ExtResource("1_sv53j") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccy5t"] +atlas = ExtResource("1_sv53j") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhnh7"] +atlas = ExtResource("1_sv53j") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2tur"] +atlas = ExtResource("1_sv53j") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v451o"] +atlas = ExtResource("1_sv53j") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiyiu"] +atlas = ExtResource("1_sv53j") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwly2"] +atlas = ExtResource("1_sv53j") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvm5s"] +atlas = ExtResource("1_sv53j") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfpvl"] +atlas = ExtResource("1_sv53j") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnxyt"] +atlas = ExtResource("1_sv53j") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5g32"] +atlas = ExtResource("1_sv53j") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq8la"] +atlas = ExtResource("1_sv53j") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jams") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrpwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jk1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amgmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibn0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccy5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhnh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2tur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v451o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiyiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwly2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvm5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfpvl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnxyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5g32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq8la") +}], +"loop": true, +"name": &"sandtrap", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandwave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandwave.tres new file mode 100644 index 0000000..f062914 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_sandwave.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://dt240gx1i7xrc"] + +[ext_resource type="Texture2D" uid="uid://ceqmfn3elydym" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png" id="1_8v3jc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr558"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v88gp"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t82hg"] +atlas = ExtResource("1_8v3jc") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33l6v"] +atlas = ExtResource("1_8v3jc") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48sc3"] +atlas = ExtResource("1_8v3jc") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3x4w"] +atlas = ExtResource("1_8v3jc") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndgn3"] +atlas = ExtResource("1_8v3jc") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80x5t"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfyd5"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajkv2"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo87a"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kat7v"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi3ti"] +atlas = ExtResource("1_8v3jc") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yav2q"] +atlas = ExtResource("1_8v3jc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr2rx"] +atlas = ExtResource("1_8v3jc") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfvbj"] +atlas = ExtResource("1_8v3jc") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbs2g"] +atlas = ExtResource("1_8v3jc") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6i07"] +atlas = ExtResource("1_8v3jc") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7dgo"] +atlas = ExtResource("1_8v3jc") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pjky"] +atlas = ExtResource("1_8v3jc") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s3mm"] +atlas = ExtResource("1_8v3jc") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lb57"] +atlas = ExtResource("1_8v3jc") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_345wu"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26a8e"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr1gp"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qltn0"] +atlas = ExtResource("1_8v3jc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjad4"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc53h"] +atlas = ExtResource("1_8v3jc") +region = Rect2(196, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr558") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v88gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t82hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33l6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48sc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3x4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndgn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80x5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfyd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajkv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo87a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kat7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi3ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yav2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr2rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfvbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbs2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6i07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7dgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pjky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s3mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lb57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_345wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26a8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr1gp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qltn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjad4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc53h") +}], +"loop": true, +"name": &"sandwave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsfirstwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsfirstwish.tres new file mode 100644 index 0000000..aecd179 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsfirstwish.tres @@ -0,0 +1,247 @@ +[gd_resource type="SpriteFrames" load_steps=35 format=3 uid="uid://b33lyrp8w7j0h"] + +[ext_resource type="Texture2D" uid="uid://dtqxkw7o1wwt4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png" id="1_xn6dv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai6c8"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy67m"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgdg0"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8k2l"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f5u7"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl22a"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ti81"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dts5"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11vo3"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go4q7"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63qng"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2eoe"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy710"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n20wy"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npild"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvfgt"] +atlas = ExtResource("1_xn6dv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajvxd"] +atlas = ExtResource("1_xn6dv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8h4i"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8th0j"] +atlas = ExtResource("1_xn6dv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ty7g"] +atlas = ExtResource("1_xn6dv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnqkc"] +atlas = ExtResource("1_xn6dv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqvpa"] +atlas = ExtResource("1_xn6dv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m080"] +atlas = ExtResource("1_xn6dv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijr3o"] +atlas = ExtResource("1_xn6dv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lao0"] +atlas = ExtResource("1_xn6dv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlav3"] +atlas = ExtResource("1_xn6dv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h346e"] +atlas = ExtResource("1_xn6dv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay1bo"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo6ui"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fbsr"] +atlas = ExtResource("1_xn6dv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxgsn"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mm02"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xffj6"] +atlas = ExtResource("1_xn6dv") +region = Rect2(196, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai6c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy67m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgdg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8k2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f5u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl22a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ti81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dts5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11vo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go4q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63qng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2eoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy710") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n20wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npild") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvfgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajvxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8h4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8th0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ty7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnqkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqvpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m080") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijr3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lao0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlav3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h346e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay1bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo6ui") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fbsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxgsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mm02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xffj6") +}], +"loop": true, +"name": &"scionsfirstwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionssecondwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionssecondwish.tres new file mode 100644 index 0000000..b2f6d80 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionssecondwish.tres @@ -0,0 +1,268 @@ +[gd_resource type="SpriteFrames" load_steps=38 format=3 uid="uid://bvdp5r7crme7y"] + +[ext_resource type="Texture2D" uid="uid://dinjhwhylchih" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png" id="1_8fuuv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb6w1"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yreq3"] +atlas = ExtResource("1_8fuuv") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjns1"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vckn7"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usfa7"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkge7"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n221y"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emjqy"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7nc0"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elk03"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urjok"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujh5e"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up588"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4qlk"] +atlas = ExtResource("1_8fuuv") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q3mc"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15apw"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3b3u"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qxe3"] +atlas = ExtResource("1_8fuuv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tslnd"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgeio"] +atlas = ExtResource("1_8fuuv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hq7c"] +atlas = ExtResource("1_8fuuv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffu52"] +atlas = ExtResource("1_8fuuv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_505m6"] +atlas = ExtResource("1_8fuuv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oleb6"] +atlas = ExtResource("1_8fuuv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xxhg"] +atlas = ExtResource("1_8fuuv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbsdp"] +atlas = ExtResource("1_8fuuv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqm8e"] +atlas = ExtResource("1_8fuuv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye3x2"] +atlas = ExtResource("1_8fuuv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5f88"] +atlas = ExtResource("1_8fuuv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l733v"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udwtg"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbx2x"] +atlas = ExtResource("1_8fuuv") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7g6k"] +atlas = ExtResource("1_8fuuv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s07p8"] +atlas = ExtResource("1_8fuuv") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30r4i"] +atlas = ExtResource("1_8fuuv") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wytor"] +atlas = ExtResource("1_8fuuv") +region = Rect2(245, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb6w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yreq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjns1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vckn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usfa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkge7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n221y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emjqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7nc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elk03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urjok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujh5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up588") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4qlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q3mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15apw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3b3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qxe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tslnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgeio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hq7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffu52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_505m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oleb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xxhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbsdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqm8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye3x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5f88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l733v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udwtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbx2x") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7g6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s07p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30r4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wytor") +}], +"loop": true, +"name": &"scionssecondwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsthirdwish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsthirdwish.tres new file mode 100644 index 0000000..206673f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_scionsthirdwish.tres @@ -0,0 +1,310 @@ +[gd_resource type="SpriteFrames" load_steps=44 format=3 uid="uid://cufcxw7or7tyc"] + +[ext_resource type="Texture2D" uid="uid://ckdumasdffwra" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png" id="1_4o3r8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t23jr"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hv6h"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk56g"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vykm"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieqjo"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq57d"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2bh"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oyxn"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mywj"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifoqo"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwk0l"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mewg"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0gpw"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cnfd"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktuie"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsgry"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ora"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkd7o"] +atlas = ExtResource("1_4o3r8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccq2p"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ngso"] +atlas = ExtResource("1_4o3r8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs53j"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_606gx"] +atlas = ExtResource("1_4o3r8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kjjv"] +atlas = ExtResource("1_4o3r8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci0tn"] +atlas = ExtResource("1_4o3r8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twnx"] +atlas = ExtResource("1_4o3r8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2np5"] +atlas = ExtResource("1_4o3r8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i5vy"] +atlas = ExtResource("1_4o3r8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bksc0"] +atlas = ExtResource("1_4o3r8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf4a3"] +atlas = ExtResource("1_4o3r8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_135n8"] +atlas = ExtResource("1_4o3r8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtbv8"] +atlas = ExtResource("1_4o3r8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t50ux"] +atlas = ExtResource("1_4o3r8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldjdl"] +atlas = ExtResource("1_4o3r8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4fdn"] +atlas = ExtResource("1_4o3r8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an3nm"] +atlas = ExtResource("1_4o3r8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3naqv"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ucl"] +atlas = ExtResource("1_4o3r8") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vxk0"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwl4v"] +atlas = ExtResource("1_4o3r8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a77n8"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plhju"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7qbm"] +atlas = ExtResource("1_4o3r8") +region = Rect2(294, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t23jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hv6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk56g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vykm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieqjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq57d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oyxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mywj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifoqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwk0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mewg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0gpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cnfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktuie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsgry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ora") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkd7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccq2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ngso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs53j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_606gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kjjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci0tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2np5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i5vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bksc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf4a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_135n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtbv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t50ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldjdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4fdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an3nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3naqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ucl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vxk0") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwl4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a77n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plhju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7qbm") +}], +"loop": true, +"name": &"scionsthirdwish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_songofsands.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_songofsands.tres new file mode 100644 index 0000000..c31d622 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_songofsands.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://dbi47g8eo5g8"] + +[ext_resource type="Texture2D" uid="uid://cmse8qo78pdaw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png" id="1_413n5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ml4x"] +atlas = ExtResource("1_413n5") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hexr"] +atlas = ExtResource("1_413n5") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsrja"] +atlas = ExtResource("1_413n5") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dovhc"] +atlas = ExtResource("1_413n5") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gj2q"] +atlas = ExtResource("1_413n5") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aemd"] +atlas = ExtResource("1_413n5") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fblm"] +atlas = ExtResource("1_413n5") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_penog"] +atlas = ExtResource("1_413n5") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flb7x"] +atlas = ExtResource("1_413n5") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvwrn"] +atlas = ExtResource("1_413n5") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiq3x"] +atlas = ExtResource("1_413n5") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73wmy"] +atlas = ExtResource("1_413n5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plgav"] +atlas = ExtResource("1_413n5") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx430"] +atlas = ExtResource("1_413n5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1io4"] +atlas = ExtResource("1_413n5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qifx8"] +atlas = ExtResource("1_413n5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxhp3"] +atlas = ExtResource("1_413n5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkw7e"] +atlas = ExtResource("1_413n5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q07x6"] +atlas = ExtResource("1_413n5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asyyi"] +atlas = ExtResource("1_413n5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjr6t"] +atlas = ExtResource("1_413n5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svaie"] +atlas = ExtResource("1_413n5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbarj"] +atlas = ExtResource("1_413n5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mh64"] +atlas = ExtResource("1_413n5") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ml4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hexr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsrja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dovhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gj2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aemd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fblm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_penog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flb7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvwrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiq3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73wmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plgav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx430") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1io4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qifx8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxhp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkw7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q07x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asyyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjr6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svaie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbarj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mh64") +}], +"loop": true, +"name": &"songofsands", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_soultosand.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_soultosand.tres new file mode 100644 index 0000000..19bf471 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_soultosand.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://dhheqbcdbsfj2"] + +[ext_resource type="Texture2D" uid="uid://cgfcphtux50oi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png" id="1_yvq86"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6omfi"] +atlas = ExtResource("1_yvq86") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erigg"] +atlas = ExtResource("1_yvq86") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6kfx"] +atlas = ExtResource("1_yvq86") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow74m"] +atlas = ExtResource("1_yvq86") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_145to"] +atlas = ExtResource("1_yvq86") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3glxg"] +atlas = ExtResource("1_yvq86") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjgq6"] +atlas = ExtResource("1_yvq86") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq6d2"] +atlas = ExtResource("1_yvq86") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy1gp"] +atlas = ExtResource("1_yvq86") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soukd"] +atlas = ExtResource("1_yvq86") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6swe"] +atlas = ExtResource("1_yvq86") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_movto"] +atlas = ExtResource("1_yvq86") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtbd6"] +atlas = ExtResource("1_yvq86") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7rn"] +atlas = ExtResource("1_yvq86") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tobqc"] +atlas = ExtResource("1_yvq86") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aec2"] +atlas = ExtResource("1_yvq86") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llq4m"] +atlas = ExtResource("1_yvq86") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be5bm"] +atlas = ExtResource("1_yvq86") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu1m4"] +atlas = ExtResource("1_yvq86") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q2kr"] +atlas = ExtResource("1_yvq86") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_warsw"] +atlas = ExtResource("1_yvq86") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5naa4"] +atlas = ExtResource("1_yvq86") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoo4g"] +atlas = ExtResource("1_yvq86") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jne17"] +atlas = ExtResource("1_yvq86") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrbd"] +atlas = ExtResource("1_yvq86") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qinn"] +atlas = ExtResource("1_yvq86") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc6rx"] +atlas = ExtResource("1_yvq86") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiv36"] +atlas = ExtResource("1_yvq86") +region = Rect2(196, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6omfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erigg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6kfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow74m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_145to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3glxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjgq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq6d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy1gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soukd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6swe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_movto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtbd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v7rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tobqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llq4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be5bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu1m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q2kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_warsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5naa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoo4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jne17") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljrbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qinn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc6rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiv36") +}], +"loop": true, +"name": &"soultosand", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_starsfury.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_starsfury.tres new file mode 100644 index 0000000..171b05e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_starsfury.tres @@ -0,0 +1,233 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://d3r6l0nkaglm3"] + +[ext_resource type="Texture2D" uid="uid://cj2710txbvtdx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png" id="1_as7jn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu3rm"] +atlas = ExtResource("1_as7jn") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_batjy"] +atlas = ExtResource("1_as7jn") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m675i"] +atlas = ExtResource("1_as7jn") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhlk8"] +atlas = ExtResource("1_as7jn") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg1tu"] +atlas = ExtResource("1_as7jn") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxm57"] +atlas = ExtResource("1_as7jn") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uirh4"] +atlas = ExtResource("1_as7jn") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct421"] +atlas = ExtResource("1_as7jn") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw53i"] +atlas = ExtResource("1_as7jn") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqo2y"] +atlas = ExtResource("1_as7jn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej1sr"] +atlas = ExtResource("1_as7jn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hwmn"] +atlas = ExtResource("1_as7jn") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ith"] +atlas = ExtResource("1_as7jn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efqlr"] +atlas = ExtResource("1_as7jn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d2av"] +atlas = ExtResource("1_as7jn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyy4y"] +atlas = ExtResource("1_as7jn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb621"] +atlas = ExtResource("1_as7jn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt15k"] +atlas = ExtResource("1_as7jn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv850"] +atlas = ExtResource("1_as7jn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnp4a"] +atlas = ExtResource("1_as7jn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crcjv"] +atlas = ExtResource("1_as7jn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33m8q"] +atlas = ExtResource("1_as7jn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1rvd"] +atlas = ExtResource("1_as7jn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e354f"] +atlas = ExtResource("1_as7jn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us62u"] +atlas = ExtResource("1_as7jn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq5de"] +atlas = ExtResource("1_as7jn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8evni"] +atlas = ExtResource("1_as7jn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srkpx"] +atlas = ExtResource("1_as7jn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j324q"] +atlas = ExtResource("1_as7jn") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vyoj"] +atlas = ExtResource("1_as7jn") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54nbl"] +atlas = ExtResource("1_as7jn") +region = Rect2(245, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu3rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_batjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m675i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhlk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg1tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxm57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uirh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct421") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw53i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqo2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej1sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hwmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ith") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efqlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d2av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyy4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb621") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt15k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv850") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnp4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crcjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33m8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1rvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e354f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us62u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq5de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8evni") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_srkpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j324q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vyoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54nbl") +}], +"loop": true, +"name": &"starsfury", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_stonestospears.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_stonestospears.tres new file mode 100644 index 0000000..0cc8905 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_stonestospears.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://1kgadqo764pv"] + +[ext_resource type="Texture2D" uid="uid://rmn30wxp03qb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png" id="1_t64qi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7aah"] +atlas = ExtResource("1_t64qi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hxe"] +atlas = ExtResource("1_t64qi") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7jb"] +atlas = ExtResource("1_t64qi") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5n46"] +atlas = ExtResource("1_t64qi") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k2in"] +atlas = ExtResource("1_t64qi") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0tw8"] +atlas = ExtResource("1_t64qi") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v4nt"] +atlas = ExtResource("1_t64qi") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4821f"] +atlas = ExtResource("1_t64qi") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg1sk"] +atlas = ExtResource("1_t64qi") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5veb"] +atlas = ExtResource("1_t64qi") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vln3"] +atlas = ExtResource("1_t64qi") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8mxo"] +atlas = ExtResource("1_t64qi") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1omsb"] +atlas = ExtResource("1_t64qi") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7aah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6hxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5n46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k2in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0tw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v4nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4821f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg1sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5veb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vln3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8mxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1omsb") +}], +"loop": true, +"name": &"stonestospears", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_summoningstones.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_summoningstones.tres new file mode 100644 index 0000000..c6e3305 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_summoningstones.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://dk04n4svc3hos"] + +[ext_resource type="Texture2D" uid="uid://d3x67ddcbwaet" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png" id="1_0cghw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjhqn"] +atlas = ExtResource("1_0cghw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15trl"] +atlas = ExtResource("1_0cghw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uxeu"] +atlas = ExtResource("1_0cghw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiyju"] +atlas = ExtResource("1_0cghw") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikx7f"] +atlas = ExtResource("1_0cghw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rocvn"] +atlas = ExtResource("1_0cghw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdslk"] +atlas = ExtResource("1_0cghw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87hn8"] +atlas = ExtResource("1_0cghw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kydyj"] +atlas = ExtResource("1_0cghw") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl03a"] +atlas = ExtResource("1_0cghw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyj8x"] +atlas = ExtResource("1_0cghw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37w52"] +atlas = ExtResource("1_0cghw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyhr1"] +atlas = ExtResource("1_0cghw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmppq"] +atlas = ExtResource("1_0cghw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4u8t"] +atlas = ExtResource("1_0cghw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07tym"] +atlas = ExtResource("1_0cghw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1apll"] +atlas = ExtResource("1_0cghw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjg26"] +atlas = ExtResource("1_0cghw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndpvb"] +atlas = ExtResource("1_0cghw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtn1s"] +atlas = ExtResource("1_0cghw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed56s"] +atlas = ExtResource("1_0cghw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfxqg"] +atlas = ExtResource("1_0cghw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22hxs"] +atlas = ExtResource("1_0cghw") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ego75"] +atlas = ExtResource("1_0cghw") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wpo2"] +atlas = ExtResource("1_0cghw") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opt00"] +atlas = ExtResource("1_0cghw") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjhqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15trl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uxeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiyju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikx7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rocvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdslk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87hn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kydyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl03a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyj8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37w52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyhr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmppq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4u8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07tym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1apll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjg26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndpvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtn1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed56s") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfxqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22hxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ego75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wpo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opt00") +}], +"loop": true, +"name": &"summoningstones", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_syphonenergy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_syphonenergy.tres new file mode 100644 index 0000000..7c40fe4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f3_syphonenergy.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dfy7p5gp4spku"] + +[ext_resource type="Texture2D" uid="uid://cw47eyki7oi4i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png" id="1_txte4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5vpu"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lrc1"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jit7"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3w50"] +atlas = ExtResource("1_txte4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14w0q"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4e1w"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ya3"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50fco"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia6s3"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojth5"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glb47"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnb2p"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv5qa"] +atlas = ExtResource("1_txte4") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mu8d"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv26x"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21cdg"] +atlas = ExtResource("1_txte4") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5vpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lrc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jit7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3w50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14w0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4e1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ya3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50fco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia6s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojth5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glb47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnb2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv5qa") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mu8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv26x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21cdg") +}], +"loop": true, +"name": &"syphonenergy", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_abomination.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_abomination.tres new file mode 100644 index 0000000..449aaf1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_abomination.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://cic4v38ltc8st"] + +[ext_resource type="Texture2D" uid="uid://d3qa54ti5qdq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png" id="1_8rwst"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydhfq"] +atlas = ExtResource("1_8rwst") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt28h"] +atlas = ExtResource("1_8rwst") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga787"] +atlas = ExtResource("1_8rwst") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtyet"] +atlas = ExtResource("1_8rwst") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj5kk"] +atlas = ExtResource("1_8rwst") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmivq"] +atlas = ExtResource("1_8rwst") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq405"] +atlas = ExtResource("1_8rwst") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g451u"] +atlas = ExtResource("1_8rwst") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb3cs"] +atlas = ExtResource("1_8rwst") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4rv7"] +atlas = ExtResource("1_8rwst") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpdsx"] +atlas = ExtResource("1_8rwst") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rn57"] +atlas = ExtResource("1_8rwst") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phqtn"] +atlas = ExtResource("1_8rwst") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydhfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt28h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga787") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtyet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj5kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmivq") +}], +"loop": true, +"name": &"abomination", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq405") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g451u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb3cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4rv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpdsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rn57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phqtn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_aphoticdrain.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_aphoticdrain.tres new file mode 100644 index 0000000..5db12e2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_aphoticdrain.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://cf8pi4u80lu2s"] + +[ext_resource type="Texture2D" uid="uid://bbyuyu0d4qmlg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png" id="1_fqd8q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmvet"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwerd"] +atlas = ExtResource("1_fqd8q") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5bsd"] +atlas = ExtResource("1_fqd8q") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gali6"] +atlas = ExtResource("1_fqd8q") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlxj3"] +atlas = ExtResource("1_fqd8q") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2jhs"] +atlas = ExtResource("1_fqd8q") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx1ng"] +atlas = ExtResource("1_fqd8q") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x65mh"] +atlas = ExtResource("1_fqd8q") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvyev"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y851n"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk418"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oapw"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3vis"] +atlas = ExtResource("1_fqd8q") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ofyy"] +atlas = ExtResource("1_fqd8q") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5utb"] +atlas = ExtResource("1_fqd8q") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etw3n"] +atlas = ExtResource("1_fqd8q") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgb5t"] +atlas = ExtResource("1_fqd8q") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04re2"] +atlas = ExtResource("1_fqd8q") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtwur"] +atlas = ExtResource("1_fqd8q") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3apah"] +atlas = ExtResource("1_fqd8q") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxsui"] +atlas = ExtResource("1_fqd8q") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmvet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwerd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5bsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gali6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlxj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2jhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx1ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x65mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvyev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y851n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk418") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oapw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3vis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ofyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5utb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etw3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgb5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04re2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtwur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3apah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxsui") +}], +"loop": true, +"name": &"aphoticdrain", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_betrayal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_betrayal.tres new file mode 100644 index 0000000..7dc3702 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_betrayal.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://b346gqliktcco"] + +[ext_resource type="Texture2D" uid="uid://b8rrcqv8feu3t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png" id="1_uhcab"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f4o3"] +atlas = ExtResource("1_uhcab") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4wl4"] +atlas = ExtResource("1_uhcab") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5stna"] +atlas = ExtResource("1_uhcab") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymeqm"] +atlas = ExtResource("1_uhcab") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5prs"] +atlas = ExtResource("1_uhcab") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhmt4"] +atlas = ExtResource("1_uhcab") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkv88"] +atlas = ExtResource("1_uhcab") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etu2n"] +atlas = ExtResource("1_uhcab") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg4br"] +atlas = ExtResource("1_uhcab") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axmp6"] +atlas = ExtResource("1_uhcab") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ir5s"] +atlas = ExtResource("1_uhcab") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80wxs"] +atlas = ExtResource("1_uhcab") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wbcj"] +atlas = ExtResource("1_uhcab") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8427"] +atlas = ExtResource("1_uhcab") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cdle"] +atlas = ExtResource("1_uhcab") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihl3r"] +atlas = ExtResource("1_uhcab") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npw4d"] +atlas = ExtResource("1_uhcab") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_863yc"] +atlas = ExtResource("1_uhcab") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xajh0"] +atlas = ExtResource("1_uhcab") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loiho"] +atlas = ExtResource("1_uhcab") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f86cf"] +atlas = ExtResource("1_uhcab") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yba3s"] +atlas = ExtResource("1_uhcab") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f4o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4wl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5stna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymeqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5prs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhmt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkv88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etu2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg4br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axmp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ir5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80wxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wbcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8427") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cdle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihl3r") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_npw4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_863yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xajh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loiho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f86cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yba3s") +}], +"loop": true, +"name": &"betrayal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_breathoftheunborn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_breathoftheunborn.tres new file mode 100644 index 0000000..e0ef560 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_breathoftheunborn.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://iliaw2veafvt"] + +[ext_resource type="Texture2D" uid="uid://yb38tpv3fddb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png" id="1_o28po"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0shov"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s45gj"] +atlas = ExtResource("1_o28po") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sshh"] +atlas = ExtResource("1_o28po") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o44j1"] +atlas = ExtResource("1_o28po") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fala"] +atlas = ExtResource("1_o28po") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11xu1"] +atlas = ExtResource("1_o28po") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osn3p"] +atlas = ExtResource("1_o28po") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j535v"] +atlas = ExtResource("1_o28po") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7bm5"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jtqb"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aole0"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jf20"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_556ju"] +atlas = ExtResource("1_o28po") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ea2t"] +atlas = ExtResource("1_o28po") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayet2"] +atlas = ExtResource("1_o28po") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xccmr"] +atlas = ExtResource("1_o28po") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mom3c"] +atlas = ExtResource("1_o28po") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ibq2"] +atlas = ExtResource("1_o28po") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urf8s"] +atlas = ExtResource("1_o28po") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8clj"] +atlas = ExtResource("1_o28po") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0shov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s45gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sshh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o44j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fala") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11xu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osn3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j535v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7bm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jtqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aole0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jf20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_556ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ea2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayet2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xccmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mom3c") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ibq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urf8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8clj") +}], +"loop": true, +"name": &"breathoftheunborn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_consumingrebirth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_consumingrebirth.tres new file mode 100644 index 0000000..18e36cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_consumingrebirth.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://clwnn4f6ttgw5"] + +[ext_resource type="Texture2D" uid="uid://btb0wi0f5n7ql" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png" id="1_a0lyv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy2ht"] +atlas = ExtResource("1_a0lyv") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf385"] +atlas = ExtResource("1_a0lyv") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20va3"] +atlas = ExtResource("1_a0lyv") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fexni"] +atlas = ExtResource("1_a0lyv") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxtc3"] +atlas = ExtResource("1_a0lyv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc0d2"] +atlas = ExtResource("1_a0lyv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdgh6"] +atlas = ExtResource("1_a0lyv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg3ax"] +atlas = ExtResource("1_a0lyv") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p80h2"] +atlas = ExtResource("1_a0lyv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ps4g"] +atlas = ExtResource("1_a0lyv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60oky"] +atlas = ExtResource("1_a0lyv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vab1o"] +atlas = ExtResource("1_a0lyv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbk1s"] +atlas = ExtResource("1_a0lyv") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ycyb"] +atlas = ExtResource("1_a0lyv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qjhi"] +atlas = ExtResource("1_a0lyv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjsx5"] +atlas = ExtResource("1_a0lyv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axfu5"] +atlas = ExtResource("1_a0lyv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_157fa"] +atlas = ExtResource("1_a0lyv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rtyf"] +atlas = ExtResource("1_a0lyv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwvm0"] +atlas = ExtResource("1_a0lyv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0crah"] +atlas = ExtResource("1_a0lyv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l12iv"] +atlas = ExtResource("1_a0lyv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc4hr"] +atlas = ExtResource("1_a0lyv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33iol"] +atlas = ExtResource("1_a0lyv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8qal"] +atlas = ExtResource("1_a0lyv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_131wr"] +atlas = ExtResource("1_a0lyv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi6s7"] +atlas = ExtResource("1_a0lyv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1eyd"] +atlas = ExtResource("1_a0lyv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybryr"] +atlas = ExtResource("1_a0lyv") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baart"] +atlas = ExtResource("1_a0lyv") +region = Rect2(245, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy2ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf385") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20va3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fexni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxtc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc0d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdgh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg3ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p80h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ps4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60oky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vab1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbk1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ycyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qjhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjsx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axfu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_157fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rtyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwvm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0crah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l12iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc4hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33iol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8qal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_131wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi6s7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1eyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybryr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baart") +}], +"loop": true, +"name": &"consumingrebirth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepingtendrils.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepingtendrils.tres new file mode 100644 index 0000000..5e2f3c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepingtendrils.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://d0wh4ix4ecns6"] + +[ext_resource type="Texture2D" uid="uid://dx15cl1fl1pr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png" id="1_il3sk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_01ymo"] +atlas = ExtResource("1_il3sk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heguh"] +atlas = ExtResource("1_il3sk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47aer"] +atlas = ExtResource("1_il3sk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eahom"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgaao"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snwsr"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwgl4"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcp7v"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnohq"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s0ge"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51dtu"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bf81"] +atlas = ExtResource("1_il3sk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y45eb"] +atlas = ExtResource("1_il3sk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow31b"] +atlas = ExtResource("1_il3sk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ris4u"] +atlas = ExtResource("1_il3sk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnbm5"] +atlas = ExtResource("1_il3sk") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01ymo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heguh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47aer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eahom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgaao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snwsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwgl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcp7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnohq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s0ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51dtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bf81") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y45eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow31b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ris4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnbm5") +}], +"loop": true, +"name": &"creepingtendrils", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepmeld.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepmeld.tres new file mode 100644 index 0000000..f1254f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_creepmeld.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://cqstasvr504t4"] + +[ext_resource type="Texture2D" uid="uid://dxqha3qqnb05m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png" id="1_fm4wj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8410"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugv2b"] +atlas = ExtResource("1_fm4wj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n8ud"] +atlas = ExtResource("1_fm4wj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vt2d"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxoe8"] +atlas = ExtResource("1_fm4wj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njn24"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfjd1"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogj7c"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l43ue"] +atlas = ExtResource("1_fm4wj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaapq"] +atlas = ExtResource("1_fm4wj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80csh"] +atlas = ExtResource("1_fm4wj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elnt2"] +atlas = ExtResource("1_fm4wj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5tpm"] +atlas = ExtResource("1_fm4wj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wclk2"] +atlas = ExtResource("1_fm4wj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnx1w"] +atlas = ExtResource("1_fm4wj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk5b5"] +atlas = ExtResource("1_fm4wj") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p2g7"] +atlas = ExtResource("1_fm4wj") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p6h7"] +atlas = ExtResource("1_fm4wj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biwg4"] +atlas = ExtResource("1_fm4wj") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8410") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugv2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n8ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vt2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxoe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njn24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfjd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogj7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l43ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaapq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80csh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elnt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5tpm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wclk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnx1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk5b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p2g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p6h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biwg4") +}], +"loop": true, +"name": &"creepmeld", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofagony.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofagony.tres new file mode 100644 index 0000000..39e5bf7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofagony.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://biqiwmm2vptjq"] + +[ext_resource type="Texture2D" uid="uid://cudlco1i1ivlf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png" id="1_qayt3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wswb1"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdjx3"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyrt6"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o8o2"] +atlas = ExtResource("1_qayt3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf04u"] +atlas = ExtResource("1_qayt3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qylyf"] +atlas = ExtResource("1_qayt3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cosf"] +atlas = ExtResource("1_qayt3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dysxw"] +atlas = ExtResource("1_qayt3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fver"] +atlas = ExtResource("1_qayt3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyokm"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ptyj"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftr4"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hgjn"] +atlas = ExtResource("1_qayt3") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wswb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdjx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyrt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o8o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf04u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qylyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cosf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dysxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fver") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyokm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ptyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hgjn") +}], +"loop": true, +"name": &"curseofagony", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofshadows.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofshadows.tres new file mode 100644 index 0000000..88b9e40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_curseofshadows.tres @@ -0,0 +1,114 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://dgryt3opagp01"] + +[ext_resource type="Texture2D" uid="uid://dv3s5a1vwlnfu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png" id="1_bc5ss"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb10w"] +atlas = ExtResource("1_bc5ss") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyijc"] +atlas = ExtResource("1_bc5ss") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfusl"] +atlas = ExtResource("1_bc5ss") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikr1j"] +atlas = ExtResource("1_bc5ss") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m302c"] +atlas = ExtResource("1_bc5ss") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah3n3"] +atlas = ExtResource("1_bc5ss") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i7vk"] +atlas = ExtResource("1_bc5ss") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cst1r"] +atlas = ExtResource("1_bc5ss") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvx68"] +atlas = ExtResource("1_bc5ss") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghejx"] +atlas = ExtResource("1_bc5ss") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwxo8"] +atlas = ExtResource("1_bc5ss") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhdkd"] +atlas = ExtResource("1_bc5ss") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ho0v"] +atlas = ExtResource("1_bc5ss") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7scol"] +atlas = ExtResource("1_bc5ss") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb10w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyijc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfusl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikr1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m302c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah3n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i7vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cst1r") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvx68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghejx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwxo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhdkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ho0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7scol") +}], +"loop": true, +"name": &"curseofshadows", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_daemoniclure.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_daemoniclure.tres new file mode 100644 index 0000000..34162dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_daemoniclure.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://xqg115fo7s0w"] + +[ext_resource type="Texture2D" uid="uid://bgwpdq3nielyc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png" id="1_r5n7d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew0ud"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nubnt"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cppe3"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50rle"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpqd4"] +atlas = ExtResource("1_r5n7d") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxyat"] +atlas = ExtResource("1_r5n7d") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntbmr"] +atlas = ExtResource("1_r5n7d") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aub7"] +atlas = ExtResource("1_r5n7d") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjkk7"] +atlas = ExtResource("1_r5n7d") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e37m"] +atlas = ExtResource("1_r5n7d") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afmng"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42p20"] +atlas = ExtResource("1_r5n7d") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1mw7"] +atlas = ExtResource("1_r5n7d") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew0ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nubnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cppe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50rle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpqd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxyat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntbmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aub7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjkk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e37m") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_afmng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42p20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1mw7") +}], +"loop": true, +"name": &"daemoniclure", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkfiresacrifice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkfiresacrifice.tres new file mode 100644 index 0000000..ec16fab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkfiresacrifice.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://bepen2sx0lggp"] + +[ext_resource type="Texture2D" uid="uid://b4ysfqbkucilf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png" id="1_dale1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1ehn"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ihyv"] +atlas = ExtResource("1_dale1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idy5n"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51dn7"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsmto"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11wf6"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_newk5"] +atlas = ExtResource("1_dale1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr3qy"] +atlas = ExtResource("1_dale1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ylt0"] +atlas = ExtResource("1_dale1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2a0g"] +atlas = ExtResource("1_dale1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yubed"] +atlas = ExtResource("1_dale1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1yg1"] +atlas = ExtResource("1_dale1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pkfa"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mwqn"] +atlas = ExtResource("1_dale1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqvs1"] +atlas = ExtResource("1_dale1") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1ehn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ihyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idy5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51dn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsmto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11wf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_newk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr3qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ylt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2a0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yubed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1yg1") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pkfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mwqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqvs1") +}], +"loop": true, +"name": &"darkfiresacrifice", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkpersuasion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkpersuasion.tres new file mode 100644 index 0000000..5c7c743 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkpersuasion.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://w23davn75y4"] + +[ext_resource type="Texture2D" uid="uid://cdlfut0f1xfhq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png" id="1_g835n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgjfm"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja0g8"] +atlas = ExtResource("1_g835n") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mojtn"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h4hb"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5dtj"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahs5v"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mbl1"] +atlas = ExtResource("1_g835n") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08j2t"] +atlas = ExtResource("1_g835n") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbsbq"] +atlas = ExtResource("1_g835n") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yonme"] +atlas = ExtResource("1_g835n") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n58vr"] +atlas = ExtResource("1_g835n") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skkba"] +atlas = ExtResource("1_g835n") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ellm5"] +atlas = ExtResource("1_g835n") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gafcs"] +atlas = ExtResource("1_g835n") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwblr"] +atlas = ExtResource("1_g835n") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svi3y"] +atlas = ExtResource("1_g835n") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gfjl"] +atlas = ExtResource("1_g835n") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ju0"] +atlas = ExtResource("1_g835n") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brd3q"] +atlas = ExtResource("1_g835n") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okjjs"] +atlas = ExtResource("1_g835n") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vubv"] +atlas = ExtResource("1_g835n") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4270"] +atlas = ExtResource("1_g835n") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgjfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja0g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mojtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h4hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5dtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahs5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mbl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08j2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbsbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yonme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n58vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skkba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ellm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gafcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwblr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svi3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gfjl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ju0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brd3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okjjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vubv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4270") +}], +"loop": true, +"name": &"darkpersuasion", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkseed.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkseed.tres new file mode 100644 index 0000000..1027fb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darkseed.tres @@ -0,0 +1,100 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://6qkbsq834nj3"] + +[ext_resource type="Texture2D" uid="uid://bc1tdds4elq56" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png" id="1_jihh5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag6ah"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4atr1"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haohy"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3lp7"] +atlas = ExtResource("1_jihh5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvf1l"] +atlas = ExtResource("1_jihh5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcp2f"] +atlas = ExtResource("1_jihh5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqiem"] +atlas = ExtResource("1_jihh5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulyuj"] +atlas = ExtResource("1_jihh5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t8k7"] +atlas = ExtResource("1_jihh5") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytkl"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxt38"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0foav"] +atlas = ExtResource("1_jihh5") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag6ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4atr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haohy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3lp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvf1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcp2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqiem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulyuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t8k7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxt38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0foav") +}], +"loop": true, +"name": &"darkseed", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darktransformation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darktransformation.tres new file mode 100644 index 0000000..8ec4b27 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_darktransformation.tres @@ -0,0 +1,219 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://cr626l1byppij"] + +[ext_resource type="Texture2D" uid="uid://cbns6jw8vai28" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png" id="1_gyeo8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_avyaf"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuwum"] +atlas = ExtResource("1_gyeo8") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfcvk"] +atlas = ExtResource("1_gyeo8") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2uv7"] +atlas = ExtResource("1_gyeo8") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlb0f"] +atlas = ExtResource("1_gyeo8") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxyq5"] +atlas = ExtResource("1_gyeo8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfwwh"] +atlas = ExtResource("1_gyeo8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtfy1"] +atlas = ExtResource("1_gyeo8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xslat"] +atlas = ExtResource("1_gyeo8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxh3"] +atlas = ExtResource("1_gyeo8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msgut"] +atlas = ExtResource("1_gyeo8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaooc"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlyc4"] +atlas = ExtResource("1_gyeo8") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8wpe"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxe8b"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqj4n"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rtjv"] +atlas = ExtResource("1_gyeo8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of6ra"] +atlas = ExtResource("1_gyeo8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oixn"] +atlas = ExtResource("1_gyeo8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1woo"] +atlas = ExtResource("1_gyeo8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jihq"] +atlas = ExtResource("1_gyeo8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc3p6"] +atlas = ExtResource("1_gyeo8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0uwu"] +atlas = ExtResource("1_gyeo8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rswu7"] +atlas = ExtResource("1_gyeo8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t3ye"] +atlas = ExtResource("1_gyeo8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37b3k"] +atlas = ExtResource("1_gyeo8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7spbd"] +atlas = ExtResource("1_gyeo8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsu47"] +atlas = ExtResource("1_gyeo8") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tide"] +atlas = ExtResource("1_gyeo8") +region = Rect2(245, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_avyaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuwum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfcvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2uv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlb0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxyq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfwwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtfy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xslat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msgut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaooc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlyc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8wpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxe8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqj4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rtjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of6ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oixn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1woo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jihq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc3p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0uwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rswu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t3ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37b3k") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7spbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsu47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tide") +}], +"loop": true, +"name": &"darktransformation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathfirecrescendo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathfirecrescendo.tres new file mode 100644 index 0000000..582c1d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathfirecrescendo.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://b7jkdmab1m8xn"] + +[ext_resource type="Texture2D" uid="uid://cs0bd2gmqcpmj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png" id="1_kv2dc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ogst"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wylgg"] +atlas = ExtResource("1_kv2dc") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv0yi"] +atlas = ExtResource("1_kv2dc") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5xhe"] +atlas = ExtResource("1_kv2dc") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e66x"] +atlas = ExtResource("1_kv2dc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa0bx"] +atlas = ExtResource("1_kv2dc") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifids"] +atlas = ExtResource("1_kv2dc") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maai3"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c44rm"] +atlas = ExtResource("1_kv2dc") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgil8"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0hfw"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74pq3"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8ofn"] +atlas = ExtResource("1_kv2dc") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qw0k"] +atlas = ExtResource("1_kv2dc") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lmjh"] +atlas = ExtResource("1_kv2dc") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6kj5"] +atlas = ExtResource("1_kv2dc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27svw"] +atlas = ExtResource("1_kv2dc") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge267"] +atlas = ExtResource("1_kv2dc") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ogst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wylgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv0yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5xhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e66x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa0bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifids") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maai3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c44rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgil8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0hfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74pq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8ofn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qw0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lmjh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6kj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27svw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge267") +}], +"loop": true, +"name": &"deathfirecrescendo", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathplague.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathplague.tres new file mode 100644 index 0000000..89b8c49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_deathplague.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://cy6f8nji1jkaq"] + +[ext_resource type="Texture2D" uid="uid://bpm47arbfjw36" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png" id="1_2raif"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6l3l"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1nv6"] +atlas = ExtResource("1_2raif") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk3dd"] +atlas = ExtResource("1_2raif") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wg4c"] +atlas = ExtResource("1_2raif") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw1yc"] +atlas = ExtResource("1_2raif") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynj7b"] +atlas = ExtResource("1_2raif") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y87s0"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjfk3"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dujf4"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyuyn"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xjsv"] +atlas = ExtResource("1_2raif") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxpsf"] +atlas = ExtResource("1_2raif") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlroo"] +atlas = ExtResource("1_2raif") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8id3d"] +atlas = ExtResource("1_2raif") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv4lk"] +atlas = ExtResource("1_2raif") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph1ec"] +atlas = ExtResource("1_2raif") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmkn3"] +atlas = ExtResource("1_2raif") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c7nt"] +atlas = ExtResource("1_2raif") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iid7o"] +atlas = ExtResource("1_2raif") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yshkl"] +atlas = ExtResource("1_2raif") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6l3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1nv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk3dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wg4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw1yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynj7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y87s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjfk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dujf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyuyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xjsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxpsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlroo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8id3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv4lk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph1ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmkn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c7nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iid7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yshkl") +}], +"loop": true, +"name": &"deathplague", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_doom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_doom.tres new file mode 100644 index 0000000..3f1fd8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_doom.tres @@ -0,0 +1,219 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://bm4nku5qmb2r6"] + +[ext_resource type="Texture2D" uid="uid://ca6ruonvbiswl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png" id="1_f4vnh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbqqs"] +atlas = ExtResource("1_f4vnh") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtdmd"] +atlas = ExtResource("1_f4vnh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n21t"] +atlas = ExtResource("1_f4vnh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx5de"] +atlas = ExtResource("1_f4vnh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bag4s"] +atlas = ExtResource("1_f4vnh") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okgha"] +atlas = ExtResource("1_f4vnh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w2kx"] +atlas = ExtResource("1_f4vnh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cecyh"] +atlas = ExtResource("1_f4vnh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgwxi"] +atlas = ExtResource("1_f4vnh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_128mv"] +atlas = ExtResource("1_f4vnh") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0la6h"] +atlas = ExtResource("1_f4vnh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv30o"] +atlas = ExtResource("1_f4vnh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4slw"] +atlas = ExtResource("1_f4vnh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpdjs"] +atlas = ExtResource("1_f4vnh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hadl"] +atlas = ExtResource("1_f4vnh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sxrm"] +atlas = ExtResource("1_f4vnh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bt4w"] +atlas = ExtResource("1_f4vnh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxlc0"] +atlas = ExtResource("1_f4vnh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiwun"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7tay"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow5x8"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbnrg"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7prib"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhk60"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1fkj"] +atlas = ExtResource("1_f4vnh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50lli"] +atlas = ExtResource("1_f4vnh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_out0l"] +atlas = ExtResource("1_f4vnh") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt1ir"] +atlas = ExtResource("1_f4vnh") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdbjo"] +atlas = ExtResource("1_f4vnh") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbqqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtdmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n21t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx5de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bag4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okgha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w2kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cecyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgwxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_128mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0la6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv30o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4slw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpdjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hadl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sxrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bt4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxlc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiwun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7tay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow5x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbnrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7prib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhk60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1fkj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_50lli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_out0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt1ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdbjo") +}], +"loop": true, +"name": &"doom", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_echoingshriek.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_echoingshriek.tres new file mode 100644 index 0000000..49ff42d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_echoingshriek.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://bfu3vmff5b6s"] + +[ext_resource type="Texture2D" uid="uid://bffnd8fcamq3b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png" id="1_3jevk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aw3v"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw5v8"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tre6b"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkw51"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsycg"] +atlas = ExtResource("1_3jevk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_betn2"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3beh"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ot1b"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exrnw"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ye3q"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf55e"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83mb4"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efbvf"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2brbr"] +atlas = ExtResource("1_3jevk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51dk2"] +atlas = ExtResource("1_3jevk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofbf4"] +atlas = ExtResource("1_3jevk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1uwi"] +atlas = ExtResource("1_3jevk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p42s1"] +atlas = ExtResource("1_3jevk") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aw3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw5v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tre6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkw51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsycg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_betn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3beh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ot1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exrnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ye3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf55e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83mb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efbvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2brbr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_51dk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofbf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1uwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p42s1") +}], +"loop": true, +"name": &"echoingshriek", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_evilxerox.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_evilxerox.tres new file mode 100644 index 0000000..6a74518 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_evilxerox.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://dfjnf5d0j6nka"] + +[ext_resource type="Texture2D" uid="uid://du02og6se3bfh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png" id="1_861ul"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ultg"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1kbj"] +atlas = ExtResource("1_861ul") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0poo"] +atlas = ExtResource("1_861ul") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywe07"] +atlas = ExtResource("1_861ul") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3imde"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl3jm"] +atlas = ExtResource("1_861ul") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42jiy"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m527k"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f716o"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mybg"] +atlas = ExtResource("1_861ul") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu2g0"] +atlas = ExtResource("1_861ul") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5snwy"] +atlas = ExtResource("1_861ul") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr4af"] +atlas = ExtResource("1_861ul") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418v8"] +atlas = ExtResource("1_861ul") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcmxa"] +atlas = ExtResource("1_861ul") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48pq6"] +atlas = ExtResource("1_861ul") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grnci"] +atlas = ExtResource("1_861ul") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34307"] +atlas = ExtResource("1_861ul") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o880"] +atlas = ExtResource("1_861ul") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ultg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1kbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0poo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywe07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3imde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl3jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42jiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m527k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f716o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mybg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu2g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5snwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr4af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_418v8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcmxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48pq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grnci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34307") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o880") +}], +"loop": true, +"name": &"evilxerox", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_gateofovervault.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_gateofovervault.tres new file mode 100644 index 0000000..82d732c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_gateofovervault.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://b40coks3kl7n"] + +[ext_resource type="Texture2D" uid="uid://trrap7ajjje3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png" id="1_cl4po"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e336v"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pmht"] +atlas = ExtResource("1_cl4po") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvlqp"] +atlas = ExtResource("1_cl4po") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn757"] +atlas = ExtResource("1_cl4po") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4bsg"] +atlas = ExtResource("1_cl4po") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlluj"] +atlas = ExtResource("1_cl4po") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y30vi"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhkn8"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lldxb"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f2v4"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao32t"] +atlas = ExtResource("1_cl4po") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg4lu"] +atlas = ExtResource("1_cl4po") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unqs7"] +atlas = ExtResource("1_cl4po") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8qft"] +atlas = ExtResource("1_cl4po") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2enet"] +atlas = ExtResource("1_cl4po") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qsa1"] +atlas = ExtResource("1_cl4po") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arvku"] +atlas = ExtResource("1_cl4po") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqqby"] +atlas = ExtResource("1_cl4po") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgdd2"] +atlas = ExtResource("1_cl4po") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqccu"] +atlas = ExtResource("1_cl4po") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e336v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pmht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvlqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn757") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4bsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y30vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhkn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lldxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f2v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao32t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg4lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unqs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8qft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2enet") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qsa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arvku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqqby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgdd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqccu") +}], +"loop": true, +"name": &"gateofovervault", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inkhorngaze.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inkhorngaze.tres new file mode 100644 index 0000000..8f251a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inkhorngaze.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://5x7gbohkoq2g"] + +[ext_resource type="Texture2D" uid="uid://do5oet2ekwpys" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png" id="1_oa1ki"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq8tf"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unr75"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1s78"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7curq"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptimr"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iknav"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rljhs"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7doaq"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivo70"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqog7"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57dd2"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4td4"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxubq"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q28dy"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4ygf"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d3hr"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc7wv"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fwjy"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_043r6"] +atlas = ExtResource("1_oa1ki") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y44w"] +atlas = ExtResource("1_oa1ki") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luf2j"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4r55"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i08ng"] +atlas = ExtResource("1_oa1ki") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq8tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unr75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1s78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7curq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptimr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iknav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rljhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7doaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivo70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqog7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57dd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4td4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxubq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q28dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4ygf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d3hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc7wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fwjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_043r6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y44w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luf2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4r55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i08ng") +}], +"loop": true, +"name": &"inkhorngaze", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inklingsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inklingsurge.tres new file mode 100644 index 0000000..b91f248 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_inklingsurge.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://cfesx02xow2p6"] + +[ext_resource type="Texture2D" uid="uid://cxspqn7vcwypp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png" id="1_fo3bn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t7eq"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaurt"] +atlas = ExtResource("1_fo3bn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3m6h"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtt6x"] +atlas = ExtResource("1_fo3bn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce2ud"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ixmp"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14idi"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnmde"] +atlas = ExtResource("1_fo3bn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtoll"] +atlas = ExtResource("1_fo3bn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n5yu"] +atlas = ExtResource("1_fo3bn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw112"] +atlas = ExtResource("1_fo3bn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvhm"] +atlas = ExtResource("1_fo3bn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmdb"] +atlas = ExtResource("1_fo3bn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73caj"] +atlas = ExtResource("1_fo3bn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcnpd"] +atlas = ExtResource("1_fo3bn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp4c1"] +atlas = ExtResource("1_fo3bn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s185e"] +atlas = ExtResource("1_fo3bn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laob4"] +atlas = ExtResource("1_fo3bn") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t7eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaurt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3m6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtt6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce2ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ixmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14idi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnmde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtoll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n5yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw112") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvhm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkmdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73caj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcnpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp4c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s185e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laob4") +}], +"loop": true, +"name": &"inklingsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_lurkingfear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_lurkingfear.tres new file mode 100644 index 0000000..9ccdad1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_lurkingfear.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://dobcimmlnpc5i"] + +[ext_resource type="Texture2D" uid="uid://dpyg6olm5ubhl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png" id="1_xbhl6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmt6c"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gso0v"] +atlas = ExtResource("1_xbhl6") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpd3i"] +atlas = ExtResource("1_xbhl6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtllg"] +atlas = ExtResource("1_xbhl6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj16i"] +atlas = ExtResource("1_xbhl6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_labt4"] +atlas = ExtResource("1_xbhl6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63mct"] +atlas = ExtResource("1_xbhl6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kodut"] +atlas = ExtResource("1_xbhl6") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpatb"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68nwx"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beek5"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4uha"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4nv3"] +atlas = ExtResource("1_xbhl6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywdr4"] +atlas = ExtResource("1_xbhl6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmrum"] +atlas = ExtResource("1_xbhl6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bykik"] +atlas = ExtResource("1_xbhl6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl6dh"] +atlas = ExtResource("1_xbhl6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym4rl"] +atlas = ExtResource("1_xbhl6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsho1"] +atlas = ExtResource("1_xbhl6") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm6a0"] +atlas = ExtResource("1_xbhl6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70hei"] +atlas = ExtResource("1_xbhl6") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmt6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gso0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpd3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtllg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj16i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_labt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63mct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kodut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpatb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68nwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beek5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4uha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4nv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywdr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmrum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bykik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl6dh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym4rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsho1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm6a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70hei") +}], +"loop": true, +"name": &"lurkingfear", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_necroticsphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_necroticsphere.tres new file mode 100644 index 0000000..10e936c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_necroticsphere.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://qkbiqs6k1tqp"] + +[ext_resource type="Texture2D" uid="uid://otsk2doei6pa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png" id="1_qa84o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmn5f"] +atlas = ExtResource("1_qa84o") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_548on"] +atlas = ExtResource("1_qa84o") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf8pd"] +atlas = ExtResource("1_qa84o") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8mxk"] +atlas = ExtResource("1_qa84o") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7ko1"] +atlas = ExtResource("1_qa84o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diunh"] +atlas = ExtResource("1_qa84o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtfh2"] +atlas = ExtResource("1_qa84o") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaahy"] +atlas = ExtResource("1_qa84o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3mdi"] +atlas = ExtResource("1_qa84o") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4qju"] +atlas = ExtResource("1_qa84o") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cess"] +atlas = ExtResource("1_qa84o") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvyvy"] +atlas = ExtResource("1_qa84o") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dudw"] +atlas = ExtResource("1_qa84o") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71hr4"] +atlas = ExtResource("1_qa84o") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2afwd"] +atlas = ExtResource("1_qa84o") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxf1d"] +atlas = ExtResource("1_qa84o") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3xby"] +atlas = ExtResource("1_qa84o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_765xy"] +atlas = ExtResource("1_qa84o") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dequc"] +atlas = ExtResource("1_qa84o") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmn5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_548on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf8pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8mxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7ko1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diunh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtfh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaahy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3mdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4qju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cess") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvyvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dudw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71hr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2afwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxf1d") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3xby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_765xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dequc") +}], +"loop": true, +"name": &"necroticsphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_nethersummoning.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_nethersummoning.tres new file mode 100644 index 0000000..19ae5b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_nethersummoning.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://ckhc1jstk2gkc"] + +[ext_resource type="Texture2D" uid="uid://hcqp07edi10r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png" id="1_00vqe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3w67"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6st5"] +atlas = ExtResource("1_00vqe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gytmk"] +atlas = ExtResource("1_00vqe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixgek"] +atlas = ExtResource("1_00vqe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbjb3"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odh1f"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhw46"] +atlas = ExtResource("1_00vqe") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brksx"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_begt1"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnwfy"] +atlas = ExtResource("1_00vqe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n83qu"] +atlas = ExtResource("1_00vqe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35xei"] +atlas = ExtResource("1_00vqe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50xqb"] +atlas = ExtResource("1_00vqe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gygu3"] +atlas = ExtResource("1_00vqe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytw2o"] +atlas = ExtResource("1_00vqe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atvrr"] +atlas = ExtResource("1_00vqe") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ta0"] +atlas = ExtResource("1_00vqe") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3w67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6st5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gytmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixgek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbjb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odh1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhw46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brksx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_begt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnwfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n83qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35xei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50xqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gygu3") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytw2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atvrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ta0") +}], +"loop": true, +"name": &"nethersummoning", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_perilousfooting.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_perilousfooting.tres new file mode 100644 index 0000000..e9aedc6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_perilousfooting.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://cedtbvok6dlxs"] + +[ext_resource type="Texture2D" uid="uid://doctbsnogvd0x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png" id="1_v8jnn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0e3m"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvalg"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asi55"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsusw"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5qg2"] +atlas = ExtResource("1_v8jnn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg206"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb3nm"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b72g7"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu72a"] +atlas = ExtResource("1_v8jnn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf7bf"] +atlas = ExtResource("1_v8jnn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o0b0"] +atlas = ExtResource("1_v8jnn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn38x"] +atlas = ExtResource("1_v8jnn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs6fw"] +atlas = ExtResource("1_v8jnn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ek5g"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0q7l"] +atlas = ExtResource("1_v8jnn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgbo7"] +atlas = ExtResource("1_v8jnn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t2ei"] +atlas = ExtResource("1_v8jnn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oxbr"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elql8"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2fps"] +atlas = ExtResource("1_v8jnn") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0e3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvalg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asi55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsusw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5qg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg206") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb3nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b72g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu72a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf7bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o0b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn38x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs6fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ek5g") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0q7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgbo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t2ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oxbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elql8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2fps") +}], +"loop": true, +"name": &"perilousfooting", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_punish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_punish.tres new file mode 100644 index 0000000..63b8e52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_punish.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://5xgo1snom2xf"] + +[ext_resource type="Texture2D" uid="uid://bf2era6c8ultr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png" id="1_73l2c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjall"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdtfb"] +atlas = ExtResource("1_73l2c") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so8pq"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w80gp"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_004jj"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iprft"] +atlas = ExtResource("1_73l2c") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwql1"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrwn3"] +atlas = ExtResource("1_73l2c") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6wes"] +atlas = ExtResource("1_73l2c") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2eng"] +atlas = ExtResource("1_73l2c") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f243s"] +atlas = ExtResource("1_73l2c") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuhnq"] +atlas = ExtResource("1_73l2c") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ada70"] +atlas = ExtResource("1_73l2c") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l1fs"] +atlas = ExtResource("1_73l2c") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxwll"] +atlas = ExtResource("1_73l2c") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjall") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdtfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so8pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w80gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_004jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iprft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwql1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrwn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6wes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2eng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f243s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuhnq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ada70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l1fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxwll") +}], +"loop": true, +"name": &"punish", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_riteoftheundervault.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_riteoftheundervault.tres new file mode 100644 index 0000000..2ba9acb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_riteoftheundervault.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://24anf0ivvyfa"] + +[ext_resource type="Texture2D" uid="uid://bniybbyqjuc8j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png" id="1_rtg1r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_akqwd"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppu0b"] +atlas = ExtResource("1_rtg1r") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxhfa"] +atlas = ExtResource("1_rtg1r") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy7ja"] +atlas = ExtResource("1_rtg1r") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sunx"] +atlas = ExtResource("1_rtg1r") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiu1a"] +atlas = ExtResource("1_rtg1r") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llgrq"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncmbu"] +atlas = ExtResource("1_rtg1r") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlq4d"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_061bp"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofnyj"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbrt6"] +atlas = ExtResource("1_rtg1r") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he8ph"] +atlas = ExtResource("1_rtg1r") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_707w8"] +atlas = ExtResource("1_rtg1r") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ho0"] +atlas = ExtResource("1_rtg1r") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyvm8"] +atlas = ExtResource("1_rtg1r") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_551wn"] +atlas = ExtResource("1_rtg1r") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wbbr"] +atlas = ExtResource("1_rtg1r") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6clw"] +atlas = ExtResource("1_rtg1r") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_akqwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppu0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxhfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy7ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sunx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiu1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llgrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncmbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlq4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_061bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofnyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbrt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he8ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_707w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ho0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyvm8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_551wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wbbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6clw") +}], +"loop": true, +"name": &"riteoftheundervault", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_ritualbanishing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_ritualbanishing.tres new file mode 100644 index 0000000..2be2264 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_ritualbanishing.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://tchqa5mq7dfu"] + +[ext_resource type="Texture2D" uid="uid://cl0gogo1w35y3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png" id="1_rvjf6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpuok"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gom61"] +atlas = ExtResource("1_rvjf6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgb5l"] +atlas = ExtResource("1_rvjf6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drnqp"] +atlas = ExtResource("1_rvjf6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh8qv"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bh04"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj1yl"] +atlas = ExtResource("1_rvjf6") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_708ck"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7bvt"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmaal"] +atlas = ExtResource("1_rvjf6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7tew"] +atlas = ExtResource("1_rvjf6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvg5l"] +atlas = ExtResource("1_rvjf6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qc06"] +atlas = ExtResource("1_rvjf6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m45a"] +atlas = ExtResource("1_rvjf6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jwiv"] +atlas = ExtResource("1_rvjf6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b84l"] +atlas = ExtResource("1_rvjf6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej7mw"] +atlas = ExtResource("1_rvjf6") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpuok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gom61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgb5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drnqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh8qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bh04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj1yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_708ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7bvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmaal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7tew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvg5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qc06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m45a") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jwiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b84l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej7mw") +}], +"loop": true, +"name": &"ritualbanishing", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadownova.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadownova.tres new file mode 100644 index 0000000..8ba218f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadownova.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://cjwyh55ro6f5i"] + +[ext_resource type="Texture2D" uid="uid://clpyowa6wyydo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png" id="1_n1n0f"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_127bj"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hu0q"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5id1x"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8x5w"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6vcm"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6c4l"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuhbm"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmafo"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4xfo"] +atlas = ExtResource("1_n1n0f") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxs7t"] +atlas = ExtResource("1_n1n0f") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e66f"] +atlas = ExtResource("1_n1n0f") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gkcj"] +atlas = ExtResource("1_n1n0f") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmn28"] +atlas = ExtResource("1_n1n0f") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_572lq"] +atlas = ExtResource("1_n1n0f") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v00p"] +atlas = ExtResource("1_n1n0f") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbg5q"] +atlas = ExtResource("1_n1n0f") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc8sf"] +atlas = ExtResource("1_n1n0f") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1q0w"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b11vr"] +atlas = ExtResource("1_n1n0f") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhlpn"] +atlas = ExtResource("1_n1n0f") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77ybp"] +atlas = ExtResource("1_n1n0f") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ketfm"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_comqp"] +atlas = ExtResource("1_n1n0f") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_127bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hu0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5id1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8x5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6vcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6c4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuhbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmafo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4xfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxs7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e66f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gkcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmn28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_572lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v00p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbg5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc8sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1q0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b11vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhlpn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77ybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ketfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_comqp") +}], +"loop": true, +"name": &"shadownova", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowreflection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowreflection.tres new file mode 100644 index 0000000..7bf9b3e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowreflection.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://b5rrglyfxnff6"] + +[ext_resource type="Texture2D" uid="uid://cn6jqpbg2hl56" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png" id="1_in1e4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rhtm"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1igl"] +atlas = ExtResource("1_in1e4") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qjyh"] +atlas = ExtResource("1_in1e4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twl11"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voqoj"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpcdy"] +atlas = ExtResource("1_in1e4") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pip5k"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kad72"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oebyf"] +atlas = ExtResource("1_in1e4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpcni"] +atlas = ExtResource("1_in1e4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_borqp"] +atlas = ExtResource("1_in1e4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emvao"] +atlas = ExtResource("1_in1e4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhrmf"] +atlas = ExtResource("1_in1e4") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dov8k"] +atlas = ExtResource("1_in1e4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3rs0"] +atlas = ExtResource("1_in1e4") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y30da"] +atlas = ExtResource("1_in1e4") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rhtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1igl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qjyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twl11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voqoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpcdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pip5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kad72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oebyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpcni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_borqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emvao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhrmf") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dov8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3rs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y30da") +}], +"loop": true, +"name": &"shadowreflection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowstalk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowstalk.tres new file mode 100644 index 0000000..c1cb529 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_shadowstalk.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://dxgmkdp26kuu0"] + +[ext_resource type="Texture2D" uid="uid://dvg7w6ufwl4e2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png" id="1_wup1p"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1xkd"] +atlas = ExtResource("1_wup1p") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uv34"] +atlas = ExtResource("1_wup1p") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7isfq"] +atlas = ExtResource("1_wup1p") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntxud"] +atlas = ExtResource("1_wup1p") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc50b"] +atlas = ExtResource("1_wup1p") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l03oq"] +atlas = ExtResource("1_wup1p") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am54n"] +atlas = ExtResource("1_wup1p") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1onpl"] +atlas = ExtResource("1_wup1p") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skaw0"] +atlas = ExtResource("1_wup1p") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0joq"] +atlas = ExtResource("1_wup1p") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ujb"] +atlas = ExtResource("1_wup1p") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpf5a"] +atlas = ExtResource("1_wup1p") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dlvm"] +atlas = ExtResource("1_wup1p") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67wet"] +atlas = ExtResource("1_wup1p") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwdtk"] +atlas = ExtResource("1_wup1p") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e866q"] +atlas = ExtResource("1_wup1p") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac8qq"] +atlas = ExtResource("1_wup1p") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlb6k"] +atlas = ExtResource("1_wup1p") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30pwj"] +atlas = ExtResource("1_wup1p") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tevee"] +atlas = ExtResource("1_wup1p") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1uvy"] +atlas = ExtResource("1_wup1p") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b72qj"] +atlas = ExtResource("1_wup1p") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpfdv"] +atlas = ExtResource("1_wup1p") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5h1h"] +atlas = ExtResource("1_wup1p") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v87uq"] +atlas = ExtResource("1_wup1p") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1xkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uv34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7isfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntxud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc50b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l03oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am54n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1onpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skaw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0joq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ujb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpf5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dlvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67wet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwdtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e866q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac8qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlb6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30pwj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tevee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1uvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b72qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpfdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5h1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v87uq") +}], +"loop": true, +"name": &"shadowstalk", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sickem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sickem.tres new file mode 100644 index 0000000..7641bbc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sickem.tres @@ -0,0 +1,114 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://cc5u88c8cxboe"] + +[ext_resource type="Texture2D" uid="uid://cgh8646is5iem" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png" id="1_ayo4t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl2kv"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad6vv"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdbx1"] +atlas = ExtResource("1_ayo4t") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm0qj"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r7ce"] +atlas = ExtResource("1_ayo4t") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsodb"] +atlas = ExtResource("1_ayo4t") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ifei"] +atlas = ExtResource("1_ayo4t") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vd4n"] +atlas = ExtResource("1_ayo4t") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtb2"] +atlas = ExtResource("1_ayo4t") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oei16"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toic3"] +atlas = ExtResource("1_ayo4t") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shn53"] +atlas = ExtResource("1_ayo4t") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iygq4"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reca2"] +atlas = ExtResource("1_ayo4t") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl2kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad6vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdbx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm0qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r7ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsodb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ifei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vd4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtb2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oei16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toic3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shn53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iygq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reca2") +}], +"loop": true, +"name": &"sickem", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulclamp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulclamp.tres new file mode 100644 index 0000000..69f8b8f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulclamp.tres @@ -0,0 +1,121 @@ +[gd_resource type="SpriteFrames" load_steps=17 format=3 uid="uid://dpotsulo1fclt"] + +[ext_resource type="Texture2D" uid="uid://l51ify71sl8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png" id="1_yrdbc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qle28"] +atlas = ExtResource("1_yrdbc") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghlsh"] +atlas = ExtResource("1_yrdbc") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dam4"] +atlas = ExtResource("1_yrdbc") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pks1n"] +atlas = ExtResource("1_yrdbc") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bomid"] +atlas = ExtResource("1_yrdbc") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrctm"] +atlas = ExtResource("1_yrdbc") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1khbl"] +atlas = ExtResource("1_yrdbc") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xyk2"] +atlas = ExtResource("1_yrdbc") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyssp"] +atlas = ExtResource("1_yrdbc") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j7o4"] +atlas = ExtResource("1_yrdbc") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1m3o"] +atlas = ExtResource("1_yrdbc") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbf6e"] +atlas = ExtResource("1_yrdbc") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaweg"] +atlas = ExtResource("1_yrdbc") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21kqa"] +atlas = ExtResource("1_yrdbc") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ichvi"] +atlas = ExtResource("1_yrdbc") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qle28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghlsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dam4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pks1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bomid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrctm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1khbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xyk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyssp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j7o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1m3o") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbf6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaweg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21kqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ichvi") +}], +"loop": true, +"name": &"soulclamp", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulshatterpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulshatterpact.tres new file mode 100644 index 0000000..b4dfa37 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_soulshatterpact.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://heacl1phxd8l"] + +[ext_resource type="Texture2D" uid="uid://myb3qjfhjsby" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png" id="1_nigq0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_akv3i"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y61r4"] +atlas = ExtResource("1_nigq0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0dkg"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcgyu"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq80t"] +atlas = ExtResource("1_nigq0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfpyi"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2l6g"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0ba0"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fq40"] +atlas = ExtResource("1_nigq0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1yws"] +atlas = ExtResource("1_nigq0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnnid"] +atlas = ExtResource("1_nigq0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq4w1"] +atlas = ExtResource("1_nigq0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp2wp"] +atlas = ExtResource("1_nigq0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5qjk"] +atlas = ExtResource("1_nigq0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0d3m"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8v1s"] +atlas = ExtResource("1_nigq0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkqjy"] +atlas = ExtResource("1_nigq0") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_akv3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y61r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0dkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcgyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq80t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfpyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2l6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0ba0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fq40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1yws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnnid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq4w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp2wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5qjk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0d3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8v1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkqjy") +}], +"loop": true, +"name": &"soulshatterpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sphereofdarkness.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sphereofdarkness.tres new file mode 100644 index 0000000..37a374f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_sphereofdarkness.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://bejxrgclivj8d"] + +[ext_resource type="Texture2D" uid="uid://dhstpfci7jyar" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png" id="1_twngn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0252l"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5osmk"] +atlas = ExtResource("1_twngn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjvu5"] +atlas = ExtResource("1_twngn") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0qq8"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvaoy"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx1c3"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpety"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyfjo"] +atlas = ExtResource("1_twngn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yof5h"] +atlas = ExtResource("1_twngn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n1ia"] +atlas = ExtResource("1_twngn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6px7"] +atlas = ExtResource("1_twngn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sly7e"] +atlas = ExtResource("1_twngn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nfit"] +atlas = ExtResource("1_twngn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbbhi"] +atlas = ExtResource("1_twngn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pou8"] +atlas = ExtResource("1_twngn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msk5e"] +atlas = ExtResource("1_twngn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bncar"] +atlas = ExtResource("1_twngn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xbmh"] +atlas = ExtResource("1_twngn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7tdc"] +atlas = ExtResource("1_twngn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4for"] +atlas = ExtResource("1_twngn") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0252l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5osmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjvu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0qq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvaoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx1c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpety") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyfjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yof5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n1ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6px7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sly7e") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nfit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbbhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pou8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msk5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bncar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xbmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7tdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4for") +}], +"loop": true, +"name": &"sphereofdarkness", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spiritguardian.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spiritguardian.tres new file mode 100644 index 0000000..c5d425d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spiritguardian.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://bcrxvdblbw4oi"] + +[ext_resource type="Texture2D" uid="uid://c7biupp4y6i8j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png" id="1_0yhjb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbm3v"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vya8g"] +atlas = ExtResource("1_0yhjb") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy6gv"] +atlas = ExtResource("1_0yhjb") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdwee"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27q6f"] +atlas = ExtResource("1_0yhjb") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muwpj"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xaox"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gndme"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdfe8"] +atlas = ExtResource("1_0yhjb") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br1qf"] +atlas = ExtResource("1_0yhjb") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrbjw"] +atlas = ExtResource("1_0yhjb") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv3am"] +atlas = ExtResource("1_0yhjb") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icsay"] +atlas = ExtResource("1_0yhjb") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4s1h"] +atlas = ExtResource("1_0yhjb") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq2fg"] +atlas = ExtResource("1_0yhjb") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb5os"] +atlas = ExtResource("1_0yhjb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svgsg"] +atlas = ExtResource("1_0yhjb") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8obn"] +atlas = ExtResource("1_0yhjb") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbm3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vya8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdwee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27q6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muwpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xaox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gndme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdfe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br1qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrbjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv3am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icsay") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4s1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq2fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb5os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svgsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8obn") +}], +"loop": true, +"name": &"spiritguardian", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spookem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spookem.tres new file mode 100644 index 0000000..e617266 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_spookem.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://chsk4iu5bbwcm"] + +[ext_resource type="Texture2D" uid="uid://nutywg0nwrpq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png" id="1_ts23x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms787"] +atlas = ExtResource("1_ts23x") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8fov"] +atlas = ExtResource("1_ts23x") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci5e2"] +atlas = ExtResource("1_ts23x") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjnel"] +atlas = ExtResource("1_ts23x") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoftq"] +atlas = ExtResource("1_ts23x") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpvsw"] +atlas = ExtResource("1_ts23x") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve4et"] +atlas = ExtResource("1_ts23x") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bu1l"] +atlas = ExtResource("1_ts23x") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu206"] +atlas = ExtResource("1_ts23x") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogcig"] +atlas = ExtResource("1_ts23x") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqdwv"] +atlas = ExtResource("1_ts23x") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5eio"] +atlas = ExtResource("1_ts23x") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd3pv"] +atlas = ExtResource("1_ts23x") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnjwr"] +atlas = ExtResource("1_ts23x") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn4kq"] +atlas = ExtResource("1_ts23x") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tc4p"] +atlas = ExtResource("1_ts23x") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk3cu"] +atlas = ExtResource("1_ts23x") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b76pg"] +atlas = ExtResource("1_ts23x") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iagsj"] +atlas = ExtResource("1_ts23x") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_einsi"] +atlas = ExtResource("1_ts23x") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3oba"] +atlas = ExtResource("1_ts23x") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orc0o"] +atlas = ExtResource("1_ts23x") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oehqq"] +atlas = ExtResource("1_ts23x") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_067m5"] +atlas = ExtResource("1_ts23x") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ha4n"] +atlas = ExtResource("1_ts23x") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms787") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8fov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci5e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjnel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoftq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpvsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve4et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bu1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu206") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogcig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqdwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5eio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd3pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnjwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn4kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tc4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk3cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b76pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iagsj") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_einsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3oba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orc0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oehqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_067m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ha4n") +}], +"loop": true, +"name": &"spookem", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_tickletendril.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_tickletendril.tres new file mode 100644 index 0000000..b20c255 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_tickletendril.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://c2sunti5aoapk"] + +[ext_resource type="Texture2D" uid="uid://b84vhx80adud0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png" id="1_00tt2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv585"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2emdb"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6bma"] +atlas = ExtResource("1_00tt2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq4dm"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja6pj"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ed5"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8niqf"] +atlas = ExtResource("1_00tt2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq1l7"] +atlas = ExtResource("1_00tt2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otknd"] +atlas = ExtResource("1_00tt2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryrtm"] +atlas = ExtResource("1_00tt2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70f8m"] +atlas = ExtResource("1_00tt2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blisy"] +atlas = ExtResource("1_00tt2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2378"] +atlas = ExtResource("1_00tt2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n45oe"] +atlas = ExtResource("1_00tt2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etpm3"] +atlas = ExtResource("1_00tt2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8521a"] +atlas = ExtResource("1_00tt2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38u47"] +atlas = ExtResource("1_00tt2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_migid"] +atlas = ExtResource("1_00tt2") +region = Rect2(98, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv585") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2emdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6bma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq4dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja6pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ed5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8niqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq1l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otknd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryrtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70f8m") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blisy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2378") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n45oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etpm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8521a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38u47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_migid") +}], +"loop": true, +"name": &"tickletendril", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_veilofunraveling.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_veilofunraveling.tres new file mode 100644 index 0000000..f1be000 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_veilofunraveling.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://b4uwwds68sqyt"] + +[ext_resource type="Texture2D" uid="uid://bifeixvd6ipci" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png" id="1_hm1k6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbqw1"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qx4h"] +atlas = ExtResource("1_hm1k6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73q73"] +atlas = ExtResource("1_hm1k6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1xx4"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bun7o"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05xh6"] +atlas = ExtResource("1_hm1k6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akknm"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obw8p"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e07nw"] +atlas = ExtResource("1_hm1k6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67gyq"] +atlas = ExtResource("1_hm1k6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7phd"] +atlas = ExtResource("1_hm1k6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2d6k"] +atlas = ExtResource("1_hm1k6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70jma"] +atlas = ExtResource("1_hm1k6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kce64"] +atlas = ExtResource("1_hm1k6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2rle"] +atlas = ExtResource("1_hm1k6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff6jj"] +atlas = ExtResource("1_hm1k6") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbqw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qx4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73q73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1xx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bun7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05xh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akknm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obw8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e07nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67gyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7phd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2d6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70jma") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kce64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2rle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff6jj") +}], +"loop": true, +"name": &"veilofunraveling", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidpulse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidpulse.tres new file mode 100644 index 0000000..fbe39f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidpulse.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://tjhj16e3b0of"] + +[ext_resource type="Texture2D" uid="uid://80hw2ovud7dr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png" id="1_nqnvn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhmks"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncdpp"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu3ou"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdjtc"] +atlas = ExtResource("1_nqnvn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgo8k"] +atlas = ExtResource("1_nqnvn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or63s"] +atlas = ExtResource("1_nqnvn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7thg"] +atlas = ExtResource("1_nqnvn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7byq"] +atlas = ExtResource("1_nqnvn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y318q"] +atlas = ExtResource("1_nqnvn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu0jb"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvlmn"] +atlas = ExtResource("1_nqnvn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umd36"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54854"] +atlas = ExtResource("1_nqnvn") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhmks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncdpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu3ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdjtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgo8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or63s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7thg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7byq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y318q") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu0jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvlmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umd36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54854") +}], +"loop": true, +"name": &"voidpulse", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidsteal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidsteal.tres new file mode 100644 index 0000000..d6b3daf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_voidsteal.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://n42dju3ryfae"] + +[ext_resource type="Texture2D" uid="uid://5vp5h5ge2mo5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png" id="1_qqevw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkkkt"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp1cv"] +atlas = ExtResource("1_qqevw") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4pyy"] +atlas = ExtResource("1_qqevw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr30b"] +atlas = ExtResource("1_qqevw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x5qx"] +atlas = ExtResource("1_qqevw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kaif"] +atlas = ExtResource("1_qqevw") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qdq5"] +atlas = ExtResource("1_qqevw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p737"] +atlas = ExtResource("1_qqevw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrkh8"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhwcs"] +atlas = ExtResource("1_qqevw") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifp2u"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dk3c"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1bo4"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko221"] +atlas = ExtResource("1_qqevw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rdca"] +atlas = ExtResource("1_qqevw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncdde"] +atlas = ExtResource("1_qqevw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kst26"] +atlas = ExtResource("1_qqevw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmvfs"] +atlas = ExtResource("1_qqevw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrxw0"] +atlas = ExtResource("1_qqevw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xf1f"] +atlas = ExtResource("1_qqevw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pl6d"] +atlas = ExtResource("1_qqevw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j8bi"] +atlas = ExtResource("1_qqevw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ibvq"] +atlas = ExtResource("1_qqevw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8vc6"] +atlas = ExtResource("1_qqevw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25hwv"] +atlas = ExtResource("1_qqevw") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcuy8"] +atlas = ExtResource("1_qqevw") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vbkd"] +atlas = ExtResource("1_qqevw") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pncc"] +atlas = ExtResource("1_qqevw") +region = Rect2(196, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkkkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp1cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4pyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr30b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x5qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kaif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qdq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p737") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrkh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhwcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifp2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dk3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1bo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko221") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rdca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncdde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kst26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmvfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrxw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xf1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pl6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j8bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ibvq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8vc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25hwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcuy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vbkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pncc") +}], +"loop": true, +"name": &"voidsteal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingfury.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingfury.tres new file mode 100644 index 0000000..f301744 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingfury.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://qts8g6salop0"] + +[ext_resource type="Texture2D" uid="uid://bykwdaw8yymq1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png" id="1_nktdu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy0sb"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpwxu"] +atlas = ExtResource("1_nktdu") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfqho"] +atlas = ExtResource("1_nktdu") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2vet"] +atlas = ExtResource("1_nktdu") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvsyc"] +atlas = ExtResource("1_nktdu") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s04j"] +atlas = ExtResource("1_nktdu") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv6gi"] +atlas = ExtResource("1_nktdu") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk1je"] +atlas = ExtResource("1_nktdu") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a83no"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4avm"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ujh"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih7rx"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui210"] +atlas = ExtResource("1_nktdu") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq3n0"] +atlas = ExtResource("1_nktdu") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw5bj"] +atlas = ExtResource("1_nktdu") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7vb8"] +atlas = ExtResource("1_nktdu") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb37f"] +atlas = ExtResource("1_nktdu") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfh0d"] +atlas = ExtResource("1_nktdu") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc5jl"] +atlas = ExtResource("1_nktdu") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux25i"] +atlas = ExtResource("1_nktdu") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy0sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpwxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfqho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2vet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvsyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s04j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv6gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk1je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a83no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4avm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ujh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih7rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui210") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq3n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw5bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7vb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb37f") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfh0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc5jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux25i") +}], +"loop": true, +"name": &"wraithlingfury", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingswarm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingswarm.tres new file mode 100644 index 0000000..d1adcee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f4_wraithlingswarm.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://c5rlnufj030ni"] + +[ext_resource type="Texture2D" uid="uid://c1mtix0jdw4qb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png" id="1_qwihu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7qd7"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojkr0"] +atlas = ExtResource("1_qwihu") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ophgu"] +atlas = ExtResource("1_qwihu") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2e50"] +atlas = ExtResource("1_qwihu") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu5n6"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak1el"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5ghn"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bgu3"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh14q"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftsfe"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8acmk"] +atlas = ExtResource("1_qwihu") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axkqj"] +atlas = ExtResource("1_qwihu") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpi64"] +atlas = ExtResource("1_qwihu") +region = Rect2(49, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7qd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojkr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ophgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2e50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu5n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak1el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5ghn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bgu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh14q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftsfe") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8acmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axkqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpi64") +}], +"loop": true, +"name": &"wraithlingswarm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_amplification.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_amplification.tres new file mode 100644 index 0000000..9e8144e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_amplification.tres @@ -0,0 +1,205 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://cyyqyxt6nwnql"] + +[ext_resource type="Texture2D" uid="uid://b4tek2noifsnm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png" id="1_oepnu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5fia"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs3sg"] +atlas = ExtResource("1_oepnu") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pewk5"] +atlas = ExtResource("1_oepnu") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp5bx"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swtwk"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io7iv"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5nka"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tggrj"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mdgx"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04iy7"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vno4q"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82jmx"] +atlas = ExtResource("1_oepnu") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqaxq"] +atlas = ExtResource("1_oepnu") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2bva"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv0cl"] +atlas = ExtResource("1_oepnu") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkfvn"] +atlas = ExtResource("1_oepnu") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkqs6"] +atlas = ExtResource("1_oepnu") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1p7g"] +atlas = ExtResource("1_oepnu") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixk80"] +atlas = ExtResource("1_oepnu") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu15o"] +atlas = ExtResource("1_oepnu") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iirbs"] +atlas = ExtResource("1_oepnu") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdgvb"] +atlas = ExtResource("1_oepnu") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8mqm"] +atlas = ExtResource("1_oepnu") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6bm2"] +atlas = ExtResource("1_oepnu") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn8im"] +atlas = ExtResource("1_oepnu") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ytrs"] +atlas = ExtResource("1_oepnu") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6lp4"] +atlas = ExtResource("1_oepnu") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5fia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs3sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pewk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp5bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swtwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io7iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5nka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tggrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mdgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04iy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vno4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82jmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqaxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2bva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv0cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkfvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkqs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1p7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixk80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu15o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iirbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdgvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8mqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6bm2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn8im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ytrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6lp4") +}], +"loop": true, +"name": &"amplification", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bigtime.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bigtime.tres new file mode 100644 index 0000000..7a6b160 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bigtime.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://btcgh0y7s37wv"] + +[ext_resource type="Texture2D" uid="uid://cb7lvtojlq60j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png" id="1_bf3ln"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vplce"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyqf7"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee3n0"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb3l5"] +atlas = ExtResource("1_bf3ln") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd4pf"] +atlas = ExtResource("1_bf3ln") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33fx3"] +atlas = ExtResource("1_bf3ln") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rm8l"] +atlas = ExtResource("1_bf3ln") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fobvj"] +atlas = ExtResource("1_bf3ln") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0wcy"] +atlas = ExtResource("1_bf3ln") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50dx3"] +atlas = ExtResource("1_bf3ln") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6df5"] +atlas = ExtResource("1_bf3ln") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpotd"] +atlas = ExtResource("1_bf3ln") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj46s"] +atlas = ExtResource("1_bf3ln") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca7rb"] +atlas = ExtResource("1_bf3ln") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g6nt"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bron1"] +atlas = ExtResource("1_bf3ln") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phtlp"] +atlas = ExtResource("1_bf3ln") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2e3x"] +atlas = ExtResource("1_bf3ln") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yncsv"] +atlas = ExtResource("1_bf3ln") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jurj0"] +atlas = ExtResource("1_bf3ln") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0n6h"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe0v6"] +atlas = ExtResource("1_bf3ln") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vplce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyqf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee3n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb3l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd4pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33fx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rm8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fobvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0wcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50dx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6df5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpotd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj46s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca7rb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g6nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bron1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phtlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2e3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yncsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jurj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0n6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe0v6") +}], +"loop": true, +"name": &"bigtime", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bloodrage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bloodrage.tres new file mode 100644 index 0000000..d09559c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_bloodrage.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://1s46hnqpj7f"] + +[ext_resource type="Texture2D" uid="uid://lum6ilw1muwx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png" id="1_hnkta"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_clbti"] +atlas = ExtResource("1_hnkta") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36oap"] +atlas = ExtResource("1_hnkta") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fwvc"] +atlas = ExtResource("1_hnkta") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjrmg"] +atlas = ExtResource("1_hnkta") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlhc4"] +atlas = ExtResource("1_hnkta") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1xv1"] +atlas = ExtResource("1_hnkta") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37sqe"] +atlas = ExtResource("1_hnkta") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpvcj"] +atlas = ExtResource("1_hnkta") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhhq8"] +atlas = ExtResource("1_hnkta") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2b8g"] +atlas = ExtResource("1_hnkta") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7727g"] +atlas = ExtResource("1_hnkta") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0djs"] +atlas = ExtResource("1_hnkta") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgcsr"] +atlas = ExtResource("1_hnkta") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp08n"] +atlas = ExtResource("1_hnkta") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsb15"] +atlas = ExtResource("1_hnkta") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klfyw"] +atlas = ExtResource("1_hnkta") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2mib"] +atlas = ExtResource("1_hnkta") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02egh"] +atlas = ExtResource("1_hnkta") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt0oa"] +atlas = ExtResource("1_hnkta") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r4fr"] +atlas = ExtResource("1_hnkta") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n552"] +atlas = ExtResource("1_hnkta") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2owqq"] +atlas = ExtResource("1_hnkta") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0ay4"] +atlas = ExtResource("1_hnkta") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_clbti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36oap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fwvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjrmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlhc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1xv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37sqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpvcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhhq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2b8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7727g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0djs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgcsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp08n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsb15") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_klfyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2mib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02egh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt0oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r4fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n552") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2owqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0ay4") +}], +"loop": true, +"name": &"bloodrage", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_boundedlifeforce.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_boundedlifeforce.tres new file mode 100644 index 0000000..532c0fe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_boundedlifeforce.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://bkwa4qvm7vk6s"] + +[ext_resource type="Texture2D" uid="uid://du65bwos1iff1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png" id="1_vjp2g"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_svv1g"] +atlas = ExtResource("1_vjp2g") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xyv4"] +atlas = ExtResource("1_vjp2g") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qsqd"] +atlas = ExtResource("1_vjp2g") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiqq2"] +atlas = ExtResource("1_vjp2g") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3je3i"] +atlas = ExtResource("1_vjp2g") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l44od"] +atlas = ExtResource("1_vjp2g") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbbjn"] +atlas = ExtResource("1_vjp2g") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmq65"] +atlas = ExtResource("1_vjp2g") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dwug"] +atlas = ExtResource("1_vjp2g") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha0m3"] +atlas = ExtResource("1_vjp2g") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfm4m"] +atlas = ExtResource("1_vjp2g") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_svv1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xyv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qsqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiqq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3je3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l44od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbbjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmq65") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dwug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha0m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfm4m") +}], +"loop": true, +"name": &"boundedlifeforce", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_cascadingrebirth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_cascadingrebirth.tres new file mode 100644 index 0000000..fad8e77 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_cascadingrebirth.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://ibb6g2b8wqfq"] + +[ext_resource type="Texture2D" uid="uid://bqbgb7e84xmpg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png" id="1_hn4vk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovpat"] +atlas = ExtResource("1_hn4vk") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8oml"] +atlas = ExtResource("1_hn4vk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrjvd"] +atlas = ExtResource("1_hn4vk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlawt"] +atlas = ExtResource("1_hn4vk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvva4"] +atlas = ExtResource("1_hn4vk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r575s"] +atlas = ExtResource("1_hn4vk") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d5cb"] +atlas = ExtResource("1_hn4vk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goyb5"] +atlas = ExtResource("1_hn4vk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqxpm"] +atlas = ExtResource("1_hn4vk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlnu7"] +atlas = ExtResource("1_hn4vk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdqgt"] +atlas = ExtResource("1_hn4vk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlvfq"] +atlas = ExtResource("1_hn4vk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtgk0"] +atlas = ExtResource("1_hn4vk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fxeb"] +atlas = ExtResource("1_hn4vk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axajn"] +atlas = ExtResource("1_hn4vk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbhys"] +atlas = ExtResource("1_hn4vk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qywf0"] +atlas = ExtResource("1_hn4vk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2amfy"] +atlas = ExtResource("1_hn4vk") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlfce"] +atlas = ExtResource("1_hn4vk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6afou"] +atlas = ExtResource("1_hn4vk") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi3jm"] +atlas = ExtResource("1_hn4vk") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjmu5"] +atlas = ExtResource("1_hn4vk") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovpat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8oml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrjvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlawt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvva4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r575s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d5cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goyb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqxpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlnu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdqgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlvfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtgk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fxeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axajn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbhys") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qywf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2amfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlfce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6afou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi3jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjmu5") +}], +"loop": true, +"name": &"cascadingrebirth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_chrysalisburn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_chrysalisburn.tres new file mode 100644 index 0000000..b751b15 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_chrysalisburn.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://cfg4l3kjdw70w"] + +[ext_resource type="Texture2D" uid="uid://db8vlnp3qucww" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png" id="1_0b6kw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqudw"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ed20"] +atlas = ExtResource("1_0b6kw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgqua"] +atlas = ExtResource("1_0b6kw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilw2q"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v5kr"] +atlas = ExtResource("1_0b6kw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ek1i"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi2s5"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goaxe"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k7nx"] +atlas = ExtResource("1_0b6kw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sue3j"] +atlas = ExtResource("1_0b6kw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxh6s"] +atlas = ExtResource("1_0b6kw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ou2a"] +atlas = ExtResource("1_0b6kw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tx4x"] +atlas = ExtResource("1_0b6kw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0wax"] +atlas = ExtResource("1_0b6kw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxed"] +atlas = ExtResource("1_0b6kw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bra1v"] +atlas = ExtResource("1_0b6kw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmgfv"] +atlas = ExtResource("1_0b6kw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5ruf"] +atlas = ExtResource("1_0b6kw") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqudw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ed20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgqua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilw2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v5kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ek1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi2s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goaxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k7nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sue3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxh6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ou2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tx4x") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0wax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bra1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmgfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5ruf") +}], +"loop": true, +"name": &"chrysalisburn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dampeningwave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dampeningwave.tres new file mode 100644 index 0000000..c44216c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dampeningwave.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://5frb8brbdjlr"] + +[ext_resource type="Texture2D" uid="uid://ceb1d60fp2p8f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png" id="1_f4l5o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rljuw"] +atlas = ExtResource("1_f4l5o") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7ff2"] +atlas = ExtResource("1_f4l5o") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rwav"] +atlas = ExtResource("1_f4l5o") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27ge6"] +atlas = ExtResource("1_f4l5o") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1n4d"] +atlas = ExtResource("1_f4l5o") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0v8i"] +atlas = ExtResource("1_f4l5o") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o7o6"] +atlas = ExtResource("1_f4l5o") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fxx0"] +atlas = ExtResource("1_f4l5o") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4m56"] +atlas = ExtResource("1_f4l5o") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bub2k"] +atlas = ExtResource("1_f4l5o") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub3mv"] +atlas = ExtResource("1_f4l5o") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvki4"] +atlas = ExtResource("1_f4l5o") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm0iw"] +atlas = ExtResource("1_f4l5o") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_137mx"] +atlas = ExtResource("1_f4l5o") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a47ju"] +atlas = ExtResource("1_f4l5o") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dugru"] +atlas = ExtResource("1_f4l5o") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21gwx"] +atlas = ExtResource("1_f4l5o") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlghn"] +atlas = ExtResource("1_f4l5o") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52xlx"] +atlas = ExtResource("1_f4l5o") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68dpv"] +atlas = ExtResource("1_f4l5o") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2xtl"] +atlas = ExtResource("1_f4l5o") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rljuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7ff2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rwav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27ge6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1n4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0v8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o7o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fxx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4m56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bub2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub3mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm0iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_137mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a47ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dugru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21gwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlghn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_52xlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68dpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2xtl") +}], +"loop": true, +"name": &"dampeningwave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoparty.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoparty.tres new file mode 100644 index 0000000..f70fe44 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoparty.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://cui1bk22xfexk"] + +[ext_resource type="Texture2D" uid="uid://cxol3kwin7dld" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png" id="1_66yra"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0475"] +atlas = ExtResource("1_66yra") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki2vj"] +atlas = ExtResource("1_66yra") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g8gk"] +atlas = ExtResource("1_66yra") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2c3v"] +atlas = ExtResource("1_66yra") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijoli"] +atlas = ExtResource("1_66yra") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ny8"] +atlas = ExtResource("1_66yra") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8gvy"] +atlas = ExtResource("1_66yra") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6cq0"] +atlas = ExtResource("1_66yra") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p521w"] +atlas = ExtResource("1_66yra") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uwon"] +atlas = ExtResource("1_66yra") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p40y0"] +atlas = ExtResource("1_66yra") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mli6w"] +atlas = ExtResource("1_66yra") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfcsu"] +atlas = ExtResource("1_66yra") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y15bp"] +atlas = ExtResource("1_66yra") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eyq1"] +atlas = ExtResource("1_66yra") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv23y"] +atlas = ExtResource("1_66yra") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fhor"] +atlas = ExtResource("1_66yra") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy0xs"] +atlas = ExtResource("1_66yra") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh887"] +atlas = ExtResource("1_66yra") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66g1y"] +atlas = ExtResource("1_66yra") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l0m2"] +atlas = ExtResource("1_66yra") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ky5s"] +atlas = ExtResource("1_66yra") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0475") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki2vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g8gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2c3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijoli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ny8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8gvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6cq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p521w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uwon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p40y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mli6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfcsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y15bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eyq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv23y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fhor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy0xs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh887") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66g1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l0m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ky5s") +}], +"loop": true, +"name": &"dinoparty", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoultimatum.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoultimatum.tres new file mode 100644 index 0000000..7e34176 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_dinoultimatum.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://durifumffv3c4"] + +[ext_resource type="Texture2D" uid="uid://bg3vlieuseuui" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png" id="1_7vrgy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcjko"] +atlas = ExtResource("1_7vrgy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l15uo"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtawg"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04hqc"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj5aw"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdc6t"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vllwr"] +atlas = ExtResource("1_7vrgy") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w782w"] +atlas = ExtResource("1_7vrgy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrb60"] +atlas = ExtResource("1_7vrgy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqlto"] +atlas = ExtResource("1_7vrgy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2olxn"] +atlas = ExtResource("1_7vrgy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nknsy"] +atlas = ExtResource("1_7vrgy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twoi7"] +atlas = ExtResource("1_7vrgy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1xpw"] +atlas = ExtResource("1_7vrgy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8bbj"] +atlas = ExtResource("1_7vrgy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkl33"] +atlas = ExtResource("1_7vrgy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_estyq"] +atlas = ExtResource("1_7vrgy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc2m2"] +atlas = ExtResource("1_7vrgy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyfql"] +atlas = ExtResource("1_7vrgy") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ewp"] +atlas = ExtResource("1_7vrgy") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bya0o"] +atlas = ExtResource("1_7vrgy") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcjko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l15uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtawg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04hqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj5aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdc6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vllwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w782w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrb60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqlto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2olxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nknsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twoi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1xpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8bbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkl33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_estyq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc2m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyfql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ewp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bya0o") +}], +"loop": true, +"name": &"dinoultimatum", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_diretidefrenzy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_diretidefrenzy.tres new file mode 100644 index 0000000..8a8e6e8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_diretidefrenzy.tres @@ -0,0 +1,79 @@ +[gd_resource type="SpriteFrames" load_steps=11 format=3 uid="uid://dkrcf7cvlnmuq"] + +[ext_resource type="Texture2D" uid="uid://txxr0jjrinxt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png" id="1_ru3lj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7byi8"] +atlas = ExtResource("1_ru3lj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykrpx"] +atlas = ExtResource("1_ru3lj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4gvw"] +atlas = ExtResource("1_ru3lj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bnv4"] +atlas = ExtResource("1_ru3lj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao4it"] +atlas = ExtResource("1_ru3lj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwnea"] +atlas = ExtResource("1_ru3lj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euh2w"] +atlas = ExtResource("1_ru3lj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5mu8"] +atlas = ExtResource("1_ru3lj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b723v"] +atlas = ExtResource("1_ru3lj") +region = Rect2(49, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7byi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykrpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4gvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bnv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao4it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwnea") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_euh2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5mu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b723v") +}], +"loop": true, +"name": &"diretidefrenzy", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_earthsphere.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_earthsphere.tres new file mode 100644 index 0000000..1fab163 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_earthsphere.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://45iyacjj7sos"] + +[ext_resource type="Texture2D" uid="uid://bgnqsw2qm07ku" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png" id="1_ubtjg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_unaox"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3td4"] +atlas = ExtResource("1_ubtjg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuyit"] +atlas = ExtResource("1_ubtjg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ysc6"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3cvr"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx3y3"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrgjw"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2pgv"] +atlas = ExtResource("1_ubtjg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0r5p"] +atlas = ExtResource("1_ubtjg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wr33"] +atlas = ExtResource("1_ubtjg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr5lc"] +atlas = ExtResource("1_ubtjg") +region = Rect2(49, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_unaox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3td4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuyit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ysc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3cvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx3y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrgjw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2pgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0r5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wr33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr5lc") +}], +"loop": true, +"name": &"earthsphere", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_egggrenade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_egggrenade.tres new file mode 100644 index 0000000..8036bd5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_egggrenade.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://bseh3x8in8ck3"] + +[ext_resource type="Texture2D" uid="uid://dobqbkbm4xmh6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png" id="1_nvsng"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_64s1h"] +atlas = ExtResource("1_nvsng") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwkn3"] +atlas = ExtResource("1_nvsng") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l8m3"] +atlas = ExtResource("1_nvsng") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0f8"] +atlas = ExtResource("1_nvsng") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b4x3"] +atlas = ExtResource("1_nvsng") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1nkf"] +atlas = ExtResource("1_nvsng") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx8x4"] +atlas = ExtResource("1_nvsng") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0sgm"] +atlas = ExtResource("1_nvsng") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjp44"] +atlas = ExtResource("1_nvsng") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llv5y"] +atlas = ExtResource("1_nvsng") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlc5u"] +atlas = ExtResource("1_nvsng") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxaxf"] +atlas = ExtResource("1_nvsng") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63nx4"] +atlas = ExtResource("1_nvsng") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aggkj"] +atlas = ExtResource("1_nvsng") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbibd"] +atlas = ExtResource("1_nvsng") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itinv"] +atlas = ExtResource("1_nvsng") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcwru"] +atlas = ExtResource("1_nvsng") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeop5"] +atlas = ExtResource("1_nvsng") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qk0l"] +atlas = ExtResource("1_nvsng") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64s1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwkn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l8m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b4x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1nkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx8x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0sgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjp44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llv5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlc5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxaxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63nx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aggkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbibd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_itinv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcwru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeop5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qk0l") +}], +"loop": true, +"name": &"egggrenade", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggmorph.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggmorph.tres new file mode 100644 index 0000000..263f980 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggmorph.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://clujxid6arqnr"] + +[ext_resource type="Texture2D" uid="uid://c6b2vsu1xxqcc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png" id="1_yc7ir"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hssij"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx8iw"] +atlas = ExtResource("1_yc7ir") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ub0"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2eco"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ujg"] +atlas = ExtResource("1_yc7ir") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2efby"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqoru"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwvw2"] +atlas = ExtResource("1_yc7ir") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qegvu"] +atlas = ExtResource("1_yc7ir") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m37fe"] +atlas = ExtResource("1_yc7ir") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkh5g"] +atlas = ExtResource("1_yc7ir") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd0lt"] +atlas = ExtResource("1_yc7ir") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce8qy"] +atlas = ExtResource("1_yc7ir") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt6gl"] +atlas = ExtResource("1_yc7ir") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ggyf"] +atlas = ExtResource("1_yc7ir") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gpgy"] +atlas = ExtResource("1_yc7ir") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hssij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx8iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ub0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2eco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ujg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2efby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqoru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwvw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qegvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m37fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkh5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd0lt") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce8qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt6gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ggyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gpgy") +}], +"loop": true, +"name": &"eggmorph", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggzactly.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggzactly.tres new file mode 100644 index 0000000..c170989 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_eggzactly.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://dk74qp06ht1fe"] + +[ext_resource type="Texture2D" uid="uid://df073p77n3voq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png" id="1_evlpq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfryo"] +atlas = ExtResource("1_evlpq") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huf6j"] +atlas = ExtResource("1_evlpq") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uqny"] +atlas = ExtResource("1_evlpq") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnc2c"] +atlas = ExtResource("1_evlpq") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phc2a"] +atlas = ExtResource("1_evlpq") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lwoq"] +atlas = ExtResource("1_evlpq") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcsh7"] +atlas = ExtResource("1_evlpq") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eyyu"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isb8s"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltpif"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du1gj"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oey6k"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veno6"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jobqc"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y1fc"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byb4y"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3q2y"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeeyg"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdu1v"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5jvb"] +atlas = ExtResource("1_evlpq") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbigi"] +atlas = ExtResource("1_evlpq") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3562"] +atlas = ExtResource("1_evlpq") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ecom"] +atlas = ExtResource("1_evlpq") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t827g"] +atlas = ExtResource("1_evlpq") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfryo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huf6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uqny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnc2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phc2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lwoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcsh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eyyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isb8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltpif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du1gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oey6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veno6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jobqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y1fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byb4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3q2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeeyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdu1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5jvb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbigi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3562") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ecom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t827g") +}], +"loop": true, +"name": &"eggzactly", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_endurethebeastlands.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_endurethebeastlands.tres new file mode 100644 index 0000000..17ca83f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_endurethebeastlands.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://cqaoabxh8tlxp"] + +[ext_resource type="Texture2D" uid="uid://s6d5cpocscsh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png" id="1_lbqjo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kynnb"] +atlas = ExtResource("1_lbqjo") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t41a"] +atlas = ExtResource("1_lbqjo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2gmr"] +atlas = ExtResource("1_lbqjo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewjtt"] +atlas = ExtResource("1_lbqjo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6yrc"] +atlas = ExtResource("1_lbqjo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqbw1"] +atlas = ExtResource("1_lbqjo") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7d80"] +atlas = ExtResource("1_lbqjo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ut6e"] +atlas = ExtResource("1_lbqjo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njobp"] +atlas = ExtResource("1_lbqjo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th6w2"] +atlas = ExtResource("1_lbqjo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnroa"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8ous"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imsgp"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oott3"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1kvd"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyegu"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmcsj"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn8d8"] +atlas = ExtResource("1_lbqjo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3w17"] +atlas = ExtResource("1_lbqjo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jatv1"] +atlas = ExtResource("1_lbqjo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_var5x"] +atlas = ExtResource("1_lbqjo") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oqv3"] +atlas = ExtResource("1_lbqjo") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kynnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t41a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2gmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewjtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6yrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqbw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7d80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ut6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njobp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th6w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnroa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8ous") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imsgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oott3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1kvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyegu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmcsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn8d8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3w17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jatv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_var5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oqv3") +}], +"loop": true, +"name": &"endurethebeastlands", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_entropicgaze.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_entropicgaze.tres new file mode 100644 index 0000000..2131dc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_entropicgaze.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://bwr4nyt76nhff"] + +[ext_resource type="Texture2D" uid="uid://51j22kqtw30f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png" id="1_dckil"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mbh3"] +atlas = ExtResource("1_dckil") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fmpa"] +atlas = ExtResource("1_dckil") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkbf8"] +atlas = ExtResource("1_dckil") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4vek"] +atlas = ExtResource("1_dckil") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfcxp"] +atlas = ExtResource("1_dckil") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj106"] +atlas = ExtResource("1_dckil") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fclk5"] +atlas = ExtResource("1_dckil") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hndd"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q42qr"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocyse"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6psk"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lp25"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjbng"] +atlas = ExtResource("1_dckil") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s0wq"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3yts"] +atlas = ExtResource("1_dckil") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7imgx"] +atlas = ExtResource("1_dckil") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqqm"] +atlas = ExtResource("1_dckil") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgk6n"] +atlas = ExtResource("1_dckil") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4gb8"] +atlas = ExtResource("1_dckil") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0h6u"] +atlas = ExtResource("1_dckil") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwdjf"] +atlas = ExtResource("1_dckil") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlfvw"] +atlas = ExtResource("1_dckil") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouvfb"] +atlas = ExtResource("1_dckil") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2st0"] +atlas = ExtResource("1_dckil") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mbh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fmpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkbf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4vek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfcxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj106") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fclk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hndd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q42qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocyse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6psk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lp25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjbng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s0wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3yts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7imgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opqqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgk6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4gb8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0h6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwdjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlfvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouvfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2st0") +}], +"loop": true, +"name": &"entropicgaze", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flamingstampede.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flamingstampede.tres new file mode 100644 index 0000000..bcb9493 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flamingstampede.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://f2fixchc0ewa"] + +[ext_resource type="Texture2D" uid="uid://bg65txfc6e2vv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png" id="1_dcs2a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8lox"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67ddt"] +atlas = ExtResource("1_dcs2a") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgsu5"] +atlas = ExtResource("1_dcs2a") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2pnr"] +atlas = ExtResource("1_dcs2a") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhcj0"] +atlas = ExtResource("1_dcs2a") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eylvj"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ynwr"] +atlas = ExtResource("1_dcs2a") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he0fs"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t47xb"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvii"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgbvy"] +atlas = ExtResource("1_dcs2a") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nlpi"] +atlas = ExtResource("1_dcs2a") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrcf0"] +atlas = ExtResource("1_dcs2a") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdihu"] +atlas = ExtResource("1_dcs2a") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5254"] +atlas = ExtResource("1_dcs2a") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phduk"] +atlas = ExtResource("1_dcs2a") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fvnu"] +atlas = ExtResource("1_dcs2a") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iycgy"] +atlas = ExtResource("1_dcs2a") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8lox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67ddt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgsu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2pnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhcj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eylvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ynwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he0fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t47xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vvii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgbvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nlpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrcf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdihu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5254") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_phduk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fvnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iycgy") +}], +"loop": true, +"name": &"flamingstampede", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flashreincarnation.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flashreincarnation.tres new file mode 100644 index 0000000..00d2fab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_flashreincarnation.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://deaxbhndwgc7d"] + +[ext_resource type="Texture2D" uid="uid://c5jt7wyys8p68" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png" id="1_in7m6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3yb1"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw5e7"] +atlas = ExtResource("1_in7m6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekqgf"] +atlas = ExtResource("1_in7m6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_algeu"] +atlas = ExtResource("1_in7m6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebky7"] +atlas = ExtResource("1_in7m6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hex7g"] +atlas = ExtResource("1_in7m6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yhjj"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgn05"] +atlas = ExtResource("1_in7m6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoptr"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87ujx"] +atlas = ExtResource("1_in7m6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4j6p"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iatee"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ay7a"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tixk3"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3jl5"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsv1l"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se6oe"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj3hj"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b78g1"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llp5p"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdp74"] +atlas = ExtResource("1_in7m6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7twed"] +atlas = ExtResource("1_in7m6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpjnb"] +atlas = ExtResource("1_in7m6") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_undig"] +atlas = ExtResource("1_in7m6") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3yb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw5e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekqgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_algeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebky7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hex7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yhjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgn05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoptr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87ujx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4j6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iatee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ay7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tixk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3jl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsv1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se6oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj3hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b78g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llp5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdp74") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7twed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpjnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_undig") +}], +"loop": true, +"name": &"flashreincarnation", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_fractalreplication.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_fractalreplication.tres new file mode 100644 index 0000000..00c7af4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_fractalreplication.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://b11yjqkgplrud"] + +[ext_resource type="Texture2D" uid="uid://2iln7aet00e0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png" id="1_rp7df"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfwv7"] +atlas = ExtResource("1_rp7df") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmrq"] +atlas = ExtResource("1_rp7df") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a30pj"] +atlas = ExtResource("1_rp7df") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sota"] +atlas = ExtResource("1_rp7df") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqrrc"] +atlas = ExtResource("1_rp7df") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2m6p"] +atlas = ExtResource("1_rp7df") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w61kv"] +atlas = ExtResource("1_rp7df") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55wh7"] +atlas = ExtResource("1_rp7df") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_logrw"] +atlas = ExtResource("1_rp7df") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr3uq"] +atlas = ExtResource("1_rp7df") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofbxw"] +atlas = ExtResource("1_rp7df") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kmmo"] +atlas = ExtResource("1_rp7df") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3fy8"] +atlas = ExtResource("1_rp7df") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmgwc"] +atlas = ExtResource("1_rp7df") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo06k"] +atlas = ExtResource("1_rp7df") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdlm7"] +atlas = ExtResource("1_rp7df") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqrsg"] +atlas = ExtResource("1_rp7df") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5sg8"] +atlas = ExtResource("1_rp7df") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_714pg"] +atlas = ExtResource("1_rp7df") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsi8w"] +atlas = ExtResource("1_rp7df") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymd3"] +atlas = ExtResource("1_rp7df") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfwv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a30pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sota") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqrrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2m6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w61kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55wh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_logrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr3uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofbxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kmmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3fy8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmgwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo06k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdlm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqrsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5sg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_714pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsi8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymd3") +}], +"loop": true, +"name": &"fractalreplication", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_greaterfortitude.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_greaterfortitude.tres new file mode 100644 index 0000000..f83c75f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_greaterfortitude.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://cfyacqm4s1a66"] + +[ext_resource type="Texture2D" uid="uid://caoadpucis6n0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png" id="1_rjtvv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwy7p"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io1y5"] +atlas = ExtResource("1_rjtvv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p00jw"] +atlas = ExtResource("1_rjtvv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu0yc"] +atlas = ExtResource("1_rjtvv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxur1"] +atlas = ExtResource("1_rjtvv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncsvi"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhkee"] +atlas = ExtResource("1_rjtvv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wxmy"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mvvc"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goiqe"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2t7h"] +atlas = ExtResource("1_rjtvv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtmau"] +atlas = ExtResource("1_rjtvv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqeot"] +atlas = ExtResource("1_rjtvv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dna4s"] +atlas = ExtResource("1_rjtvv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx3un"] +atlas = ExtResource("1_rjtvv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4ac5"] +atlas = ExtResource("1_rjtvv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26q5h"] +atlas = ExtResource("1_rjtvv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rwr5"] +atlas = ExtResource("1_rjtvv") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwy7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io1y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p00jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu0yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxur1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncsvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhkee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wxmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mvvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goiqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2t7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtmau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqeot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dna4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx3un") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4ac5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26q5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rwr5") +}], +"loop": true, +"name": &"greaterfortitude", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_increasinghealth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_increasinghealth.tres new file mode 100644 index 0000000..14463bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_increasinghealth.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bu6imx0ufmn5w"] + +[ext_resource type="Texture2D" uid="uid://d04e7b86j0n8i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png" id="1_h0i3n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_doj8c"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta84e"] +atlas = ExtResource("1_h0i3n") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig720"] +atlas = ExtResource("1_h0i3n") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfoa4"] +atlas = ExtResource("1_h0i3n") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udd0n"] +atlas = ExtResource("1_h0i3n") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1qu5"] +atlas = ExtResource("1_h0i3n") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2cqr"] +atlas = ExtResource("1_h0i3n") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpya3"] +atlas = ExtResource("1_h0i3n") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy4er"] +atlas = ExtResource("1_h0i3n") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vb5d"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eswck"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6utb"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbxhf"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5flp0"] +atlas = ExtResource("1_h0i3n") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65668"] +atlas = ExtResource("1_h0i3n") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df4qi"] +atlas = ExtResource("1_h0i3n") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8h4w"] +atlas = ExtResource("1_h0i3n") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex6mb"] +atlas = ExtResource("1_h0i3n") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_235uo"] +atlas = ExtResource("1_h0i3n") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nh0m"] +atlas = ExtResource("1_h0i3n") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd5gg"] +atlas = ExtResource("1_h0i3n") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_doj8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta84e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig720") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfoa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udd0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1qu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2cqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpya3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy4er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vb5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eswck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6utb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbxhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5flp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65668") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df4qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8h4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex6mb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_235uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nh0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd5gg") +}], +"loop": true, +"name": &"increasinghealth", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_kineticequilibrium.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_kineticequilibrium.tres new file mode 100644 index 0000000..dc437bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_kineticequilibrium.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://fwm5b444yw3x"] + +[ext_resource type="Texture2D" uid="uid://dx8vx8qijhqmk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png" id="1_f5kyk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vueh"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v30r"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hui2"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clvqv"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfqpc"] +atlas = ExtResource("1_f5kyk") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px0q5"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rlpg"] +atlas = ExtResource("1_f5kyk") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjxqc"] +atlas = ExtResource("1_f5kyk") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02l6w"] +atlas = ExtResource("1_f5kyk") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivt58"] +atlas = ExtResource("1_f5kyk") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy6sy"] +atlas = ExtResource("1_f5kyk") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsscg"] +atlas = ExtResource("1_f5kyk") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68kti"] +atlas = ExtResource("1_f5kyk") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx78r"] +atlas = ExtResource("1_f5kyk") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0f4h"] +atlas = ExtResource("1_f5kyk") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv0mb"] +atlas = ExtResource("1_f5kyk") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq0lc"] +atlas = ExtResource("1_f5kyk") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df21d"] +atlas = ExtResource("1_f5kyk") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u802d"] +atlas = ExtResource("1_f5kyk") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yanu"] +atlas = ExtResource("1_f5kyk") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jr5r"] +atlas = ExtResource("1_f5kyk") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip56v"] +atlas = ExtResource("1_f5kyk") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2abj"] +atlas = ExtResource("1_f5kyk") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp7kt"] +atlas = ExtResource("1_f5kyk") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vueh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v30r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hui2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clvqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfqpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px0q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rlpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjxqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02l6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivt58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy6sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsscg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68kti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx78r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0f4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv0mb") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq0lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df21d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u802d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yanu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jr5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip56v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2abj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp7kt") +}], +"loop": true, +"name": &"kineticequilibrium", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_lavalance.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_lavalance.tres new file mode 100644 index 0000000..583a10c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_lavalance.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://c0wliy4aq6lnw"] + +[ext_resource type="Texture2D" uid="uid://crao3dpxjumvi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png" id="1_0fhw8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox1d7"] +atlas = ExtResource("1_0fhw8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pcw1"] +atlas = ExtResource("1_0fhw8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xtgf"] +atlas = ExtResource("1_0fhw8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb3nf"] +atlas = ExtResource("1_0fhw8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1rgl"] +atlas = ExtResource("1_0fhw8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie1hv"] +atlas = ExtResource("1_0fhw8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0q5a"] +atlas = ExtResource("1_0fhw8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yocj4"] +atlas = ExtResource("1_0fhw8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2d73"] +atlas = ExtResource("1_0fhw8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igx1w"] +atlas = ExtResource("1_0fhw8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjnes"] +atlas = ExtResource("1_0fhw8") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1srdy"] +atlas = ExtResource("1_0fhw8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r17a"] +atlas = ExtResource("1_0fhw8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qq8r"] +atlas = ExtResource("1_0fhw8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bcwx"] +atlas = ExtResource("1_0fhw8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gxd1"] +atlas = ExtResource("1_0fhw8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cr8a"] +atlas = ExtResource("1_0fhw8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrajm"] +atlas = ExtResource("1_0fhw8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m37wn"] +atlas = ExtResource("1_0fhw8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60pbs"] +atlas = ExtResource("1_0fhw8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daxcn"] +atlas = ExtResource("1_0fhw8") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox1d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pcw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xtgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb3nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1rgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie1hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0q5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yocj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2d73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igx1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjnes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1srdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r17a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qq8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bcwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cr8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrajm") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m37wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60pbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daxcn") +}], +"loop": true, +"name": &"lavalance", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_manaburn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_manaburn.tres new file mode 100644 index 0000000..59bdbf4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_manaburn.tres @@ -0,0 +1,100 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://de5n5wfiphuxv"] + +[ext_resource type="Texture2D" uid="uid://qs7delf3k1gq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png" id="1_ncwqt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7smv0"] +atlas = ExtResource("1_ncwqt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3y7o"] +atlas = ExtResource("1_ncwqt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym5p7"] +atlas = ExtResource("1_ncwqt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6871d"] +atlas = ExtResource("1_ncwqt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y0md"] +atlas = ExtResource("1_ncwqt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btdj3"] +atlas = ExtResource("1_ncwqt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy3r7"] +atlas = ExtResource("1_ncwqt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_levgh"] +atlas = ExtResource("1_ncwqt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vwf0"] +atlas = ExtResource("1_ncwqt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq4nd"] +atlas = ExtResource("1_ncwqt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fexs"] +atlas = ExtResource("1_ncwqt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78udb"] +atlas = ExtResource("1_ncwqt") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7smv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3y7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym5p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6871d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y0md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btdj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy3r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_levgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vwf0") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq4nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fexs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78udb") +}], +"loop": true, +"name": &"manaburn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_marchbrontodon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_marchbrontodon.tres new file mode 100644 index 0000000..7458469 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_marchbrontodon.tres @@ -0,0 +1,282 @@ +[gd_resource type="SpriteFrames" load_steps=40 format=3 uid="uid://cmowaovmpp4m6"] + +[ext_resource type="Texture2D" uid="uid://dstkcawyiush2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png" id="1_awb5l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7idvc"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7i21"] +atlas = ExtResource("1_awb5l") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnj2u"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71pyq"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl8y0"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3y6s"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nguob"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrpun"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d45qe"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g43ws"] +atlas = ExtResource("1_awb5l") +region = Rect2(294, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78nyl"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkh33"] +atlas = ExtResource("1_awb5l") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbsqn"] +atlas = ExtResource("1_awb5l") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7pv8"] +atlas = ExtResource("1_awb5l") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qkfq"] +atlas = ExtResource("1_awb5l") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reqne"] +atlas = ExtResource("1_awb5l") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36v1c"] +atlas = ExtResource("1_awb5l") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu55y"] +atlas = ExtResource("1_awb5l") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmlkt"] +atlas = ExtResource("1_awb5l") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdxxe"] +atlas = ExtResource("1_awb5l") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdu8e"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhdwf"] +atlas = ExtResource("1_awb5l") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ail"] +atlas = ExtResource("1_awb5l") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wcuh"] +atlas = ExtResource("1_awb5l") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h67et"] +atlas = ExtResource("1_awb5l") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m8wy"] +atlas = ExtResource("1_awb5l") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_molsm"] +atlas = ExtResource("1_awb5l") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn8t6"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkbkn"] +atlas = ExtResource("1_awb5l") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmqq2"] +atlas = ExtResource("1_awb5l") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fengj"] +atlas = ExtResource("1_awb5l") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a2po"] +atlas = ExtResource("1_awb5l") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyjyc"] +atlas = ExtResource("1_awb5l") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg8ds"] +atlas = ExtResource("1_awb5l") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruik1"] +atlas = ExtResource("1_awb5l") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ojbu"] +atlas = ExtResource("1_awb5l") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjhqe"] +atlas = ExtResource("1_awb5l") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpbq3"] +atlas = ExtResource("1_awb5l") +region = Rect2(196, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7idvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7i21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnj2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71pyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl8y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3y6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nguob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrpun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d45qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g43ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78nyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkh33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbsqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7pv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qkfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reqne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36v1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu55y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmlkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdxxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdu8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhdwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ail") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wcuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h67et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m8wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_molsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn8t6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkbkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmqq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fengj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a2po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyjyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg8ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruik1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ojbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjhqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpbq3") +}], +"loop": true, +"name": &"marchbrontodon", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_metamorphosis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_metamorphosis.tres new file mode 100644 index 0000000..266aa1d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_metamorphosis.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://dpgeaot5updok"] + +[ext_resource type="Texture2D" uid="uid://dodogclqioase" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png" id="1_0553m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nic1"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8qwh"] +atlas = ExtResource("1_0553m") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcfem"] +atlas = ExtResource("1_0553m") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6lo3"] +atlas = ExtResource("1_0553m") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otq8j"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cik2"] +atlas = ExtResource("1_0553m") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6pdr"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0x3v"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7i3k"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q128"] +atlas = ExtResource("1_0553m") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14jp"] +atlas = ExtResource("1_0553m") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w26n"] +atlas = ExtResource("1_0553m") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n2l7"] +atlas = ExtResource("1_0553m") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odhxl"] +atlas = ExtResource("1_0553m") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmdcm"] +atlas = ExtResource("1_0553m") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq7km"] +atlas = ExtResource("1_0553m") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kby4i"] +atlas = ExtResource("1_0553m") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyver"] +atlas = ExtResource("1_0553m") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2rkp"] +atlas = ExtResource("1_0553m") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oygxo"] +atlas = ExtResource("1_0553m") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mehi5"] +atlas = ExtResource("1_0553m") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2ofq"] +atlas = ExtResource("1_0553m") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaede"] +atlas = ExtResource("1_0553m") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv0uv"] +atlas = ExtResource("1_0553m") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k78s"] +atlas = ExtResource("1_0553m") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uv4b"] +atlas = ExtResource("1_0553m") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4wg8"] +atlas = ExtResource("1_0553m") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofmsv"] +atlas = ExtResource("1_0553m") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nic1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8qwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcfem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6lo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otq8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cik2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6pdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0x3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7i3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q128") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w26n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n2l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odhxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmdcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq7km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kby4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyver") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2rkp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oygxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mehi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2ofq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaede") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv0uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k78s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uv4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4wg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofmsv") +}], +"loop": true, +"name": &"metamorphosis", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_meteorimpact.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_meteorimpact.tres new file mode 100644 index 0000000..1442348 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_meteorimpact.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://daonyna47clfo"] + +[ext_resource type="Texture2D" uid="uid://oky1e2plpudl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png" id="1_giy4d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x52rq"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fktsg"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jx1f"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q46h"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uapk"] +atlas = ExtResource("1_giy4d") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov5bw"] +atlas = ExtResource("1_giy4d") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2brtg"] +atlas = ExtResource("1_giy4d") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na5nn"] +atlas = ExtResource("1_giy4d") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46fhv"] +atlas = ExtResource("1_giy4d") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4lkq"] +atlas = ExtResource("1_giy4d") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo3id"] +atlas = ExtResource("1_giy4d") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dy1j"] +atlas = ExtResource("1_giy4d") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03aur"] +atlas = ExtResource("1_giy4d") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e61h"] +atlas = ExtResource("1_giy4d") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdbrx"] +atlas = ExtResource("1_giy4d") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvigk"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3iud"] +atlas = ExtResource("1_giy4d") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kglrc"] +atlas = ExtResource("1_giy4d") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwpnx"] +atlas = ExtResource("1_giy4d") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a80hx"] +atlas = ExtResource("1_giy4d") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdjfk"] +atlas = ExtResource("1_giy4d") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2udes"] +atlas = ExtResource("1_giy4d") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3rcp"] +atlas = ExtResource("1_giy4d") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x52rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fktsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jx1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q46h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uapk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov5bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2brtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na5nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46fhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4lkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo3id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dy1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03aur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e61h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdbrx") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvigk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3iud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kglrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwpnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a80hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdjfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2udes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3rcp") +}], +"loop": true, +"name": &"meteorimpact", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_mindsteal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_mindsteal.tres new file mode 100644 index 0000000..95ef6c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_mindsteal.tres @@ -0,0 +1,86 @@ +[gd_resource type="SpriteFrames" load_steps=12 format=3 uid="uid://ds70rt1bs6usf"] + +[ext_resource type="Texture2D" uid="uid://bqekkv5otmkbe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png" id="1_3cppa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plgy"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ppvk"] +atlas = ExtResource("1_3cppa") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi5ns"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myjep"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q3pc"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sese"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhr3w"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaswe"] +atlas = ExtResource("1_3cppa") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmg1g"] +atlas = ExtResource("1_3cppa") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cni5"] +atlas = ExtResource("1_3cppa") +region = Rect2(0, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ppvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi5ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myjep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q3pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sese") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhr3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaswe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmg1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cni5") +}], +"loop": true, +"name": &"mindsteal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturalselection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturalselection.tres new file mode 100644 index 0000000..1bb4b82 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturalselection.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://njgegty5iagj"] + +[ext_resource type="Texture2D" uid="uid://bm3s840fiiwar" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png" id="1_3cgrl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhhwp"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m0uh"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5isv6"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46fp6"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htocs"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5is0k"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_337n0"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fb32"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xqoh"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og06n"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3re7"] +atlas = ExtResource("1_3cgrl") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_howux"] +atlas = ExtResource("1_3cgrl") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37a0x"] +atlas = ExtResource("1_3cgrl") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsgql"] +atlas = ExtResource("1_3cgrl") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a7nu"] +atlas = ExtResource("1_3cgrl") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jm81"] +atlas = ExtResource("1_3cgrl") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn4rq"] +atlas = ExtResource("1_3cgrl") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpx5c"] +atlas = ExtResource("1_3cgrl") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvipc"] +atlas = ExtResource("1_3cgrl") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oixin"] +atlas = ExtResource("1_3cgrl") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s06a"] +atlas = ExtResource("1_3cgrl") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw4ld"] +atlas = ExtResource("1_3cgrl") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvchf"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yky2e"] +atlas = ExtResource("1_3cgrl") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhhwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m0uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5isv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46fp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htocs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5is0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_337n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fb32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xqoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og06n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3re7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_howux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37a0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsgql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a7nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jm81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn4rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpx5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oixin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s06a") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw4ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvchf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yky2e") +}], +"loop": true, +"name": &"naturalselection", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturesconfluence.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturesconfluence.tres new file mode 100644 index 0000000..f0d392d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_naturesconfluence.tres @@ -0,0 +1,219 @@ +[gd_resource type="SpriteFrames" load_steps=31 format=3 uid="uid://bsmuw6i2rgsw4"] + +[ext_resource type="Texture2D" uid="uid://d2hke5y5muxb6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png" id="1_5olaf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3gpu"] +atlas = ExtResource("1_5olaf") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_strkb"] +atlas = ExtResource("1_5olaf") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pskgp"] +atlas = ExtResource("1_5olaf") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khbyd"] +atlas = ExtResource("1_5olaf") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msobd"] +atlas = ExtResource("1_5olaf") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_det4k"] +atlas = ExtResource("1_5olaf") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyeqi"] +atlas = ExtResource("1_5olaf") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bhau"] +atlas = ExtResource("1_5olaf") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve55b"] +atlas = ExtResource("1_5olaf") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jghr"] +atlas = ExtResource("1_5olaf") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e33m"] +atlas = ExtResource("1_5olaf") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qttkx"] +atlas = ExtResource("1_5olaf") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b3rs"] +atlas = ExtResource("1_5olaf") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ykt2"] +atlas = ExtResource("1_5olaf") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_farfi"] +atlas = ExtResource("1_5olaf") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41uvk"] +atlas = ExtResource("1_5olaf") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lty7p"] +atlas = ExtResource("1_5olaf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlqvi"] +atlas = ExtResource("1_5olaf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqsei"] +atlas = ExtResource("1_5olaf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjig3"] +atlas = ExtResource("1_5olaf") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw7db"] +atlas = ExtResource("1_5olaf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcou2"] +atlas = ExtResource("1_5olaf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6n6d"] +atlas = ExtResource("1_5olaf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3khaa"] +atlas = ExtResource("1_5olaf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87fdm"] +atlas = ExtResource("1_5olaf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttkjl"] +atlas = ExtResource("1_5olaf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko2g4"] +atlas = ExtResource("1_5olaf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irrfs"] +atlas = ExtResource("1_5olaf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erv52"] +atlas = ExtResource("1_5olaf") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3gpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_strkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pskgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khbyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msobd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_det4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyeqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bhau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve55b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jghr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e33m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qttkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b3rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ykt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_farfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41uvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lty7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlqvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqsei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjig3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw7db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcou2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6n6d") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3khaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87fdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttkjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko2g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irrfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erv52") +}], +"loop": true, +"name": &"naturesconfluence", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_plasmastorm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_plasmastorm.tres new file mode 100644 index 0000000..be3a633 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_plasmastorm.tres @@ -0,0 +1,100 @@ +[gd_resource type="SpriteFrames" load_steps=14 format=3 uid="uid://ce057gpw3mc78"] + +[ext_resource type="Texture2D" uid="uid://cci0p2papraml" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png" id="1_vx5he"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_winf5"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6puqs"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwbgy"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gelhb"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8r73"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tclw"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73n6m"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyj7e"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrhpu"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgcec"] +atlas = ExtResource("1_vx5he") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsr1g"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lbk4"] +atlas = ExtResource("1_vx5he") +region = Rect2(49, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_winf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6puqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwbgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gelhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8r73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tclw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73n6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyj7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrhpu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgcec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsr1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lbk4") +}], +"loop": true, +"name": &"plasmastorm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_popeyespinich.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_popeyespinich.tres new file mode 100644 index 0000000..89d12b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_popeyespinich.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://drwvuy7vd0rab"] + +[ext_resource type="Texture2D" uid="uid://dj5v4gmaft7q7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png" id="1_uvhui"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0fb1"] +atlas = ExtResource("1_uvhui") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx4tx"] +atlas = ExtResource("1_uvhui") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4jrs"] +atlas = ExtResource("1_uvhui") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f512q"] +atlas = ExtResource("1_uvhui") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uh4q"] +atlas = ExtResource("1_uvhui") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01yac"] +atlas = ExtResource("1_uvhui") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0whon"] +atlas = ExtResource("1_uvhui") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewsm2"] +atlas = ExtResource("1_uvhui") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w4ab"] +atlas = ExtResource("1_uvhui") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38atg"] +atlas = ExtResource("1_uvhui") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7m76"] +atlas = ExtResource("1_uvhui") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bxws"] +atlas = ExtResource("1_uvhui") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndno8"] +atlas = ExtResource("1_uvhui") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o18tq"] +atlas = ExtResource("1_uvhui") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s1y6"] +atlas = ExtResource("1_uvhui") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a5pt"] +atlas = ExtResource("1_uvhui") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl8vm"] +atlas = ExtResource("1_uvhui") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n5ex"] +atlas = ExtResource("1_uvhui") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0fb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx4tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4jrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f512q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uh4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01yac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0whon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewsm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w4ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38atg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7m76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bxws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndno8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o18tq") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s1y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a5pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl8vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n5ex") +}], +"loop": true, +"name": &"popeyespinich", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_razorskin.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_razorskin.tres new file mode 100644 index 0000000..d925ffb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_razorskin.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://8xeg246mw6wp"] + +[ext_resource type="Texture2D" uid="uid://cjtmkc3kyj3ie" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png" id="1_rxlo7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_op5oe"] +atlas = ExtResource("1_rxlo7") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21n7x"] +atlas = ExtResource("1_rxlo7") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m7lp"] +atlas = ExtResource("1_rxlo7") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ocx"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba0sl"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72xlf"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ahxq"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8sef"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo8cb"] +atlas = ExtResource("1_rxlo7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uklhs"] +atlas = ExtResource("1_rxlo7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpg07"] +atlas = ExtResource("1_rxlo7") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17b35"] +atlas = ExtResource("1_rxlo7") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nha3r"] +atlas = ExtResource("1_rxlo7") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clgq7"] +atlas = ExtResource("1_rxlo7") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwi0d"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us1mb"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy3ax"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryu4f"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qciyw"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgb3r"] +atlas = ExtResource("1_rxlo7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x82r"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx4sf"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei31w"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omxem"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot70d"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1mkc"] +atlas = ExtResource("1_rxlo7") +region = Rect2(0, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_op5oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21n7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m7lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba0sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72xlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ahxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8sef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo8cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uklhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpg07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17b35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nha3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clgq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwi0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us1mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy3ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryu4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qciyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgb3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x82r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx4sf") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei31w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omxem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot70d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1mkc") +}], +"loop": true, +"name": &"razorskin", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_reggsplicate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_reggsplicate.tres new file mode 100644 index 0000000..8273d04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_reggsplicate.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://copqw1b0fgdfw"] + +[ext_resource type="Texture2D" uid="uid://det84dv3tit84" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png" id="1_8onkl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hpwo"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0rst"] +atlas = ExtResource("1_8onkl") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de6x5"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi8se"] +atlas = ExtResource("1_8onkl") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4id5n"] +atlas = ExtResource("1_8onkl") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro4or"] +atlas = ExtResource("1_8onkl") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyfwp"] +atlas = ExtResource("1_8onkl") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jv5b"] +atlas = ExtResource("1_8onkl") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aox6"] +atlas = ExtResource("1_8onkl") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s4l0"] +atlas = ExtResource("1_8onkl") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcy2v"] +atlas = ExtResource("1_8onkl") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykk6w"] +atlas = ExtResource("1_8onkl") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrl5y"] +atlas = ExtResource("1_8onkl") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eljy"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d0vp"] +atlas = ExtResource("1_8onkl") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euw0j"] +atlas = ExtResource("1_8onkl") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quu4k"] +atlas = ExtResource("1_8onkl") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm2w1"] +atlas = ExtResource("1_8onkl") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rstd"] +atlas = ExtResource("1_8onkl") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mfij"] +atlas = ExtResource("1_8onkl") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2o1l"] +atlas = ExtResource("1_8onkl") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmbyp"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrdf2"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6ay1"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c55o4"] +atlas = ExtResource("1_8onkl") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hpwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0rst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de6x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi8se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4id5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro4or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyfwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jv5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aox6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s4l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcy2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykk6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrl5y") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eljy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d0vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euw0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quu4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm2w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rstd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mfij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2o1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmbyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrdf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6ay1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c55o4") +}], +"loop": true, +"name": &"reggsplicate", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_smashem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_smashem.tres new file mode 100644 index 0000000..7501163 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_smashem.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://bp5y1hm7cb86l"] + +[ext_resource type="Texture2D" uid="uid://dh3d5hves6rk4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png" id="1_0hqna"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3k5w"] +atlas = ExtResource("1_0hqna") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqr8b"] +atlas = ExtResource("1_0hqna") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgkfh"] +atlas = ExtResource("1_0hqna") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o44xn"] +atlas = ExtResource("1_0hqna") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wlla"] +atlas = ExtResource("1_0hqna") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2dn6"] +atlas = ExtResource("1_0hqna") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkdce"] +atlas = ExtResource("1_0hqna") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt1bl"] +atlas = ExtResource("1_0hqna") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m11p"] +atlas = ExtResource("1_0hqna") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6n03"] +atlas = ExtResource("1_0hqna") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njcr4"] +atlas = ExtResource("1_0hqna") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm3dh"] +atlas = ExtResource("1_0hqna") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kier7"] +atlas = ExtResource("1_0hqna") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajhfc"] +atlas = ExtResource("1_0hqna") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmkrp"] +atlas = ExtResource("1_0hqna") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhglk"] +atlas = ExtResource("1_0hqna") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdim"] +atlas = ExtResource("1_0hqna") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yee0q"] +atlas = ExtResource("1_0hqna") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c68gr"] +atlas = ExtResource("1_0hqna") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3k5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqr8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgkfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o44xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wlla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2dn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkdce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt1bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m11p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6n03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njcr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm3dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kier7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajhfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmkrp") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhglk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yee0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c68gr") +}], +"loop": true, +"name": &"smashem", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_spiritofvaath.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_spiritofvaath.tres new file mode 100644 index 0000000..f0a5761 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_spiritofvaath.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://mr3j4fehrpg8"] + +[ext_resource type="Texture2D" uid="uid://c01e4khx7j3jn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png" id="1_j6gwo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_biaky"] +atlas = ExtResource("1_j6gwo") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnenk"] +atlas = ExtResource("1_j6gwo") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd10y"] +atlas = ExtResource("1_j6gwo") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5308c"] +atlas = ExtResource("1_j6gwo") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsvsi"] +atlas = ExtResource("1_j6gwo") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym30k"] +atlas = ExtResource("1_j6gwo") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpk08"] +atlas = ExtResource("1_j6gwo") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vskmp"] +atlas = ExtResource("1_j6gwo") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgryi"] +atlas = ExtResource("1_j6gwo") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h68b5"] +atlas = ExtResource("1_j6gwo") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w5hs"] +atlas = ExtResource("1_j6gwo") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71fem"] +atlas = ExtResource("1_j6gwo") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7ie5"] +atlas = ExtResource("1_j6gwo") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sqqh"] +atlas = ExtResource("1_j6gwo") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob703"] +atlas = ExtResource("1_j6gwo") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwmw3"] +atlas = ExtResource("1_j6gwo") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtepb"] +atlas = ExtResource("1_j6gwo") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8kgi"] +atlas = ExtResource("1_j6gwo") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_biaky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnenk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd10y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5308c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsvsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym30k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpk08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vskmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h68b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w5hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71fem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7ie5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sqqh") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob703") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwmw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtepb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8kgi") +}], +"loop": true, +"name": &"spiritofvaath", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_stophittingyourself.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_stophittingyourself.tres new file mode 100644 index 0000000..f10b131 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_stophittingyourself.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://b3jel0a0pstos"] + +[ext_resource type="Texture2D" uid="uid://ccw84t604a5p5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png" id="1_ht7gt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tdxg"] +atlas = ExtResource("1_ht7gt") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmsho"] +atlas = ExtResource("1_ht7gt") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1hgr"] +atlas = ExtResource("1_ht7gt") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyte8"] +atlas = ExtResource("1_ht7gt") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khsav"] +atlas = ExtResource("1_ht7gt") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0erve"] +atlas = ExtResource("1_ht7gt") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywid0"] +atlas = ExtResource("1_ht7gt") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw58l"] +atlas = ExtResource("1_ht7gt") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bpgd"] +atlas = ExtResource("1_ht7gt") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3tpb"] +atlas = ExtResource("1_ht7gt") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unfuu"] +atlas = ExtResource("1_ht7gt") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv0vc"] +atlas = ExtResource("1_ht7gt") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li5s7"] +atlas = ExtResource("1_ht7gt") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6pf8"] +atlas = ExtResource("1_ht7gt") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkcpn"] +atlas = ExtResource("1_ht7gt") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc81i"] +atlas = ExtResource("1_ht7gt") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge80q"] +atlas = ExtResource("1_ht7gt") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw1qf"] +atlas = ExtResource("1_ht7gt") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0koq"] +atlas = ExtResource("1_ht7gt") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tdxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmsho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1hgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyte8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khsav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0erve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywid0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw58l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bpgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3tpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unfuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv0vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li5s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6pf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkcpn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc81i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge80q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw1qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0koq") +}], +"loop": true, +"name": &"stophittingyourself", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tectonicspikes.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tectonicspikes.tres new file mode 100644 index 0000000..58c3301 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tectonicspikes.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://clqdkxx77p17a"] + +[ext_resource type="Texture2D" uid="uid://co1h71rai8kog" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png" id="1_fj4eb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pv6k"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgsc"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vqxj"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih8xw"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e72q8"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pr6c"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4pjy"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2in3s"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1y5k"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yynj"] +atlas = ExtResource("1_fj4eb") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kamm4"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aptwt"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptc7q"] +atlas = ExtResource("1_fj4eb") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3n5k"] +atlas = ExtResource("1_fj4eb") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2jqg"] +atlas = ExtResource("1_fj4eb") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21n7d"] +atlas = ExtResource("1_fj4eb") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auh7s"] +atlas = ExtResource("1_fj4eb") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ko0"] +atlas = ExtResource("1_fj4eb") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj2n8"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pskjk"] +atlas = ExtResource("1_fj4eb") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pv6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vqxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih8xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e72q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pr6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4pjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2in3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1y5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yynj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kamm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aptwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptc7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3n5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2jqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21n7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auh7s") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ko0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj2n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pskjk") +}], +"loop": true, +"name": &"tectonicspikes", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_thumpingwave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_thumpingwave.tres new file mode 100644 index 0000000..70dd2f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_thumpingwave.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://bja5srtg7j2ut"] + +[ext_resource type="Texture2D" uid="uid://b8yv6ox306fy7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png" id="1_kgcb0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_skbu3"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tj2p"] +atlas = ExtResource("1_kgcb0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftrrn"] +atlas = ExtResource("1_kgcb0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jwod"] +atlas = ExtResource("1_kgcb0") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewnah"] +atlas = ExtResource("1_kgcb0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qains"] +atlas = ExtResource("1_kgcb0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jckrf"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl43v"] +atlas = ExtResource("1_kgcb0") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm8d0"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xisw4"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie1du"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5tuv"] +atlas = ExtResource("1_kgcb0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ujij"] +atlas = ExtResource("1_kgcb0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coud7"] +atlas = ExtResource("1_kgcb0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipegv"] +atlas = ExtResource("1_kgcb0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so1qn"] +atlas = ExtResource("1_kgcb0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbdsj"] +atlas = ExtResource("1_kgcb0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1a7o"] +atlas = ExtResource("1_kgcb0") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inuja"] +atlas = ExtResource("1_kgcb0") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_skbu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tj2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftrrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jwod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewnah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qains") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jckrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl43v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm8d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xisw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie1du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5tuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ujij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coud7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipegv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so1qn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbdsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1a7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inuja") +}], +"loop": true, +"name": &"thumpingwave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_toothandtrial.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_toothandtrial.tres new file mode 100644 index 0000000..778a0f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_toothandtrial.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://dwqt0ycwybwbd"] + +[ext_resource type="Texture2D" uid="uid://c4efrsom8nyfh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png" id="1_acwqs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_we0vq"] +atlas = ExtResource("1_acwqs") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufr3r"] +atlas = ExtResource("1_acwqs") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obna5"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hin1w"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iql20"] +atlas = ExtResource("1_acwqs") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7pd8"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioxhw"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1o8j"] +atlas = ExtResource("1_acwqs") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as6q7"] +atlas = ExtResource("1_acwqs") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrwpy"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peybt"] +atlas = ExtResource("1_acwqs") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17n2l"] +atlas = ExtResource("1_acwqs") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsvy6"] +atlas = ExtResource("1_acwqs") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26neb"] +atlas = ExtResource("1_acwqs") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40yhj"] +atlas = ExtResource("1_acwqs") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0epfc"] +atlas = ExtResource("1_acwqs") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h8hq"] +atlas = ExtResource("1_acwqs") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_we0vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufr3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obna5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hin1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iql20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7pd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioxhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1o8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as6q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrwpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peybt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17n2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsvy6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_26neb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40yhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0epfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h8hq") +}], +"loop": true, +"name": &"toothandtrial", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tremor.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tremor.tres new file mode 100644 index 0000000..edd3d94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_tremor.tres @@ -0,0 +1,93 @@ +[gd_resource type="SpriteFrames" load_steps=13 format=3 uid="uid://daideyxxtvh65"] + +[ext_resource type="Texture2D" uid="uid://cv8mxx23ewxc2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png" id="1_sn8gw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckvc5"] +atlas = ExtResource("1_sn8gw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06kap"] +atlas = ExtResource("1_sn8gw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soeab"] +atlas = ExtResource("1_sn8gw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsraw"] +atlas = ExtResource("1_sn8gw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cot6c"] +atlas = ExtResource("1_sn8gw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k70wa"] +atlas = ExtResource("1_sn8gw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g054l"] +atlas = ExtResource("1_sn8gw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gk5p"] +atlas = ExtResource("1_sn8gw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4adbw"] +atlas = ExtResource("1_sn8gw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki2h4"] +atlas = ExtResource("1_sn8gw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tclj"] +atlas = ExtResource("1_sn8gw") +region = Rect2(49, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckvc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06kap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soeab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsraw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cot6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k70wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g054l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gk5p") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4adbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki2h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tclj") +}], +"loop": true, +"name": &"tremor", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_valknusseal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_valknusseal.tres new file mode 100644 index 0000000..454a921 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_valknusseal.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://c8plxy271db5a"] + +[ext_resource type="Texture2D" uid="uid://d3pm4v3kf7or3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png" id="1_ee4sw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk7ta"] +atlas = ExtResource("1_ee4sw") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w2n2"] +atlas = ExtResource("1_ee4sw") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n83me"] +atlas = ExtResource("1_ee4sw") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd6ch"] +atlas = ExtResource("1_ee4sw") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekxad"] +atlas = ExtResource("1_ee4sw") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gx5l"] +atlas = ExtResource("1_ee4sw") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c385j"] +atlas = ExtResource("1_ee4sw") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpmaf"] +atlas = ExtResource("1_ee4sw") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15uqb"] +atlas = ExtResource("1_ee4sw") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2xmc"] +atlas = ExtResource("1_ee4sw") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4ve"] +atlas = ExtResource("1_ee4sw") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a4bv"] +atlas = ExtResource("1_ee4sw") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50ugi"] +atlas = ExtResource("1_ee4sw") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14p45"] +atlas = ExtResource("1_ee4sw") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojt31"] +atlas = ExtResource("1_ee4sw") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqosm"] +atlas = ExtResource("1_ee4sw") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d4hw"] +atlas = ExtResource("1_ee4sw") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyxwk"] +atlas = ExtResource("1_ee4sw") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycd0w"] +atlas = ExtResource("1_ee4sw") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjxyu"] +atlas = ExtResource("1_ee4sw") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ppmw"] +atlas = ExtResource("1_ee4sw") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk7ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w2n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n83me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd6ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekxad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gx5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c385j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpmaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15uqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2xmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a4bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50ugi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14p45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojt31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqosm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d4hw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyxwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycd0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjxyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ppmw") +}], +"loop": true, +"name": &"valknusseal", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_verdantfulmination.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_verdantfulmination.tres new file mode 100644 index 0000000..574985d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_verdantfulmination.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://c0x1j5cb4nx0n"] + +[ext_resource type="Texture2D" uid="uid://c8md1firk218u" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png" id="1_i2gf2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_weh0g"] +atlas = ExtResource("1_i2gf2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lm0g"] +atlas = ExtResource("1_i2gf2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i4n1"] +atlas = ExtResource("1_i2gf2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgrkg"] +atlas = ExtResource("1_i2gf2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfda5"] +atlas = ExtResource("1_i2gf2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cxn0"] +atlas = ExtResource("1_i2gf2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0758"] +atlas = ExtResource("1_i2gf2") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiuxh"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k30l"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sk1v"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5yx7"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq3yl"] +atlas = ExtResource("1_i2gf2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7unl"] +atlas = ExtResource("1_i2gf2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qmxv"] +atlas = ExtResource("1_i2gf2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g5dk"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo0bo"] +atlas = ExtResource("1_i2gf2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcchu"] +atlas = ExtResource("1_i2gf2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj76u"] +atlas = ExtResource("1_i2gf2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qclq"] +atlas = ExtResource("1_i2gf2") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcndd"] +atlas = ExtResource("1_i2gf2") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fu4b"] +atlas = ExtResource("1_i2gf2") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_weh0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lm0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i4n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgrkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfda5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cxn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0758") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiuxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k30l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sk1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5yx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq3yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7unl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qmxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g5dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo0bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcchu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj76u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qclq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcndd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fu4b") +}], +"loop": true, +"name": &"verdantfulmination", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_yellrealloud.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_yellrealloud.tres new file mode 100644 index 0000000..98c7ea2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f5_yellrealloud.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://didme8oqck28g"] + +[ext_resource type="Texture2D" uid="uid://op5cnauvoopl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png" id="1_c7x6b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g532u"] +atlas = ExtResource("1_c7x6b") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64mkn"] +atlas = ExtResource("1_c7x6b") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_latsr"] +atlas = ExtResource("1_c7x6b") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnghv"] +atlas = ExtResource("1_c7x6b") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxf0e"] +atlas = ExtResource("1_c7x6b") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgdy8"] +atlas = ExtResource("1_c7x6b") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al2sx"] +atlas = ExtResource("1_c7x6b") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0i5w"] +atlas = ExtResource("1_c7x6b") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35oew"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysckb"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2s68"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oaac"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ec6"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l38s3"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5olp5"] +atlas = ExtResource("1_c7x6b") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fwqp"] +atlas = ExtResource("1_c7x6b") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2fh2"] +atlas = ExtResource("1_c7x6b") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qes2f"] +atlas = ExtResource("1_c7x6b") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok47p"] +atlas = ExtResource("1_c7x6b") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu47u"] +atlas = ExtResource("1_c7x6b") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo8mh"] +atlas = ExtResource("1_c7x6b") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36gen"] +atlas = ExtResource("1_c7x6b") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci6gu"] +atlas = ExtResource("1_c7x6b") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqt30"] +atlas = ExtResource("1_c7x6b") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkdyh"] +atlas = ExtResource("1_c7x6b") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g532u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64mkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_latsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnghv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxf0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgdy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al2sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0i5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35oew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysckb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2s68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oaac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ec6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l38s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5olp5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fwqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2fh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qes2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok47p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu47u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo8mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36gen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci6gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqt30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkdyh") +}], +"loop": true, +"name": &"yellrealloud", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_alteredbeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_alteredbeast.tres new file mode 100644 index 0000000..5b7222b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_alteredbeast.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://b0pw1egqay7d7"] + +[ext_resource type="Texture2D" uid="uid://hftmlpovja6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png" id="1_5a3hn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgjjo"] +atlas = ExtResource("1_5a3hn") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrluj"] +atlas = ExtResource("1_5a3hn") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twqi2"] +atlas = ExtResource("1_5a3hn") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2duhp"] +atlas = ExtResource("1_5a3hn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f38s"] +atlas = ExtResource("1_5a3hn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpfqb"] +atlas = ExtResource("1_5a3hn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oueov"] +atlas = ExtResource("1_5a3hn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgu3n"] +atlas = ExtResource("1_5a3hn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yooys"] +atlas = ExtResource("1_5a3hn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ypix"] +atlas = ExtResource("1_5a3hn") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kc67"] +atlas = ExtResource("1_5a3hn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giog1"] +atlas = ExtResource("1_5a3hn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sor2u"] +atlas = ExtResource("1_5a3hn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpehq"] +atlas = ExtResource("1_5a3hn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqhg0"] +atlas = ExtResource("1_5a3hn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1gft"] +atlas = ExtResource("1_5a3hn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61rj5"] +atlas = ExtResource("1_5a3hn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hofte"] +atlas = ExtResource("1_5a3hn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu24k"] +atlas = ExtResource("1_5a3hn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aj6l"] +atlas = ExtResource("1_5a3hn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5bxu"] +atlas = ExtResource("1_5a3hn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jppb6"] +atlas = ExtResource("1_5a3hn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o58a"] +atlas = ExtResource("1_5a3hn") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50ksx"] +atlas = ExtResource("1_5a3hn") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgjjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twqi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2duhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f38s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpfqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oueov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgu3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yooys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ypix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kc67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giog1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sor2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpehq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqhg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1gft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61rj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hofte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu24k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aj6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5bxu") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jppb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o58a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50ksx") +}], +"loop": true, +"name": &"alteredbeast", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ambush.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ambush.tres new file mode 100644 index 0000000..20092d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ambush.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://bfxkd7648ncoj"] + +[ext_resource type="Texture2D" uid="uid://bvj5lx6fxllad" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png" id="1_hd5c7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc1d0"] +atlas = ExtResource("1_hd5c7") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1274"] +atlas = ExtResource("1_hd5c7") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1nji"] +atlas = ExtResource("1_hd5c7") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl40x"] +atlas = ExtResource("1_hd5c7") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h7ls"] +atlas = ExtResource("1_hd5c7") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ome4u"] +atlas = ExtResource("1_hd5c7") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4baar"] +atlas = ExtResource("1_hd5c7") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5cgg"] +atlas = ExtResource("1_hd5c7") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfuke"] +atlas = ExtResource("1_hd5c7") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgf46"] +atlas = ExtResource("1_hd5c7") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogq2j"] +atlas = ExtResource("1_hd5c7") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48j1x"] +atlas = ExtResource("1_hd5c7") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eue1"] +atlas = ExtResource("1_hd5c7") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25m2i"] +atlas = ExtResource("1_hd5c7") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fas4y"] +atlas = ExtResource("1_hd5c7") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkvfs"] +atlas = ExtResource("1_hd5c7") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km640"] +atlas = ExtResource("1_hd5c7") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amsvt"] +atlas = ExtResource("1_hd5c7") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku0p3"] +atlas = ExtResource("1_hd5c7") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brwu8"] +atlas = ExtResource("1_hd5c7") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1274") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1nji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl40x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h7ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ome4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4baar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5cgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfuke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgf46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogq2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48j1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eue1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25m2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fas4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkvfs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_km640") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amsvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku0p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brwu8") +}], +"loop": true, +"name": &"ambush", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofidentity.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofidentity.tres new file mode 100644 index 0000000..9cd1fb3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofidentity.tres @@ -0,0 +1,492 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://ok7imyuqrvpu"] + +[ext_resource type="Texture2D" uid="uid://b4gq3rn0qm20m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png" id="1_buxqx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5hpv"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 392, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8mlf"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjhkc"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyhq5"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4rjy"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elmjb"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2kxe"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fa82"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kg7s"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lxrv"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt75u"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgshq"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvveu"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7de6c"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qyf0"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibond"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb1js"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c25ni"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab6ib"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktmbs"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 392, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqdvt"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 343, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec3b2"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h52a"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1usnd"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2hv3"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arkd2"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62lvw"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc5wy"] +atlas = ExtResource("1_buxqx") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mr68"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp084"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 392, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8so3x"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 343, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1thk1"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn21i"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45oxe"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uask"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msmw8"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1wc7"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvrou"] +atlas = ExtResource("1_buxqx") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5k5x"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajph6"] +atlas = ExtResource("1_buxqx") +region = Rect2(245, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu213"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 343, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th5p7"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2dh6"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5bta"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q52wm"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ufrs"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cffdl"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwvau"] +atlas = ExtResource("1_buxqx") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krt5x"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6hfd"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 392, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5fd7"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 343, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjtbn"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tywmv"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdykb"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hyg5"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya6qr"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgbm7"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmodg"] +atlas = ExtResource("1_buxqx") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3im5"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 441, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3vf2"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 392, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqwio"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 343, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_houlh"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 294, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d234t"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 245, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v62r3"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wkpd"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5560j"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3j7i"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gypm2"] +atlas = ExtResource("1_buxqx") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5hpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8mlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjhkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyhq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4rjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elmjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2kxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fa82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kg7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lxrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt75u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgshq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvveu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7de6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qyf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibond") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb1js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c25ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab6ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktmbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqdvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec3b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h52a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1usnd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2hv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arkd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62lvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc5wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mr68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp084") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8so3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1thk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn21i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45oxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uask") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msmw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1wc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvrou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5k5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajph6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu213") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th5p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2dh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5bta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q52wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ufrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cffdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwvau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krt5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6hfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5fd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjtbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tywmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdykb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hyg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya6qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgbm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmodg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3im5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3vf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqwio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_houlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d234t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v62r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wkpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5560j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3j7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gypm2") +}], +"loop": true, +"name": &"aspectofidentity", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthebear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthebear.tres new file mode 100644 index 0000000..170a7a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthebear.tres @@ -0,0 +1,310 @@ +[gd_resource type="SpriteFrames" load_steps=44 format=3 uid="uid://bop1b7dtv2cjp"] + +[ext_resource type="Texture2D" uid="uid://coi1olf36akr6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png" id="1_miorh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dpx6"] +atlas = ExtResource("1_miorh") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wjwu"] +atlas = ExtResource("1_miorh") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxh6k"] +atlas = ExtResource("1_miorh") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohln"] +atlas = ExtResource("1_miorh") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq8ok"] +atlas = ExtResource("1_miorh") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lho4s"] +atlas = ExtResource("1_miorh") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jjcp"] +atlas = ExtResource("1_miorh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebpn5"] +atlas = ExtResource("1_miorh") +region = Rect2(392, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebt0b"] +atlas = ExtResource("1_miorh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fso85"] +atlas = ExtResource("1_miorh") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxfqd"] +atlas = ExtResource("1_miorh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygjgs"] +atlas = ExtResource("1_miorh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fpew"] +atlas = ExtResource("1_miorh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysqcw"] +atlas = ExtResource("1_miorh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6myh1"] +atlas = ExtResource("1_miorh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahvs3"] +atlas = ExtResource("1_miorh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orina"] +atlas = ExtResource("1_miorh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpwqj"] +atlas = ExtResource("1_miorh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1xmm"] +atlas = ExtResource("1_miorh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vnnd"] +atlas = ExtResource("1_miorh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl5er"] +atlas = ExtResource("1_miorh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we63m"] +atlas = ExtResource("1_miorh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8cxm"] +atlas = ExtResource("1_miorh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d67tn"] +atlas = ExtResource("1_miorh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxxr6"] +atlas = ExtResource("1_miorh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8637"] +atlas = ExtResource("1_miorh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liu4v"] +atlas = ExtResource("1_miorh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6un0m"] +atlas = ExtResource("1_miorh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh841"] +atlas = ExtResource("1_miorh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmtb5"] +atlas = ExtResource("1_miorh") +region = Rect2(392, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vlqx"] +atlas = ExtResource("1_miorh") +region = Rect2(343, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm8qr"] +atlas = ExtResource("1_miorh") +region = Rect2(343, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw7u7"] +atlas = ExtResource("1_miorh") +region = Rect2(343, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iksq"] +atlas = ExtResource("1_miorh") +region = Rect2(343, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrqkv"] +atlas = ExtResource("1_miorh") +region = Rect2(343, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbj08"] +atlas = ExtResource("1_miorh") +region = Rect2(294, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg04a"] +atlas = ExtResource("1_miorh") +region = Rect2(294, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5flx"] +atlas = ExtResource("1_miorh") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hujbq"] +atlas = ExtResource("1_miorh") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdiw5"] +atlas = ExtResource("1_miorh") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4plgu"] +atlas = ExtResource("1_miorh") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rix2"] +atlas = ExtResource("1_miorh") +region = Rect2(245, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dpx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wjwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxh6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq8ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lho4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jjcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebpn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebt0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fso85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxfqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygjgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fpew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysqcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6myh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahvs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orina") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpwqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1xmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vnnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl5er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we63m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8cxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d67tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxxr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8637") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liu4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6un0m") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh841") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmtb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vlqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm8qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw7u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iksq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrqkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbj08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg04a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5flx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hujbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdiw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4plgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rix2") +}], +"loop": true, +"name": &"aspectofthebear", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthedrake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthedrake.tres new file mode 100644 index 0000000..74184fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthedrake.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bluxk5nbdfyyd"] + +[ext_resource type="Texture2D" uid="uid://bj1f5jo061td" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png" id="1_8gtce"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfrq0"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq3rf"] +atlas = ExtResource("1_8gtce") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcp3c"] +atlas = ExtResource("1_8gtce") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0wel"] +atlas = ExtResource("1_8gtce") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s03ce"] +atlas = ExtResource("1_8gtce") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulo5p"] +atlas = ExtResource("1_8gtce") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ew08"] +atlas = ExtResource("1_8gtce") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ccoj"] +atlas = ExtResource("1_8gtce") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddlmt"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n62rc"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vogi7"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub56m"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8hy3"] +atlas = ExtResource("1_8gtce") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwvwh"] +atlas = ExtResource("1_8gtce") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evfyh"] +atlas = ExtResource("1_8gtce") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2ywk"] +atlas = ExtResource("1_8gtce") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwgj6"] +atlas = ExtResource("1_8gtce") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53mdt"] +atlas = ExtResource("1_8gtce") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jours"] +atlas = ExtResource("1_8gtce") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfm2n"] +atlas = ExtResource("1_8gtce") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fqga"] +atlas = ExtResource("1_8gtce") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfrq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq3rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcp3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0wel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s03ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulo5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ew08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ccoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddlmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n62rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vogi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub56m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8hy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwvwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evfyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2ywk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwgj6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_53mdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jours") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfm2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fqga") +}], +"loop": true, +"name": &"aspectofthedrake", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthefox.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthefox.tres new file mode 100644 index 0000000..c407ba9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthefox.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://lbm6c5rbmj0s"] + +[ext_resource type="Texture2D" uid="uid://dyvbquq8mdhek" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png" id="1_rjflr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_inbra"] +atlas = ExtResource("1_rjflr") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auv6j"] +atlas = ExtResource("1_rjflr") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpp0u"] +atlas = ExtResource("1_rjflr") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvyln"] +atlas = ExtResource("1_rjflr") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30fop"] +atlas = ExtResource("1_rjflr") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftyy6"] +atlas = ExtResource("1_rjflr") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scx1m"] +atlas = ExtResource("1_rjflr") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkvs7"] +atlas = ExtResource("1_rjflr") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw4x0"] +atlas = ExtResource("1_rjflr") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bjt6"] +atlas = ExtResource("1_rjflr") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5okt"] +atlas = ExtResource("1_rjflr") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4htb"] +atlas = ExtResource("1_rjflr") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u31ie"] +atlas = ExtResource("1_rjflr") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngxbi"] +atlas = ExtResource("1_rjflr") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbjui"] +atlas = ExtResource("1_rjflr") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4yg"] +atlas = ExtResource("1_rjflr") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xooq"] +atlas = ExtResource("1_rjflr") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myik1"] +atlas = ExtResource("1_rjflr") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mmro"] +atlas = ExtResource("1_rjflr") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_inbra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auv6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpp0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvyln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30fop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftyy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scx1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkvs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw4x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bjt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5okt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4htb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u31ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngxbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbjui") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb4yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xooq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myik1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mmro") +}], +"loop": true, +"name": &"aspectofthefox", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthemountains.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthemountains.tres new file mode 100644 index 0000000..f6a52bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_aspectofthemountains.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://cjeq0aak6t0"] + +[ext_resource type="Texture2D" uid="uid://548c313m6cf2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png" id="1_0dc08"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uio2u"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqmsq"] +atlas = ExtResource("1_0dc08") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5obx"] +atlas = ExtResource("1_0dc08") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apjsv"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u01hv"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_johad"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxn86"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh0js"] +atlas = ExtResource("1_0dc08") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc8p6"] +atlas = ExtResource("1_0dc08") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rtx8"] +atlas = ExtResource("1_0dc08") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hca1o"] +atlas = ExtResource("1_0dc08") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d08tt"] +atlas = ExtResource("1_0dc08") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rflx"] +atlas = ExtResource("1_0dc08") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4lgw"] +atlas = ExtResource("1_0dc08") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxwj8"] +atlas = ExtResource("1_0dc08") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uioi4"] +atlas = ExtResource("1_0dc08") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a43lu"] +atlas = ExtResource("1_0dc08") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vryy4"] +atlas = ExtResource("1_0dc08") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egi0r"] +atlas = ExtResource("1_0dc08") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuxcx"] +atlas = ExtResource("1_0dc08") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5786f"] +atlas = ExtResource("1_0dc08") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t88na"] +atlas = ExtResource("1_0dc08") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uio2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqmsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5obx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apjsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u01hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_johad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxn86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh0js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc8p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rtx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hca1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d08tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rflx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4lgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxwj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uioi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a43lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vryy4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_egi0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuxcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5786f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t88na") +}], +"loop": true, +"name": &"aspectofthemountains", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_avalanche.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_avalanche.tres new file mode 100644 index 0000000..3f8d44f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_avalanche.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://jdpc1fbh2jk"] + +[ext_resource type="Texture2D" uid="uid://p1gm5s6wmvvy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png" id="1_8wiw6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wntb3"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57guq"] +atlas = ExtResource("1_8wiw6") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsuqn"] +atlas = ExtResource("1_8wiw6") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a11g7"] +atlas = ExtResource("1_8wiw6") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwil0"] +atlas = ExtResource("1_8wiw6") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx0u7"] +atlas = ExtResource("1_8wiw6") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1svr1"] +atlas = ExtResource("1_8wiw6") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kp64"] +atlas = ExtResource("1_8wiw6") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2gkf"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1jvf"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru4qg"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3sw"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mybi"] +atlas = ExtResource("1_8wiw6") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxei0"] +atlas = ExtResource("1_8wiw6") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1ikp"] +atlas = ExtResource("1_8wiw6") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptdht"] +atlas = ExtResource("1_8wiw6") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fecm2"] +atlas = ExtResource("1_8wiw6") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcu0n"] +atlas = ExtResource("1_8wiw6") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnkr1"] +atlas = ExtResource("1_8wiw6") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28yoy"] +atlas = ExtResource("1_8wiw6") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwegi"] +atlas = ExtResource("1_8wiw6") +region = Rect2(147, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wntb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57guq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsuqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a11g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwil0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx0u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1svr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kp64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2gkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1jvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru4qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mybi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxei0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1ikp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptdht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fecm2") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcu0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnkr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28yoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwegi") +}], +"loop": true, +"name": &"avalanche", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_blazingspines.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_blazingspines.tres new file mode 100644 index 0000000..167f099 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_blazingspines.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://bs6fht5cci67s"] + +[ext_resource type="Texture2D" uid="uid://ca3c3kkrwnfj7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png" id="1_lihiy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpc33"] +atlas = ExtResource("1_lihiy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ytt"] +atlas = ExtResource("1_lihiy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qmhi"] +atlas = ExtResource("1_lihiy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcwcd"] +atlas = ExtResource("1_lihiy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55slf"] +atlas = ExtResource("1_lihiy") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylexw"] +atlas = ExtResource("1_lihiy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jky"] +atlas = ExtResource("1_lihiy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viqrs"] +atlas = ExtResource("1_lihiy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqxfx"] +atlas = ExtResource("1_lihiy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbi0p"] +atlas = ExtResource("1_lihiy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ej7"] +atlas = ExtResource("1_lihiy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74iit"] +atlas = ExtResource("1_lihiy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff6jr"] +atlas = ExtResource("1_lihiy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2bwa"] +atlas = ExtResource("1_lihiy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vus2a"] +atlas = ExtResource("1_lihiy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfr14"] +atlas = ExtResource("1_lihiy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diqf0"] +atlas = ExtResource("1_lihiy") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpc33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ytt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qmhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcwcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55slf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylexw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6jky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viqrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqxfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbi0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ej7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74iit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff6jr") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2bwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vus2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfr14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diqf0") +}], +"loop": true, +"name": &"blazingspines", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_bonechillbarrier.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_bonechillbarrier.tres new file mode 100644 index 0000000..381c79b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_bonechillbarrier.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://d3c1rywpv42nf"] + +[ext_resource type="Texture2D" uid="uid://sa4punqtdxdn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png" id="1_5fjo8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gk7o"] +atlas = ExtResource("1_5fjo8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6mjf"] +atlas = ExtResource("1_5fjo8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1athm"] +atlas = ExtResource("1_5fjo8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wykuy"] +atlas = ExtResource("1_5fjo8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et1q7"] +atlas = ExtResource("1_5fjo8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n52yg"] +atlas = ExtResource("1_5fjo8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdmuv"] +atlas = ExtResource("1_5fjo8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs7hm"] +atlas = ExtResource("1_5fjo8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcey4"] +atlas = ExtResource("1_5fjo8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5jtc"] +atlas = ExtResource("1_5fjo8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h37we"] +atlas = ExtResource("1_5fjo8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vahiy"] +atlas = ExtResource("1_5fjo8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y6p1"] +atlas = ExtResource("1_5fjo8") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gk7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6mjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1athm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wykuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et1q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n52yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdmuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs7hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcey4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5jtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h37we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vahiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y6p1") +}], +"loop": true, +"name": &"bonechillbarrier", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_chromaticcold.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_chromaticcold.tres new file mode 100644 index 0000000..22775cb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_chromaticcold.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://7gkls3o77vnn"] + +[ext_resource type="Texture2D" uid="uid://d0o6qv6x6pe5g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png" id="1_keld2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c4ng"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc7up"] +atlas = ExtResource("1_keld2") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb1bo"] +atlas = ExtResource("1_keld2") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcrvw"] +atlas = ExtResource("1_keld2") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uiq1"] +atlas = ExtResource("1_keld2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecqvd"] +atlas = ExtResource("1_keld2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo8pc"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nstn"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4n5p"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b67gl"] +atlas = ExtResource("1_keld2") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlqdr"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpup0"] +atlas = ExtResource("1_keld2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77cxl"] +atlas = ExtResource("1_keld2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t0mt"] +atlas = ExtResource("1_keld2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10nep"] +atlas = ExtResource("1_keld2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ggx"] +atlas = ExtResource("1_keld2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd5ns"] +atlas = ExtResource("1_keld2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrubt"] +atlas = ExtResource("1_keld2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtd3d"] +atlas = ExtResource("1_keld2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f7t7"] +atlas = ExtResource("1_keld2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pjgs"] +atlas = ExtResource("1_keld2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqbqt"] +atlas = ExtResource("1_keld2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8jv8"] +atlas = ExtResource("1_keld2") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tdmg"] +atlas = ExtResource("1_keld2") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klo1p"] +atlas = ExtResource("1_keld2") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c4ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc7up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb1bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcrvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uiq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecqvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo8pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nstn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4n5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b67gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlqdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpup0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77cxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t0mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10nep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd5ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrubt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtd3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f7t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pjgs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqbqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8jv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tdmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klo1p") +}], +"loop": true, +"name": &"chromaticcold", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_conceilingshroud.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_conceilingshroud.tres new file mode 100644 index 0000000..6592f87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_conceilingshroud.tres @@ -0,0 +1,135 @@ +[gd_resource type="SpriteFrames" load_steps=19 format=3 uid="uid://du3d5abew4ka2"] + +[ext_resource type="Texture2D" uid="uid://ctrfw708q8hpf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png" id="1_tlenf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uaa0"] +atlas = ExtResource("1_tlenf") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ivqq"] +atlas = ExtResource("1_tlenf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krxjg"] +atlas = ExtResource("1_tlenf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmgue"] +atlas = ExtResource("1_tlenf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f5yg"] +atlas = ExtResource("1_tlenf") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g06es"] +atlas = ExtResource("1_tlenf") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88mty"] +atlas = ExtResource("1_tlenf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfc6b"] +atlas = ExtResource("1_tlenf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muefs"] +atlas = ExtResource("1_tlenf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qnnv"] +atlas = ExtResource("1_tlenf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c4h5"] +atlas = ExtResource("1_tlenf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5jeo"] +atlas = ExtResource("1_tlenf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kspy"] +atlas = ExtResource("1_tlenf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg3gy"] +atlas = ExtResource("1_tlenf") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxk01"] +atlas = ExtResource("1_tlenf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gpij"] +atlas = ExtResource("1_tlenf") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cylqf"] +atlas = ExtResource("1_tlenf") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uaa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ivqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krxjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmgue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f5yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g06es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88mty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfc6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muefs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qnnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c4h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5jeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kspy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg3gy") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxk01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gpij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cylqf") +}], +"loop": true, +"name": &"conceilingshroud", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_creepingfrost.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_creepingfrost.tres new file mode 100644 index 0000000..cbb0fd8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_creepingfrost.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://ck5h62pnrg1bq"] + +[ext_resource type="Texture2D" uid="uid://bywyueewxc7mp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png" id="1_aqmeg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8j6k"] +atlas = ExtResource("1_aqmeg") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kakad"] +atlas = ExtResource("1_aqmeg") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdphj"] +atlas = ExtResource("1_aqmeg") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p41vc"] +atlas = ExtResource("1_aqmeg") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkdj8"] +atlas = ExtResource("1_aqmeg") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr22i"] +atlas = ExtResource("1_aqmeg") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmww7"] +atlas = ExtResource("1_aqmeg") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpjgo"] +atlas = ExtResource("1_aqmeg") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efe5b"] +atlas = ExtResource("1_aqmeg") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db4e5"] +atlas = ExtResource("1_aqmeg") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbewq"] +atlas = ExtResource("1_aqmeg") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxjpx"] +atlas = ExtResource("1_aqmeg") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4yga"] +atlas = ExtResource("1_aqmeg") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_848o2"] +atlas = ExtResource("1_aqmeg") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wlct"] +atlas = ExtResource("1_aqmeg") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_685rw"] +atlas = ExtResource("1_aqmeg") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upl7i"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4jdb"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv4p0"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rhe1"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lp1k"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kifah"] +atlas = ExtResource("1_aqmeg") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxifj"] +atlas = ExtResource("1_aqmeg") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qco57"] +atlas = ExtResource("1_aqmeg") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeg6v"] +atlas = ExtResource("1_aqmeg") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1fyw"] +atlas = ExtResource("1_aqmeg") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6kuo"] +atlas = ExtResource("1_aqmeg") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or6pn"] +atlas = ExtResource("1_aqmeg") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ejee"] +atlas = ExtResource("1_aqmeg") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0l5g"] +atlas = ExtResource("1_aqmeg") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8j6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kakad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdphj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p41vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkdj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr22i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmww7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpjgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efe5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db4e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbewq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxjpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4yga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_848o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wlct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_685rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upl7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4jdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv4p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rhe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lp1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kifah") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxifj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qco57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeg6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1fyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6kuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or6pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ejee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0l5g") +}], +"loop": true, +"name": &"creepingfrost", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_cryogenesis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_cryogenesis.tres new file mode 100644 index 0000000..91258be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_cryogenesis.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://c4wgw01kwbuty"] + +[ext_resource type="Texture2D" uid="uid://c1royw42qklyx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png" id="1_vyqb5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1osg"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppqg3"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3mfj"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bytqa"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo7nh"] +atlas = ExtResource("1_vyqb5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgvds"] +atlas = ExtResource("1_vyqb5") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy301"] +atlas = ExtResource("1_vyqb5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbulj"] +atlas = ExtResource("1_vyqb5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj8y7"] +atlas = ExtResource("1_vyqb5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2st4"] +atlas = ExtResource("1_vyqb5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt5oe"] +atlas = ExtResource("1_vyqb5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t15j"] +atlas = ExtResource("1_vyqb5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlf1b"] +atlas = ExtResource("1_vyqb5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77r0j"] +atlas = ExtResource("1_vyqb5") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3fo6"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y752u"] +atlas = ExtResource("1_vyqb5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keuuu"] +atlas = ExtResource("1_vyqb5") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cog7f"] +atlas = ExtResource("1_vyqb5") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1osg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppqg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3mfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bytqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo7nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgvds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy301") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbulj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj8y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2st4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt5oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t15j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlf1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77r0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3fo6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y752u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keuuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cog7f") +}], +"loop": true, +"name": &"cryogenesis", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_enfeeble.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_enfeeble.tres new file mode 100644 index 0000000..0226f7e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_enfeeble.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bhwxgx2vuujna"] + +[ext_resource type="Texture2D" uid="uid://550lte21wh16" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png" id="1_fgfy4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ospao"] +atlas = ExtResource("1_fgfy4") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spy06"] +atlas = ExtResource("1_fgfy4") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a2xm"] +atlas = ExtResource("1_fgfy4") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppamo"] +atlas = ExtResource("1_fgfy4") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjei7"] +atlas = ExtResource("1_fgfy4") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akvi0"] +atlas = ExtResource("1_fgfy4") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58va7"] +atlas = ExtResource("1_fgfy4") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uk58"] +atlas = ExtResource("1_fgfy4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lyr7"] +atlas = ExtResource("1_fgfy4") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uayib"] +atlas = ExtResource("1_fgfy4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjcbq"] +atlas = ExtResource("1_fgfy4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc3na"] +atlas = ExtResource("1_fgfy4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28362"] +atlas = ExtResource("1_fgfy4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otqaj"] +atlas = ExtResource("1_fgfy4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwuso"] +atlas = ExtResource("1_fgfy4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2keqy"] +atlas = ExtResource("1_fgfy4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwn1e"] +atlas = ExtResource("1_fgfy4") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73bty"] +atlas = ExtResource("1_fgfy4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlhwd"] +atlas = ExtResource("1_fgfy4") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykly5"] +atlas = ExtResource("1_fgfy4") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n1oo"] +atlas = ExtResource("1_fgfy4") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ospao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spy06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a2xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppamo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjei7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akvi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58va7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uk58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lyr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uayib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjcbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc3na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28362") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otqaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwuso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2keqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwn1e") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_73bty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlhwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykly5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n1oo") +}], +"loop": true, +"name": &"enfeeble", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_entericedome.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_entericedome.tres new file mode 100644 index 0000000..2340a24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_entericedome.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bqe2lx3guhb8n"] + +[ext_resource type="Texture2D" uid="uid://bmm1i7uqo0qeb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png" id="1_bihp1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqswv"] +atlas = ExtResource("1_bihp1") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym72x"] +atlas = ExtResource("1_bihp1") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmxxk"] +atlas = ExtResource("1_bihp1") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w1om"] +atlas = ExtResource("1_bihp1") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1w8u"] +atlas = ExtResource("1_bihp1") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1f8u"] +atlas = ExtResource("1_bihp1") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq0jc"] +atlas = ExtResource("1_bihp1") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j3rs"] +atlas = ExtResource("1_bihp1") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjgjq"] +atlas = ExtResource("1_bihp1") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odleh"] +atlas = ExtResource("1_bihp1") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vr50"] +atlas = ExtResource("1_bihp1") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1g76"] +atlas = ExtResource("1_bihp1") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7oii"] +atlas = ExtResource("1_bihp1") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thnfg"] +atlas = ExtResource("1_bihp1") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drk70"] +atlas = ExtResource("1_bihp1") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb22o"] +atlas = ExtResource("1_bihp1") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8kbf"] +atlas = ExtResource("1_bihp1") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j17wd"] +atlas = ExtResource("1_bihp1") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du4gy"] +atlas = ExtResource("1_bihp1") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jmj0"] +atlas = ExtResource("1_bihp1") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rosa"] +atlas = ExtResource("1_bihp1") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkbum"] +atlas = ExtResource("1_bihp1") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekmi0"] +atlas = ExtResource("1_bihp1") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpr84"] +atlas = ExtResource("1_bihp1") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3jsf"] +atlas = ExtResource("1_bihp1") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky01e"] +atlas = ExtResource("1_bihp1") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ow8"] +atlas = ExtResource("1_bihp1") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idigd"] +atlas = ExtResource("1_bihp1") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3116"] +atlas = ExtResource("1_bihp1") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uir8k"] +atlas = ExtResource("1_bihp1") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqswv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym72x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmxxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w1om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1w8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1f8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq0jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j3rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjgjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odleh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vr50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1g76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7oii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thnfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drk70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb22o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8kbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j17wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du4gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jmj0") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rosa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkbum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekmi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpr84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3jsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky01e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ow8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idigd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3116") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uir8k") +}], +"loop": true, +"name": &"entericedome", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_flashfreeze.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_flashfreeze.tres new file mode 100644 index 0000000..cb4a8c4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_flashfreeze.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://dtylohelc7phk"] + +[ext_resource type="Texture2D" uid="uid://b11efrqy17fpm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png" id="1_24kk3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1cpl"] +atlas = ExtResource("1_24kk3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3cj5"] +atlas = ExtResource("1_24kk3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwbpd"] +atlas = ExtResource("1_24kk3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66tuu"] +atlas = ExtResource("1_24kk3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il82h"] +atlas = ExtResource("1_24kk3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be2pt"] +atlas = ExtResource("1_24kk3") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnxia"] +atlas = ExtResource("1_24kk3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbtc"] +atlas = ExtResource("1_24kk3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt0c2"] +atlas = ExtResource("1_24kk3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g41cx"] +atlas = ExtResource("1_24kk3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j25o2"] +atlas = ExtResource("1_24kk3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ffom"] +atlas = ExtResource("1_24kk3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q75nq"] +atlas = ExtResource("1_24kk3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xgc5"] +atlas = ExtResource("1_24kk3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pr4t"] +atlas = ExtResource("1_24kk3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl1ad"] +atlas = ExtResource("1_24kk3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr1jk"] +atlas = ExtResource("1_24kk3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8plf"] +atlas = ExtResource("1_24kk3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r71q6"] +atlas = ExtResource("1_24kk3") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1cpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3cj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwbpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66tuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il82h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be2pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnxia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt0c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g41cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j25o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ffom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q75nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xgc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pr4t") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl1ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr1jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8plf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r71q6") +}], +"loop": true, +"name": &"flashfreeze", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frigidcorona.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frigidcorona.tres new file mode 100644 index 0000000..b5c6977 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frigidcorona.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://34u86to6de7e"] + +[ext_resource type="Texture2D" uid="uid://db5ffr03axs16" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png" id="1_0qo1h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw5ck"] +atlas = ExtResource("1_0qo1h") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e16f"] +atlas = ExtResource("1_0qo1h") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjupj"] +atlas = ExtResource("1_0qo1h") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev3wc"] +atlas = ExtResource("1_0qo1h") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6eec"] +atlas = ExtResource("1_0qo1h") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_160gs"] +atlas = ExtResource("1_0qo1h") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34rf0"] +atlas = ExtResource("1_0qo1h") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg2k4"] +atlas = ExtResource("1_0qo1h") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pumm1"] +atlas = ExtResource("1_0qo1h") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b10nl"] +atlas = ExtResource("1_0qo1h") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg3sw"] +atlas = ExtResource("1_0qo1h") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tobks"] +atlas = ExtResource("1_0qo1h") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlkup"] +atlas = ExtResource("1_0qo1h") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddpnj"] +atlas = ExtResource("1_0qo1h") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ungv"] +atlas = ExtResource("1_0qo1h") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1nks"] +atlas = ExtResource("1_0qo1h") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dvpn"] +atlas = ExtResource("1_0qo1h") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce5rj"] +atlas = ExtResource("1_0qo1h") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gchs"] +atlas = ExtResource("1_0qo1h") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17w8g"] +atlas = ExtResource("1_0qo1h") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cypls"] +atlas = ExtResource("1_0qo1h") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bipig"] +atlas = ExtResource("1_0qo1h") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4c36"] +atlas = ExtResource("1_0qo1h") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jticf"] +atlas = ExtResource("1_0qo1h") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw5ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e16f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjupj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev3wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6eec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_160gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34rf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg2k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pumm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b10nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg3sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tobks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlkup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddpnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ungv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1nks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dvpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce5rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gchs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17w8g") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cypls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bipig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4c36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jticf") +}], +"loop": true, +"name": &"frigidcorona", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostburn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostburn.tres new file mode 100644 index 0000000..65e1396 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostburn.tres @@ -0,0 +1,233 @@ +[gd_resource type="SpriteFrames" load_steps=33 format=3 uid="uid://cbmhhcri2nhw3"] + +[ext_resource type="Texture2D" uid="uid://cflbrildabckt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png" id="1_rbpem"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8488i"] +atlas = ExtResource("1_rbpem") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfeb0"] +atlas = ExtResource("1_rbpem") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x086"] +atlas = ExtResource("1_rbpem") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbaxl"] +atlas = ExtResource("1_rbpem") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogm22"] +atlas = ExtResource("1_rbpem") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqua0"] +atlas = ExtResource("1_rbpem") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snvl6"] +atlas = ExtResource("1_rbpem") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bunl1"] +atlas = ExtResource("1_rbpem") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgs1k"] +atlas = ExtResource("1_rbpem") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2sec"] +atlas = ExtResource("1_rbpem") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8evq"] +atlas = ExtResource("1_rbpem") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb4tq"] +atlas = ExtResource("1_rbpem") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itnxn"] +atlas = ExtResource("1_rbpem") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yyfj"] +atlas = ExtResource("1_rbpem") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhu5u"] +atlas = ExtResource("1_rbpem") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqyr2"] +atlas = ExtResource("1_rbpem") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ratem"] +atlas = ExtResource("1_rbpem") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yern"] +atlas = ExtResource("1_rbpem") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1bvl"] +atlas = ExtResource("1_rbpem") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxgcp"] +atlas = ExtResource("1_rbpem") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4flbt"] +atlas = ExtResource("1_rbpem") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa8ms"] +atlas = ExtResource("1_rbpem") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_067js"] +atlas = ExtResource("1_rbpem") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sejmf"] +atlas = ExtResource("1_rbpem") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k8ex"] +atlas = ExtResource("1_rbpem") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjnr7"] +atlas = ExtResource("1_rbpem") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cevku"] +atlas = ExtResource("1_rbpem") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdj80"] +atlas = ExtResource("1_rbpem") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psfbq"] +atlas = ExtResource("1_rbpem") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeeu4"] +atlas = ExtResource("1_rbpem") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_povv2"] +atlas = ExtResource("1_rbpem") +region = Rect2(245, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8488i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfeb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x086") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbaxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogm22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snvl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bunl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgs1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2sec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8evq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb4tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itnxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yyfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhu5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqyr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ratem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yern") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1bvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxgcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4flbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa8ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_067js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sejmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k8ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjnr7") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cevku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdj80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psfbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeeu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_povv2") +}], +"loop": true, +"name": &"frostburn", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostfire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostfire.tres new file mode 100644 index 0000000..2645f4d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_frostfire.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://dyt31euk6pkna"] + +[ext_resource type="Texture2D" uid="uid://cyjaotts4cubc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png" id="1_aix3k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qgsv"] +atlas = ExtResource("1_aix3k") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k801f"] +atlas = ExtResource("1_aix3k") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba4x4"] +atlas = ExtResource("1_aix3k") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43kig"] +atlas = ExtResource("1_aix3k") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh13m"] +atlas = ExtResource("1_aix3k") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7jvy"] +atlas = ExtResource("1_aix3k") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhr10"] +atlas = ExtResource("1_aix3k") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7aqf"] +atlas = ExtResource("1_aix3k") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6cdy"] +atlas = ExtResource("1_aix3k") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvoja"] +atlas = ExtResource("1_aix3k") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hklwv"] +atlas = ExtResource("1_aix3k") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we8cj"] +atlas = ExtResource("1_aix3k") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qo6m"] +atlas = ExtResource("1_aix3k") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doxg3"] +atlas = ExtResource("1_aix3k") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1npe0"] +atlas = ExtResource("1_aix3k") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_034y6"] +atlas = ExtResource("1_aix3k") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiefs"] +atlas = ExtResource("1_aix3k") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5y71"] +atlas = ExtResource("1_aix3k") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chvnp"] +atlas = ExtResource("1_aix3k") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flijq"] +atlas = ExtResource("1_aix3k") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ia7"] +atlas = ExtResource("1_aix3k") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk8wy"] +atlas = ExtResource("1_aix3k") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qgsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k801f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba4x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43kig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh13m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7jvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhr10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7aqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6cdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvoja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hklwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we8cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qo6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doxg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1npe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_034y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiefs") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5y71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chvnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flijq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ia7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk8wy") +}], +"loop": true, +"name": &"frostfire", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_glacialfissure.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_glacialfissure.tres new file mode 100644 index 0000000..c86e593 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_glacialfissure.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://dec6bscevk4x0"] + +[ext_resource type="Texture2D" uid="uid://b31ockmf0jss2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png" id="1_j4u05"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bloth"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ck1q"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5w61"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enmyd"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7yhi"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp1bt"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nin0v"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkeqf"] +atlas = ExtResource("1_j4u05") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2cff"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k85au"] +atlas = ExtResource("1_j4u05") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdkff"] +atlas = ExtResource("1_j4u05") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb46u"] +atlas = ExtResource("1_j4u05") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6db0"] +atlas = ExtResource("1_j4u05") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stj2w"] +atlas = ExtResource("1_j4u05") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s2rh"] +atlas = ExtResource("1_j4u05") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktouq"] +atlas = ExtResource("1_j4u05") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hhe3"] +atlas = ExtResource("1_j4u05") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2npe"] +atlas = ExtResource("1_j4u05") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeijn"] +atlas = ExtResource("1_j4u05") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ohcc"] +atlas = ExtResource("1_j4u05") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lax2l"] +atlas = ExtResource("1_j4u05") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkgcn"] +atlas = ExtResource("1_j4u05") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm3q2"] +atlas = ExtResource("1_j4u05") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a6it"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5v57"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btpba"] +atlas = ExtResource("1_j4u05") +region = Rect2(147, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bloth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ck1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5w61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enmyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7yhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp1bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nin0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkeqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2cff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k85au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdkff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb46u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6db0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stj2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s2rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktouq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hhe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2npe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeijn") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ohcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lax2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkgcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a6it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5v57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btpba") +}], +"loop": true, +"name": &"glacialfissure", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_gravitywell.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_gravitywell.tres new file mode 100644 index 0000000..6ddab4e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_gravitywell.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://chyyke5crud6t"] + +[ext_resource type="Texture2D" uid="uid://cboas1wo4qntb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png" id="1_3t6fv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsfn0"] +atlas = ExtResource("1_3t6fv") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bfy"] +atlas = ExtResource("1_3t6fv") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp51i"] +atlas = ExtResource("1_3t6fv") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toi7o"] +atlas = ExtResource("1_3t6fv") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fudpv"] +atlas = ExtResource("1_3t6fv") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oi71"] +atlas = ExtResource("1_3t6fv") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2htl"] +atlas = ExtResource("1_3t6fv") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekbvx"] +atlas = ExtResource("1_3t6fv") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w68vb"] +atlas = ExtResource("1_3t6fv") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcgmt"] +atlas = ExtResource("1_3t6fv") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkx3r"] +atlas = ExtResource("1_3t6fv") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es87q"] +atlas = ExtResource("1_3t6fv") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2fwi"] +atlas = ExtResource("1_3t6fv") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psi6y"] +atlas = ExtResource("1_3t6fv") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c77na"] +atlas = ExtResource("1_3t6fv") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmtg0"] +atlas = ExtResource("1_3t6fv") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hnbv"] +atlas = ExtResource("1_3t6fv") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjp6x"] +atlas = ExtResource("1_3t6fv") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifawo"] +atlas = ExtResource("1_3t6fv") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4lll"] +atlas = ExtResource("1_3t6fv") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfnqj"] +atlas = ExtResource("1_3t6fv") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yferd"] +atlas = ExtResource("1_3t6fv") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5h4s"] +atlas = ExtResource("1_3t6fv") +region = Rect2(147, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsfn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46bfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp51i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toi7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fudpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oi71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2htl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekbvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w68vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcgmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkx3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es87q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2fwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psi6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c77na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmtg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hnbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjp6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifawo") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4lll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfnqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yferd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5h4s") +}], +"loop": true, +"name": &"gravitywell", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_hailstoneprison.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_hailstoneprison.tres new file mode 100644 index 0000000..f4e9d2e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_hailstoneprison.tres @@ -0,0 +1,184 @@ +[gd_resource type="SpriteFrames" load_steps=26 format=3 uid="uid://phe5qb7ubqbo"] + +[ext_resource type="Texture2D" uid="uid://d4c4xof0god64" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png" id="1_v0og2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wgry"] +atlas = ExtResource("1_v0og2") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv1n6"] +atlas = ExtResource("1_v0og2") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mjim"] +atlas = ExtResource("1_v0og2") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07lnk"] +atlas = ExtResource("1_v0og2") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw74k"] +atlas = ExtResource("1_v0og2") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55f18"] +atlas = ExtResource("1_v0og2") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlosg"] +atlas = ExtResource("1_v0og2") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8j8q"] +atlas = ExtResource("1_v0og2") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc0mj"] +atlas = ExtResource("1_v0og2") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ufb"] +atlas = ExtResource("1_v0og2") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kttia"] +atlas = ExtResource("1_v0og2") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ravpg"] +atlas = ExtResource("1_v0og2") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp6hh"] +atlas = ExtResource("1_v0og2") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70a3b"] +atlas = ExtResource("1_v0og2") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyl7r"] +atlas = ExtResource("1_v0og2") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbpqf"] +atlas = ExtResource("1_v0og2") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks4vc"] +atlas = ExtResource("1_v0og2") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfg2v"] +atlas = ExtResource("1_v0og2") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv8eb"] +atlas = ExtResource("1_v0og2") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afi3u"] +atlas = ExtResource("1_v0og2") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekjje"] +atlas = ExtResource("1_v0og2") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2axv7"] +atlas = ExtResource("1_v0og2") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yy3c"] +atlas = ExtResource("1_v0og2") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrfav"] +atlas = ExtResource("1_v0og2") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wgry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv1n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mjim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07lnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw74k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55f18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlosg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8j8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc0mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ufb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kttia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ravpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp6hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70a3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyl7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbpqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks4vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfg2v") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv8eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afi3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekjje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2axv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yy3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrfav") +}], +"loop": true, +"name": &"hailstoneprison", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icecapsule.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icecapsule.tres new file mode 100644 index 0000000..2c4f84f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icecapsule.tres @@ -0,0 +1,212 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://bl2y0ohbmxkxa"] + +[ext_resource type="Texture2D" uid="uid://c3k11pg0tuk5n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png" id="1_llemn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hqqa"] +atlas = ExtResource("1_llemn") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk1s6"] +atlas = ExtResource("1_llemn") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q86kx"] +atlas = ExtResource("1_llemn") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ellpp"] +atlas = ExtResource("1_llemn") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3csn"] +atlas = ExtResource("1_llemn") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qro1b"] +atlas = ExtResource("1_llemn") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpmv0"] +atlas = ExtResource("1_llemn") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrb00"] +atlas = ExtResource("1_llemn") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqbh6"] +atlas = ExtResource("1_llemn") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1arcb"] +atlas = ExtResource("1_llemn") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g28p"] +atlas = ExtResource("1_llemn") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuvet"] +atlas = ExtResource("1_llemn") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn0tw"] +atlas = ExtResource("1_llemn") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fah0u"] +atlas = ExtResource("1_llemn") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpfaq"] +atlas = ExtResource("1_llemn") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ripfr"] +atlas = ExtResource("1_llemn") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6cyh"] +atlas = ExtResource("1_llemn") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n23bv"] +atlas = ExtResource("1_llemn") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwir2"] +atlas = ExtResource("1_llemn") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1j5x"] +atlas = ExtResource("1_llemn") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu7ym"] +atlas = ExtResource("1_llemn") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0534"] +atlas = ExtResource("1_llemn") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp1p7"] +atlas = ExtResource("1_llemn") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26cfy"] +atlas = ExtResource("1_llemn") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mus7"] +atlas = ExtResource("1_llemn") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yajyw"] +atlas = ExtResource("1_llemn") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq1ts"] +atlas = ExtResource("1_llemn") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmkjm"] +atlas = ExtResource("1_llemn") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hqqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk1s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q86kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ellpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3csn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qro1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpmv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrb00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqbh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1arcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g28p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuvet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn0tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fah0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpfaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ripfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6cyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n23bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwir2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1j5x") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu7ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0534") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp1p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26cfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mus7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yajyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq1ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmkjm") +}], +"loop": true, +"name": &"icecapsule", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icehook.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icehook.tres new file mode 100644 index 0000000..a4f7fde --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icehook.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://eb1p5g1iyljr"] + +[ext_resource type="Texture2D" uid="uid://2h2np6gs2cob" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png" id="1_6t8jm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx3eh"] +atlas = ExtResource("1_6t8jm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wjko"] +atlas = ExtResource("1_6t8jm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7urrh"] +atlas = ExtResource("1_6t8jm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph4wv"] +atlas = ExtResource("1_6t8jm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbaa1"] +atlas = ExtResource("1_6t8jm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpnrq"] +atlas = ExtResource("1_6t8jm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk5c4"] +atlas = ExtResource("1_6t8jm") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0w57"] +atlas = ExtResource("1_6t8jm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh02c"] +atlas = ExtResource("1_6t8jm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nnq8"] +atlas = ExtResource("1_6t8jm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gxdm"] +atlas = ExtResource("1_6t8jm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iscow"] +atlas = ExtResource("1_6t8jm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmycp"] +atlas = ExtResource("1_6t8jm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imdv2"] +atlas = ExtResource("1_6t8jm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjto6"] +atlas = ExtResource("1_6t8jm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmtpw"] +atlas = ExtResource("1_6t8jm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ibq4"] +atlas = ExtResource("1_6t8jm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywudg"] +atlas = ExtResource("1_6t8jm") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx3eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wjko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7urrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbaa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpnrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk5c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0w57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh02c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nnq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gxdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iscow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmycp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imdv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjto6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmtpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ibq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywudg") +}], +"loop": true, +"name": &"icehook", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icesculpture.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icesculpture.tres new file mode 100644 index 0000000..b5bc1b6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icesculpture.tres @@ -0,0 +1,205 @@ +[gd_resource type="SpriteFrames" load_steps=29 format=3 uid="uid://hr6nxj3awlnc"] + +[ext_resource type="Texture2D" uid="uid://bq2o3d0hexcux" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png" id="1_ojp05"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow20d"] +atlas = ExtResource("1_ojp05") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml3il"] +atlas = ExtResource("1_ojp05") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8vmk"] +atlas = ExtResource("1_ojp05") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsemy"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yw82"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42h3p"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3xkp"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7wxa"] +atlas = ExtResource("1_ojp05") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8coj8"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lufl7"] +atlas = ExtResource("1_ojp05") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb224"] +atlas = ExtResource("1_ojp05") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3lij"] +atlas = ExtResource("1_ojp05") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uao25"] +atlas = ExtResource("1_ojp05") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwkha"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o2n7"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxnmc"] +atlas = ExtResource("1_ojp05") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45kuv"] +atlas = ExtResource("1_ojp05") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lse2w"] +atlas = ExtResource("1_ojp05") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85bvo"] +atlas = ExtResource("1_ojp05") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3a6i"] +atlas = ExtResource("1_ojp05") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmaw8"] +atlas = ExtResource("1_ojp05") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c854k"] +atlas = ExtResource("1_ojp05") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otjnj"] +atlas = ExtResource("1_ojp05") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fff0"] +atlas = ExtResource("1_ojp05") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6d5w"] +atlas = ExtResource("1_ojp05") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gmtc"] +atlas = ExtResource("1_ojp05") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22qqb"] +atlas = ExtResource("1_ojp05") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow20d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml3il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8vmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsemy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yw82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42h3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3xkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7wxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8coj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lufl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb224") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3lij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uao25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwkha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o2n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxnmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45kuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lse2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85bvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3a6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmaw8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c854k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otjnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fff0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6d5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gmtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22qqb") +}], +"loop": true, +"name": &"icesculpture", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icetwice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icetwice.tres new file mode 100644 index 0000000..e7052e8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_icetwice.tres @@ -0,0 +1,240 @@ +[gd_resource type="SpriteFrames" load_steps=34 format=3 uid="uid://t7ah2glen2c7"] + +[ext_resource type="Texture2D" uid="uid://bai3g8ktm5c55" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png" id="1_m35w3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gii30"] +atlas = ExtResource("1_m35w3") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crysm"] +atlas = ExtResource("1_m35w3") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24hgl"] +atlas = ExtResource("1_m35w3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nna6"] +atlas = ExtResource("1_m35w3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fbnk"] +atlas = ExtResource("1_m35w3") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7o2h"] +atlas = ExtResource("1_m35w3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uefxj"] +atlas = ExtResource("1_m35w3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mwlq"] +atlas = ExtResource("1_m35w3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0axd"] +atlas = ExtResource("1_m35w3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ierd"] +atlas = ExtResource("1_m35w3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3fq4"] +atlas = ExtResource("1_m35w3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvsx5"] +atlas = ExtResource("1_m35w3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3geli"] +atlas = ExtResource("1_m35w3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf36q"] +atlas = ExtResource("1_m35w3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iesvt"] +atlas = ExtResource("1_m35w3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7nat"] +atlas = ExtResource("1_m35w3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awr6p"] +atlas = ExtResource("1_m35w3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssghq"] +atlas = ExtResource("1_m35w3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3dss"] +atlas = ExtResource("1_m35w3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyyyv"] +atlas = ExtResource("1_m35w3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byjmb"] +atlas = ExtResource("1_m35w3") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a17iv"] +atlas = ExtResource("1_m35w3") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_falew"] +atlas = ExtResource("1_m35w3") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2n0e"] +atlas = ExtResource("1_m35w3") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sviy"] +atlas = ExtResource("1_m35w3") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7gs6"] +atlas = ExtResource("1_m35w3") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioah6"] +atlas = ExtResource("1_m35w3") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pd7p"] +atlas = ExtResource("1_m35w3") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m38s"] +atlas = ExtResource("1_m35w3") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e7lp"] +atlas = ExtResource("1_m35w3") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8cut"] +atlas = ExtResource("1_m35w3") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmto5"] +atlas = ExtResource("1_m35w3") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gii30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crysm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24hgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nna6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fbnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7o2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uefxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mwlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0axd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ierd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3fq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvsx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3geli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf36q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iesvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7nat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awr6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssghq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3dss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyyyv") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_byjmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a17iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_falew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2n0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sviy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7gs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioah6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pd7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m38s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e7lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8cut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmto5") +}], +"loop": true, +"name": &"icetwice", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_illusoryice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_illusoryice.tres new file mode 100644 index 0000000..5476eb2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_illusoryice.tres @@ -0,0 +1,177 @@ +[gd_resource type="SpriteFrames" load_steps=25 format=3 uid="uid://bwpidppdi2psu"] + +[ext_resource type="Texture2D" uid="uid://cfaqjv02oarpf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png" id="1_6rcdh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oquyh"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egmub"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjgii"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a62c"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6nav"] +atlas = ExtResource("1_6rcdh") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymnl0"] +atlas = ExtResource("1_6rcdh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oby0v"] +atlas = ExtResource("1_6rcdh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu6gv"] +atlas = ExtResource("1_6rcdh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkclk"] +atlas = ExtResource("1_6rcdh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1beql"] +atlas = ExtResource("1_6rcdh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k2r6"] +atlas = ExtResource("1_6rcdh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bb4q"] +atlas = ExtResource("1_6rcdh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ibd"] +atlas = ExtResource("1_6rcdh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ium0s"] +atlas = ExtResource("1_6rcdh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gynk"] +atlas = ExtResource("1_6rcdh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhr76"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luohh"] +atlas = ExtResource("1_6rcdh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clwrt"] +atlas = ExtResource("1_6rcdh") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d061g"] +atlas = ExtResource("1_6rcdh") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6vxh"] +atlas = ExtResource("1_6rcdh") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6y55"] +atlas = ExtResource("1_6rcdh") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b06pg"] +atlas = ExtResource("1_6rcdh") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymx7c"] +atlas = ExtResource("1_6rcdh") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oquyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egmub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjgii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a62c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6nav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymnl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oby0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkclk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1beql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k2r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bb4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ibd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ium0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gynk") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhr76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luohh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d061g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6vxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6y55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b06pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymx7c") +}], +"loop": true, +"name": &"illusoryice", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_infinitehowlers.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_infinitehowlers.tres new file mode 100644 index 0000000..9eb0047 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_infinitehowlers.tres @@ -0,0 +1,275 @@ +[gd_resource type="SpriteFrames" load_steps=39 format=3 uid="uid://ck2i1f0dpts7x"] + +[ext_resource type="Texture2D" uid="uid://bg3ltwflank8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png" id="1_rlbhm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_opy6q"] +atlas = ExtResource("1_rlbhm") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dioc"] +atlas = ExtResource("1_rlbhm") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5rbj"] +atlas = ExtResource("1_rlbhm") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtf2s"] +atlas = ExtResource("1_rlbhm") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cky3c"] +atlas = ExtResource("1_rlbhm") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2esq"] +atlas = ExtResource("1_rlbhm") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyi4p"] +atlas = ExtResource("1_rlbhm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox30n"] +atlas = ExtResource("1_rlbhm") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an7sb"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiu8k"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6hes"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwqyl"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trp0r"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxqrx"] +atlas = ExtResource("1_rlbhm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0kb4"] +atlas = ExtResource("1_rlbhm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahi6j"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycoej"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52dkw"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4co33"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x6fu"] +atlas = ExtResource("1_rlbhm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u7d0"] +atlas = ExtResource("1_rlbhm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_socii"] +atlas = ExtResource("1_rlbhm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph64x"] +atlas = ExtResource("1_rlbhm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcyuk"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0etfh"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xq4m"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l186d"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uohr2"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1v1e"] +atlas = ExtResource("1_rlbhm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg0pp"] +atlas = ExtResource("1_rlbhm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32s56"] +atlas = ExtResource("1_rlbhm") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48fqk"] +atlas = ExtResource("1_rlbhm") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yewi"] +atlas = ExtResource("1_rlbhm") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t60cf"] +atlas = ExtResource("1_rlbhm") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw6u7"] +atlas = ExtResource("1_rlbhm") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sklw"] +atlas = ExtResource("1_rlbhm") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbjs1"] +atlas = ExtResource("1_rlbhm") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opy6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dioc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5rbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtf2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cky3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2esq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyi4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox30n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an7sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiu8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6hes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwqyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trp0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxqrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0kb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahi6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycoej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52dkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4co33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x6fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u7d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_socii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph64x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcyuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0etfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xq4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l186d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uohr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1v1e") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg0pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32s56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48fqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yewi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t60cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw6u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sklw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbjs1") +}], +"loop": true, +"name": &"infinitehowlers", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lightningblitz.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lightningblitz.tres new file mode 100644 index 0000000..4a07f10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lightningblitz.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://cb3ryv8nhbewt"] + +[ext_resource type="Texture2D" uid="uid://cacuvpv81x1nx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png" id="1_i372q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnl7w"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh6ge"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3qhb"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2hib"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4csp"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk6fv"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmycn"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pup6s"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4mgx"] +atlas = ExtResource("1_i372q") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv11x"] +atlas = ExtResource("1_i372q") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdf1e"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twlrw"] +atlas = ExtResource("1_i372q") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrc1n"] +atlas = ExtResource("1_i372q") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avn5o"] +atlas = ExtResource("1_i372q") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do6ja"] +atlas = ExtResource("1_i372q") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ve4l"] +atlas = ExtResource("1_i372q") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir1v7"] +atlas = ExtResource("1_i372q") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfffy"] +atlas = ExtResource("1_i372q") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_731co"] +atlas = ExtResource("1_i372q") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bcuh"] +atlas = ExtResource("1_i372q") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36nfd"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyohv"] +atlas = ExtResource("1_i372q") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al8gw"] +atlas = ExtResource("1_i372q") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88a17"] +atlas = ExtResource("1_i372q") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvefa"] +atlas = ExtResource("1_i372q") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnl7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh6ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3qhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2hib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4csp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk6fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmycn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pup6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4mgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv11x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdf1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twlrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrc1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avn5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do6ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ve4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir1v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfffy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_731co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bcuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36nfd") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyohv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al8gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88a17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvefa") +}], +"loop": true, +"name": &"lightningblitz", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lucentcharge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lucentcharge.tres new file mode 100644 index 0000000..e5772d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_lucentcharge.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://by0lqan2d4msv"] + +[ext_resource type="Texture2D" uid="uid://cyopsj3rpyatq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png" id="1_jq05h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_56o0q"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk3mb"] +atlas = ExtResource("1_jq05h") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjcxu"] +atlas = ExtResource("1_jq05h") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnyqp"] +atlas = ExtResource("1_jq05h") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11hol"] +atlas = ExtResource("1_jq05h") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32a7j"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qruru"] +atlas = ExtResource("1_jq05h") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruq0b"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ato1w"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0612"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ck2p"] +atlas = ExtResource("1_jq05h") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgsgf"] +atlas = ExtResource("1_jq05h") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7ff4"] +atlas = ExtResource("1_jq05h") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goa80"] +atlas = ExtResource("1_jq05h") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2pha"] +atlas = ExtResource("1_jq05h") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eugo6"] +atlas = ExtResource("1_jq05h") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5fyv"] +atlas = ExtResource("1_jq05h") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7nfi"] +atlas = ExtResource("1_jq05h") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n85h5"] +atlas = ExtResource("1_jq05h") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56o0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk3mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjcxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnyqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11hol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32a7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qruru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruq0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ato1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0612") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ck2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgsgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7ff4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goa80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2pha") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eugo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5fyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7nfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n85h5") +}], +"loop": true, +"name": &"lucentcharge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_manadeathgrip.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_manadeathgrip.tres new file mode 100644 index 0000000..1cdc202 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_manadeathgrip.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://ctk6q7tm7wrtx"] + +[ext_resource type="Texture2D" uid="uid://060x1d4jcxae" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png" id="1_7cfj8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x47kr"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoth3"] +atlas = ExtResource("1_7cfj8") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sr1x"] +atlas = ExtResource("1_7cfj8") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5mq5"] +atlas = ExtResource("1_7cfj8") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nynnr"] +atlas = ExtResource("1_7cfj8") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eahgt"] +atlas = ExtResource("1_7cfj8") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4v7b"] +atlas = ExtResource("1_7cfj8") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g665q"] +atlas = ExtResource("1_7cfj8") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t1xr"] +atlas = ExtResource("1_7cfj8") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epgab"] +atlas = ExtResource("1_7cfj8") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tljwe"] +atlas = ExtResource("1_7cfj8") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sai30"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7om7b"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whet3"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpjku"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5cfx"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfgyr"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6hnw"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8acmu"] +atlas = ExtResource("1_7cfj8") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v6k6"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4s0s"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wxmp"] +atlas = ExtResource("1_7cfj8") +region = Rect2(0, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x47kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoth3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sr1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5mq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nynnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eahgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4v7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g665q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t1xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epgab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tljwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sai30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7om7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whet3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpjku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5cfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfgyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6hnw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8acmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v6k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4s0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wxmp") +}], +"loop": true, +"name": &"manadeathgrip", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_markofsolitude.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_markofsolitude.tres new file mode 100644 index 0000000..4f4233f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_markofsolitude.tres @@ -0,0 +1,268 @@ +[gd_resource type="SpriteFrames" load_steps=38 format=3 uid="uid://ea6n6atcb2cr"] + +[ext_resource type="Texture2D" uid="uid://sus6uctwytfr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png" id="1_escr3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewgsr"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgkf8"] +atlas = ExtResource("1_escr3") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnt2i"] +atlas = ExtResource("1_escr3") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ey2"] +atlas = ExtResource("1_escr3") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34o37"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trbks"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q8b8"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wttq"] +atlas = ExtResource("1_escr3") +region = Rect2(294, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a42i"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_206i1"] +atlas = ExtResource("1_escr3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uo6b"] +atlas = ExtResource("1_escr3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g13r"] +atlas = ExtResource("1_escr3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v71le"] +atlas = ExtResource("1_escr3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liu27"] +atlas = ExtResource("1_escr3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgidb"] +atlas = ExtResource("1_escr3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc25k"] +atlas = ExtResource("1_escr3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g25r3"] +atlas = ExtResource("1_escr3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3vm1"] +atlas = ExtResource("1_escr3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xibbj"] +atlas = ExtResource("1_escr3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvimn"] +atlas = ExtResource("1_escr3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evrju"] +atlas = ExtResource("1_escr3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pynf1"] +atlas = ExtResource("1_escr3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmxhd"] +atlas = ExtResource("1_escr3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0tlp"] +atlas = ExtResource("1_escr3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulfs4"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5grw"] +atlas = ExtResource("1_escr3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j81yc"] +atlas = ExtResource("1_escr3") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikuai"] +atlas = ExtResource("1_escr3") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oyhp"] +atlas = ExtResource("1_escr3") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1o8m"] +atlas = ExtResource("1_escr3") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbx1a"] +atlas = ExtResource("1_escr3") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwavy"] +atlas = ExtResource("1_escr3") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpctv"] +atlas = ExtResource("1_escr3") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73d67"] +atlas = ExtResource("1_escr3") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b3e4"] +atlas = ExtResource("1_escr3") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtiwe"] +atlas = ExtResource("1_escr3") +region = Rect2(196, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewgsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgkf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnt2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ey2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34o37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trbks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q8b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wttq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a42i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_206i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uo6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g13r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v71le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liu27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgidb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc25k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g25r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3vm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xibbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvimn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evrju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pynf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmxhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0tlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulfs4") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5grw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j81yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikuai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oyhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1o8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbx1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwavy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpctv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73d67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b3e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtiwe") +}], +"loop": true, +"name": &"markofsolitude", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mesmerize.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mesmerize.tres new file mode 100644 index 0000000..fcd0f26 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mesmerize.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://bc3d3e25u34ea"] + +[ext_resource type="Texture2D" uid="uid://dn6kfuubsulp6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png" id="1_ibw7e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0v53"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhmud"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehg5u"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pmx8"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc336"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pg5k"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aa7p"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tav4n"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjnff"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43nox"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urn2b"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6sgj"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpr21"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvyk"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs7px"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2kii"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp7qm"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx2ea"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iu71"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtinr"] +atlas = ExtResource("1_ibw7e") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_485pm"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuuwu"] +atlas = ExtResource("1_ibw7e") +region = Rect2(49, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0v53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhmud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehg5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pmx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc336") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pg5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aa7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tav4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjnff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43nox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urn2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6sgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpr21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs7px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2kii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp7qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx2ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iu71") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtinr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_485pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuuwu") +}], +"loop": true, +"name": &"mesmerize", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mightofvespyr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mightofvespyr.tres new file mode 100644 index 0000000..1568d92 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_mightofvespyr.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://dcq8g25yuu6cj"] + +[ext_resource type="Texture2D" uid="uid://dkv6xpa1xi8o1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png" id="1_3gp25"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl2im"] +atlas = ExtResource("1_3gp25") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h8ib"] +atlas = ExtResource("1_3gp25") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8nin"] +atlas = ExtResource("1_3gp25") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46nwi"] +atlas = ExtResource("1_3gp25") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy04w"] +atlas = ExtResource("1_3gp25") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4sh3"] +atlas = ExtResource("1_3gp25") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l26b7"] +atlas = ExtResource("1_3gp25") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi8ki"] +atlas = ExtResource("1_3gp25") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqrla"] +atlas = ExtResource("1_3gp25") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66qhy"] +atlas = ExtResource("1_3gp25") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ait24"] +atlas = ExtResource("1_3gp25") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyors"] +atlas = ExtResource("1_3gp25") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bidrw"] +atlas = ExtResource("1_3gp25") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geip6"] +atlas = ExtResource("1_3gp25") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg3p"] +atlas = ExtResource("1_3gp25") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu5gv"] +atlas = ExtResource("1_3gp25") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf3gy"] +atlas = ExtResource("1_3gp25") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhtvy"] +atlas = ExtResource("1_3gp25") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07prp"] +atlas = ExtResource("1_3gp25") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n3q3"] +atlas = ExtResource("1_3gp25") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0gae"] +atlas = ExtResource("1_3gp25") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axnds"] +atlas = ExtResource("1_3gp25") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl2im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h8ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8nin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46nwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy04w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4sh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l26b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi8ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqrla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66qhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ait24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyors") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bidrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geip6") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu5gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhtvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07prp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n3q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0gae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axnds") +}], +"loop": true, +"name": &"mightofvespyr", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ninelives.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ninelives.tres new file mode 100644 index 0000000..358c76a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_ninelives.tres @@ -0,0 +1,198 @@ +[gd_resource type="SpriteFrames" load_steps=28 format=3 uid="uid://hvksaef476e8"] + +[ext_resource type="Texture2D" uid="uid://qgmxkr2vxysg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png" id="1_7k8ln"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yj27"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3dmm"] +atlas = ExtResource("1_7k8ln") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcju0"] +atlas = ExtResource("1_7k8ln") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urbhm"] +atlas = ExtResource("1_7k8ln") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pmpm"] +atlas = ExtResource("1_7k8ln") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajv7s"] +atlas = ExtResource("1_7k8ln") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lipxy"] +atlas = ExtResource("1_7k8ln") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acpo4"] +atlas = ExtResource("1_7k8ln") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glbt8"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoaul"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvpcd"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qysxf"] +atlas = ExtResource("1_7k8ln") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uopyj"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pysbh"] +atlas = ExtResource("1_7k8ln") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ije"] +atlas = ExtResource("1_7k8ln") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvwer"] +atlas = ExtResource("1_7k8ln") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r834s"] +atlas = ExtResource("1_7k8ln") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlepd"] +atlas = ExtResource("1_7k8ln") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t7c3"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlx1t"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ssm0"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s8ag"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uskve"] +atlas = ExtResource("1_7k8ln") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swegr"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbxas"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scrod"] +atlas = ExtResource("1_7k8ln") +region = Rect2(0, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yj27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3dmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcju0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urbhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pmpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajv7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lipxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acpo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glbt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoaul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvpcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qysxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uopyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pysbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ije") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvwer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r834s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlepd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t7c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlx1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ssm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s8ag") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uskve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swegr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbxas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scrod") +}], +"loop": true, +"name": &"ninelives", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_polarity.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_polarity.tres new file mode 100644 index 0000000..2ab092c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_polarity.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://dc34fgcn4pa4b"] + +[ext_resource type="Texture2D" uid="uid://bnl5qryggdmvw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png" id="1_babhe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrx0h"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0xc2"] +atlas = ExtResource("1_babhe") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km72f"] +atlas = ExtResource("1_babhe") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rf1u"] +atlas = ExtResource("1_babhe") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihf6h"] +atlas = ExtResource("1_babhe") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20edj"] +atlas = ExtResource("1_babhe") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4srae"] +atlas = ExtResource("1_babhe") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmh1j"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a86e"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae6ab"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3uj2"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy4bo"] +atlas = ExtResource("1_babhe") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6esa"] +atlas = ExtResource("1_babhe") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmpob"] +atlas = ExtResource("1_babhe") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3q6g"] +atlas = ExtResource("1_babhe") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv85i"] +atlas = ExtResource("1_babhe") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phcs0"] +atlas = ExtResource("1_babhe") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xqka"] +atlas = ExtResource("1_babhe") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cp7k"] +atlas = ExtResource("1_babhe") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eclvm"] +atlas = ExtResource("1_babhe") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrx0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0xc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km72f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rf1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihf6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20edj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4srae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmh1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a86e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae6ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3uj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy4bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6esa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmpob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3q6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv85i") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_phcs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xqka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cp7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eclvm") +}], +"loop": true, +"name": &"polarity", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_shatter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_shatter.tres new file mode 100644 index 0000000..ba9181d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_shatter.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://cuuu3ot74d5vm"] + +[ext_resource type="Texture2D" uid="uid://dcms3i81nmbii" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png" id="1_2q1wm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_am8e6"] +atlas = ExtResource("1_2q1wm") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc4wd"] +atlas = ExtResource("1_2q1wm") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apj5r"] +atlas = ExtResource("1_2q1wm") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgxo4"] +atlas = ExtResource("1_2q1wm") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evps2"] +atlas = ExtResource("1_2q1wm") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqq6s"] +atlas = ExtResource("1_2q1wm") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13wpl"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prnks"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wujch"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ysfr"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts3lo"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edwcy"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjs3h"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxbxu"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mntvd"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfcq8"] +atlas = ExtResource("1_2q1wm") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_583yk"] +atlas = ExtResource("1_2q1wm") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0c54"] +atlas = ExtResource("1_2q1wm") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wodn"] +atlas = ExtResource("1_2q1wm") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxfx7"] +atlas = ExtResource("1_2q1wm") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buyeh"] +atlas = ExtResource("1_2q1wm") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tlei"] +atlas = ExtResource("1_2q1wm") +region = Rect2(98, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_am8e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc4wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apj5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgxo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evps2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqq6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13wpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prnks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wujch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ysfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts3lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edwcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjs3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxbxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mntvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfcq8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_583yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0c54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wodn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxfx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buyeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tlei") +}], +"loop": true, +"name": &"shatter", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_snowstorm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_snowstorm.tres new file mode 100644 index 0000000..027ef60 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_snowstorm.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://ba0f1wieuassg"] + +[ext_resource type="Texture2D" uid="uid://bpd6kodoy4nnp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png" id="1_pxet4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyumi"] +atlas = ExtResource("1_pxet4") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drqmf"] +atlas = ExtResource("1_pxet4") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_434iy"] +atlas = ExtResource("1_pxet4") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wibj7"] +atlas = ExtResource("1_pxet4") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhrow"] +atlas = ExtResource("1_pxet4") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fkrl"] +atlas = ExtResource("1_pxet4") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc62i"] +atlas = ExtResource("1_pxet4") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6bk8"] +atlas = ExtResource("1_pxet4") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg032"] +atlas = ExtResource("1_pxet4") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkxwx"] +atlas = ExtResource("1_pxet4") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmhao"] +atlas = ExtResource("1_pxet4") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqvl5"] +atlas = ExtResource("1_pxet4") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8uxo"] +atlas = ExtResource("1_pxet4") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l71ar"] +atlas = ExtResource("1_pxet4") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlytg"] +atlas = ExtResource("1_pxet4") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5gci"] +atlas = ExtResource("1_pxet4") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tykjw"] +atlas = ExtResource("1_pxet4") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfi76"] +atlas = ExtResource("1_pxet4") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xgfm"] +atlas = ExtResource("1_pxet4") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mcnp"] +atlas = ExtResource("1_pxet4") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3dkx"] +atlas = ExtResource("1_pxet4") +region = Rect2(0, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyumi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drqmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_434iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wibj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhrow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fkrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc62i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6bk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg032") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkxwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmhao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqvl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8uxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l71ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlytg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5gci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tykjw") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfi76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xgfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mcnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3dkx") +}], +"loop": true, +"name": &"snowstorm", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_spiritofthewild.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_spiritofthewild.tres new file mode 100644 index 0000000..457dd50 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_spiritofthewild.tres @@ -0,0 +1,170 @@ +[gd_resource type="SpriteFrames" load_steps=24 format=3 uid="uid://dgf7ux7tgyypo"] + +[ext_resource type="Texture2D" uid="uid://brnq3syf7ijwq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png" id="1_8uvc5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eip5b"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trsuy"] +atlas = ExtResource("1_8uvc5") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjvp0"] +atlas = ExtResource("1_8uvc5") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhw4n"] +atlas = ExtResource("1_8uvc5") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkr0n"] +atlas = ExtResource("1_8uvc5") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xwm"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e2l3"] +atlas = ExtResource("1_8uvc5") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ii1e"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucrr3"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3vrc"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw4ow"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjxit"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b7gu"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to51e"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgojc"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji2fo"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6lxt"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyv33"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x80js"] +atlas = ExtResource("1_8uvc5") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8djfu"] +atlas = ExtResource("1_8uvc5") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_378gn"] +atlas = ExtResource("1_8uvc5") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1t5u"] +atlas = ExtResource("1_8uvc5") +region = Rect2(98, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eip5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trsuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjvp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhw4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkr0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e2l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ii1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucrr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3vrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw4ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjxit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b7gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to51e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgojc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji2fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6lxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyv33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x80js") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8djfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_378gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1t5u") +}], +"loop": true, +"name": &"spiritofthewild", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_unstoppableforce.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_unstoppableforce.tres new file mode 100644 index 0000000..fb969e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_unstoppableforce.tres @@ -0,0 +1,128 @@ +[gd_resource type="SpriteFrames" load_steps=18 format=3 uid="uid://dgultqcrml57s"] + +[ext_resource type="Texture2D" uid="uid://dhu5f485d2lq8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png" id="1_kvqfh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kx4w"] +atlas = ExtResource("1_kvqfh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xd7d"] +atlas = ExtResource("1_kvqfh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rej0"] +atlas = ExtResource("1_kvqfh") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f17kd"] +atlas = ExtResource("1_kvqfh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch7n2"] +atlas = ExtResource("1_kvqfh") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1576c"] +atlas = ExtResource("1_kvqfh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uluer"] +atlas = ExtResource("1_kvqfh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38o3h"] +atlas = ExtResource("1_kvqfh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr2k2"] +atlas = ExtResource("1_kvqfh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_colyb"] +atlas = ExtResource("1_kvqfh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da5gq"] +atlas = ExtResource("1_kvqfh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7e0x"] +atlas = ExtResource("1_kvqfh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0mce"] +atlas = ExtResource("1_kvqfh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxwh8"] +atlas = ExtResource("1_kvqfh") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ca3h"] +atlas = ExtResource("1_kvqfh") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3h35"] +atlas = ExtResource("1_kvqfh") +region = Rect2(98, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kx4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xd7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rej0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f17kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch7n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1576c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uluer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38o3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr2k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_colyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da5gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7e0x") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0mce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxwh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ca3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3h35") +}], +"loop": true, +"name": &"unstoppableforce", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_vespyrsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_vespyrsurge.tres new file mode 100644 index 0000000..c5b9d62 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_vespyrsurge.tres @@ -0,0 +1,226 @@ +[gd_resource type="SpriteFrames" load_steps=32 format=3 uid="uid://bqnvt7g5qfn0w"] + +[ext_resource type="Texture2D" uid="uid://clp4syrvufc0x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png" id="1_8yoa3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ghk"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv3ly"] +atlas = ExtResource("1_8yoa3") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2adby"] +atlas = ExtResource("1_8yoa3") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26yhs"] +atlas = ExtResource("1_8yoa3") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6jwr"] +atlas = ExtResource("1_8yoa3") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ll4o"] +atlas = ExtResource("1_8yoa3") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1co6o"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqlrs"] +atlas = ExtResource("1_8yoa3") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tahji"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgvwd"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e16pb"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8iuc"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sywcn"] +atlas = ExtResource("1_8yoa3") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiu3k"] +atlas = ExtResource("1_8yoa3") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osufp"] +atlas = ExtResource("1_8yoa3") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njn4d"] +atlas = ExtResource("1_8yoa3") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw6o6"] +atlas = ExtResource("1_8yoa3") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg8e3"] +atlas = ExtResource("1_8yoa3") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucoye"] +atlas = ExtResource("1_8yoa3") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa1it"] +atlas = ExtResource("1_8yoa3") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc7fw"] +atlas = ExtResource("1_8yoa3") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh3tl"] +atlas = ExtResource("1_8yoa3") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev8l7"] +atlas = ExtResource("1_8yoa3") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydmvp"] +atlas = ExtResource("1_8yoa3") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65u74"] +atlas = ExtResource("1_8yoa3") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6rlr"] +atlas = ExtResource("1_8yoa3") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vahe"] +atlas = ExtResource("1_8yoa3") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84kbs"] +atlas = ExtResource("1_8yoa3") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhi1m"] +atlas = ExtResource("1_8yoa3") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia8x8"] +atlas = ExtResource("1_8yoa3") +region = Rect2(196, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ghk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv3ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2adby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26yhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6jwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ll4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1co6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqlrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tahji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgvwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e16pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8iuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sywcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiu3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osufp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njn4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw6o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg8e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucoye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa1it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc7fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh3tl") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev8l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydmvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65u74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6rlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vahe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84kbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhi1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia8x8") +}], +"loop": true, +"name": &"vespyrsurge", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_wailingoverdrive.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_wailingoverdrive.tres new file mode 100644 index 0000000..9812fa5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_wailingoverdrive.tres @@ -0,0 +1,261 @@ +[gd_resource type="SpriteFrames" load_steps=37 format=3 uid="uid://fdps1ixovma0"] + +[ext_resource type="Texture2D" uid="uid://c1obuhthok20d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png" id="1_botoy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx8mc"] +atlas = ExtResource("1_botoy") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au1e8"] +atlas = ExtResource("1_botoy") +region = Rect2(245, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjyeq"] +atlas = ExtResource("1_botoy") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yymr"] +atlas = ExtResource("1_botoy") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmba6"] +atlas = ExtResource("1_botoy") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwywj"] +atlas = ExtResource("1_botoy") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_077ay"] +atlas = ExtResource("1_botoy") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_paakx"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr56a"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r135"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6mtl"] +atlas = ExtResource("1_botoy") +region = Rect2(294, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8xmj"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w63t6"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn1ew"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlegl"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttbdk"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jabs7"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xsdl"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op0fg"] +atlas = ExtResource("1_botoy") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgsqu"] +atlas = ExtResource("1_botoy") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thmfd"] +atlas = ExtResource("1_botoy") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn8tt"] +atlas = ExtResource("1_botoy") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e4l5"] +atlas = ExtResource("1_botoy") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrw2h"] +atlas = ExtResource("1_botoy") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6shm6"] +atlas = ExtResource("1_botoy") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dsq7"] +atlas = ExtResource("1_botoy") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hub8t"] +atlas = ExtResource("1_botoy") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0axih"] +atlas = ExtResource("1_botoy") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5r6s"] +atlas = ExtResource("1_botoy") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ebi"] +atlas = ExtResource("1_botoy") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehoxi"] +atlas = ExtResource("1_botoy") +region = Rect2(294, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sthdg"] +atlas = ExtResource("1_botoy") +region = Rect2(294, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgdop"] +atlas = ExtResource("1_botoy") +region = Rect2(245, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l5yb"] +atlas = ExtResource("1_botoy") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o5tr"] +atlas = ExtResource("1_botoy") +region = Rect2(245, 98, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx8mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au1e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjyeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yymr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmba6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwywj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_077ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_paakx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr56a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r135") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6mtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8xmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w63t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn1ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlegl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttbdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jabs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xsdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op0fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgsqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thmfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn8tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e4l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrw2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6shm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dsq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hub8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0axih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5r6s") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ebi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehoxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sthdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgdop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l5yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o5tr") +}], +"loop": true, +"name": &"wailingoverdrive", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterswake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterswake.tres new file mode 100644 index 0000000..1f4f82d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterswake.tres @@ -0,0 +1,275 @@ +[gd_resource type="SpriteFrames" load_steps=39 format=3 uid="uid://diox2rxxiwtwx"] + +[ext_resource type="Texture2D" uid="uid://dpkc5axvlhi1i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png" id="1_peyjj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2luk"] +atlas = ExtResource("1_peyjj") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqna1"] +atlas = ExtResource("1_peyjj") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpbgd"] +atlas = ExtResource("1_peyjj") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q1sg"] +atlas = ExtResource("1_peyjj") +region = Rect2(196, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3d25"] +atlas = ExtResource("1_peyjj") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukped"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ckrp"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ah8"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7k5m"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiyew"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wym3"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb4s1"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq85c"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7r4s"] +atlas = ExtResource("1_peyjj") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rowo8"] +atlas = ExtResource("1_peyjj") +region = Rect2(245, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hv8o"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4g5y"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgudc"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx524"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtnr5"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llano"] +atlas = ExtResource("1_peyjj") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_assx1"] +atlas = ExtResource("1_peyjj") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwign"] +atlas = ExtResource("1_peyjj") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvwyo"] +atlas = ExtResource("1_peyjj") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2tni"] +atlas = ExtResource("1_peyjj") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw3v2"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7bof"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l5ik"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57tm"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3k1t"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rphh6"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av1qn"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lywis"] +atlas = ExtResource("1_peyjj") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lokn"] +atlas = ExtResource("1_peyjj") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25ogn"] +atlas = ExtResource("1_peyjj") +region = Rect2(245, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jevy"] +atlas = ExtResource("1_peyjj") +region = Rect2(245, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao8gk"] +atlas = ExtResource("1_peyjj") +region = Rect2(245, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2luk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqna1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpbgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q1sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3d25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukped") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ckrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ah8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7k5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiyew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wym3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb4s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq85c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7r4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rowo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hv8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4g5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgudc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx524") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtnr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llano") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_assx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwign") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvwyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2tni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw3v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7bof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l5ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3k1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rphh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av1qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lywis") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lokn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25ogn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jevy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao8gk") +}], +"loop": true, +"name": &"winterswake", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterwave.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterwave.tres new file mode 100644 index 0000000..0c2533f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_f6_winterwave.tres @@ -0,0 +1,191 @@ +[gd_resource type="SpriteFrames" load_steps=27 format=3 uid="uid://dba45o1ceales"] + +[ext_resource type="Texture2D" uid="uid://bmhlf13rtstap" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png" id="1_8gvh0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e3do"] +atlas = ExtResource("1_8gvh0") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pvf3"] +atlas = ExtResource("1_8gvh0") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r4w0"] +atlas = ExtResource("1_8gvh0") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ase87"] +atlas = ExtResource("1_8gvh0") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwdje"] +atlas = ExtResource("1_8gvh0") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qno68"] +atlas = ExtResource("1_8gvh0") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjaef"] +atlas = ExtResource("1_8gvh0") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wkwf"] +atlas = ExtResource("1_8gvh0") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb0id"] +atlas = ExtResource("1_8gvh0") +region = Rect2(196, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3woq"] +atlas = ExtResource("1_8gvh0") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il7f1"] +atlas = ExtResource("1_8gvh0") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbja1"] +atlas = ExtResource("1_8gvh0") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rc4r"] +atlas = ExtResource("1_8gvh0") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj0i7"] +atlas = ExtResource("1_8gvh0") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qx04"] +atlas = ExtResource("1_8gvh0") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlcwx"] +atlas = ExtResource("1_8gvh0") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22d4c"] +atlas = ExtResource("1_8gvh0") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m4ej"] +atlas = ExtResource("1_8gvh0") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfg6m"] +atlas = ExtResource("1_8gvh0") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbhyw"] +atlas = ExtResource("1_8gvh0") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgcx8"] +atlas = ExtResource("1_8gvh0") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypnu3"] +atlas = ExtResource("1_8gvh0") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y38v2"] +atlas = ExtResource("1_8gvh0") +region = Rect2(196, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4i8m"] +atlas = ExtResource("1_8gvh0") +region = Rect2(196, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja0xn"] +atlas = ExtResource("1_8gvh0") +region = Rect2(196, 49, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e3do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pvf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r4w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ase87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwdje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qno68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjaef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wkwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb0id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3woq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il7f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbja1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rc4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj0i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qx04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlcwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22d4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m4ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfg6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbhyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgcx8") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypnu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y38v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4i8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja0xn") +}], +"loop": true, +"name": &"winterwave", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_brilliantplume.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_brilliantplume.tres new file mode 100644 index 0000000..1bbabb0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_brilliantplume.tres @@ -0,0 +1,163 @@ +[gd_resource type="SpriteFrames" load_steps=23 format=3 uid="uid://bs34ybueehpnf"] + +[ext_resource type="Texture2D" uid="uid://blck4bfgqmqqe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png" id="1_xfd5i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aksuq"] +atlas = ExtResource("1_xfd5i") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tffu"] +atlas = ExtResource("1_xfd5i") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48s0w"] +atlas = ExtResource("1_xfd5i") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkjre"] +atlas = ExtResource("1_xfd5i") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydhpy"] +atlas = ExtResource("1_xfd5i") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyd72"] +atlas = ExtResource("1_xfd5i") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s07vr"] +atlas = ExtResource("1_xfd5i") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgg62"] +atlas = ExtResource("1_xfd5i") +region = Rect2(196, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83ghn"] +atlas = ExtResource("1_xfd5i") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o3ci"] +atlas = ExtResource("1_xfd5i") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6loy"] +atlas = ExtResource("1_xfd5i") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv7dy"] +atlas = ExtResource("1_xfd5i") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnopc"] +atlas = ExtResource("1_xfd5i") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_022ux"] +atlas = ExtResource("1_xfd5i") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woti5"] +atlas = ExtResource("1_xfd5i") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pufsg"] +atlas = ExtResource("1_xfd5i") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3hqx"] +atlas = ExtResource("1_xfd5i") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytw5"] +atlas = ExtResource("1_xfd5i") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfu8q"] +atlas = ExtResource("1_xfd5i") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xojfl"] +atlas = ExtResource("1_xfd5i") +region = Rect2(147, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eryfd"] +atlas = ExtResource("1_xfd5i") +region = Rect2(147, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aksuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tffu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48s0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkjre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydhpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyd72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s07vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgg62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83ghn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o3ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6loy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv7dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnopc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_022ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woti5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pufsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3hqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytw5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfu8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xojfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eryfd") +}], +"loop": true, +"name": &"brilliantplume", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_precisionboulder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_precisionboulder.tres new file mode 100644 index 0000000..f593795 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_precisionboulder.tres @@ -0,0 +1,114 @@ +[gd_resource type="SpriteFrames" load_steps=16 format=3 uid="uid://b4kuoxd08vxdx"] + +[ext_resource type="Texture2D" uid="uid://c43uo58g6qimo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png" id="1_n1bkf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn7gi"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o25tn"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnpxo"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pby5s"] +atlas = ExtResource("1_n1bkf") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qablm"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaj16"] +atlas = ExtResource("1_n1bkf") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sirfr"] +atlas = ExtResource("1_n1bkf") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4hnf"] +atlas = ExtResource("1_n1bkf") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ds3w"] +atlas = ExtResource("1_n1bkf") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfake"] +atlas = ExtResource("1_n1bkf") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37dno"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ce0s"] +atlas = ExtResource("1_n1bkf") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp6ds"] +atlas = ExtResource("1_n1bkf") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah38u"] +atlas = ExtResource("1_n1bkf") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn7gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o25tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnpxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pby5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qablm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaj16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sirfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4hnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ds3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfake") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37dno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ce0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp6ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah38u") +}], +"loop": true, +"name": &"precisionboulder", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_riddle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_riddle.tres new file mode 100644 index 0000000..158b045 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_riddle.tres @@ -0,0 +1,107 @@ +[gd_resource type="SpriteFrames" load_steps=15 format=3 uid="uid://skxhhsefejy5"] + +[ext_resource type="Texture2D" uid="uid://0jobyl1i33a6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png" id="1_tonrh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_42kjo"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1k4"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btp5e"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_340h8"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82dwr"] +atlas = ExtResource("1_tonrh") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gaqy"] +atlas = ExtResource("1_tonrh") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70kn3"] +atlas = ExtResource("1_tonrh") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb35w"] +atlas = ExtResource("1_tonrh") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c55bj"] +atlas = ExtResource("1_tonrh") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wem2u"] +atlas = ExtResource("1_tonrh") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bi7j"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc7ov"] +atlas = ExtResource("1_tonrh") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy4ru"] +atlas = ExtResource("1_tonrh") +region = Rect2(49, 196, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42kjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btp5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_340h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82dwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gaqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70kn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb35w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c55bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wem2u") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bi7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc7ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy4ru") +}], +"loop": true, +"name": &"riddle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitybreath.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitybreath.tres new file mode 100644 index 0000000..006480a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitybreath.tres @@ -0,0 +1,149 @@ +[gd_resource type="SpriteFrames" load_steps=21 format=3 uid="uid://cv4h27huw23y4"] + +[ext_resource type="Texture2D" uid="uid://0ngwgccibnuc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png" id="1_metji"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7qlp"] +atlas = ExtResource("1_metji") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dfp1"] +atlas = ExtResource("1_metji") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_702p8"] +atlas = ExtResource("1_metji") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7p8k"] +atlas = ExtResource("1_metji") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv848"] +atlas = ExtResource("1_metji") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b22kr"] +atlas = ExtResource("1_metji") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f46t"] +atlas = ExtResource("1_metji") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3fce"] +atlas = ExtResource("1_metji") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve034"] +atlas = ExtResource("1_metji") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e577x"] +atlas = ExtResource("1_metji") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ippr3"] +atlas = ExtResource("1_metji") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmpfk"] +atlas = ExtResource("1_metji") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4fu5"] +atlas = ExtResource("1_metji") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqaqf"] +atlas = ExtResource("1_metji") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7qis"] +atlas = ExtResource("1_metji") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjnpi"] +atlas = ExtResource("1_metji") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hto2"] +atlas = ExtResource("1_metji") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqwlw"] +atlas = ExtResource("1_metji") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hlqg"] +atlas = ExtResource("1_metji") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7qlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dfp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_702p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7p8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv848") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b22kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f46t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3fce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve034") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e577x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ippr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmpfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4fu5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqaqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7qis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjnpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hto2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqwlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hlqg") +}], +"loop": true, +"name": &"trinitybreath", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitygrace.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitygrace.tres new file mode 100644 index 0000000..92b7e11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinitygrace.tres @@ -0,0 +1,142 @@ +[gd_resource type="SpriteFrames" load_steps=20 format=3 uid="uid://d1gixk5b305ye"] + +[ext_resource type="Texture2D" uid="uid://dlu53ukqan5s1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png" id="1_b25hu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_brf5x"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bygdo"] +atlas = ExtResource("1_b25hu") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ad7t"] +atlas = ExtResource("1_b25hu") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqsmm"] +atlas = ExtResource("1_b25hu") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmwwl"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60t6y"] +atlas = ExtResource("1_b25hu") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4inbr"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yekmg"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwjt3"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhtms"] +atlas = ExtResource("1_b25hu") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lecgn"] +atlas = ExtResource("1_b25hu") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx3wo"] +atlas = ExtResource("1_b25hu") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opass"] +atlas = ExtResource("1_b25hu") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g18fx"] +atlas = ExtResource("1_b25hu") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w8o4"] +atlas = ExtResource("1_b25hu") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1djm"] +atlas = ExtResource("1_b25hu") +region = Rect2(147, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qncb4"] +atlas = ExtResource("1_b25hu") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usa4d"] +atlas = ExtResource("1_b25hu") +region = Rect2(98, 147, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_brf5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bygdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ad7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqsmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmwwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60t6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4inbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yekmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwjt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhtms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lecgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opass") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g18fx") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w8o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1djm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qncb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usa4d") +}], +"loop": true, +"name": &"trinitygrace", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinityheart.tres b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinityheart.tres new file mode 100644 index 0000000..3823ecd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/icons/icon_neutral_trinityheart.tres @@ -0,0 +1,156 @@ +[gd_resource type="SpriteFrames" load_steps=22 format=3 uid="uid://cuj8efmqibpc5"] + +[ext_resource type="Texture2D" uid="uid://dnhkdy05h7xm0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png" id="1_pb3vi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0m84"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgssh"] +atlas = ExtResource("1_pb3vi") +region = Rect2(98, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrrrx"] +atlas = ExtResource("1_pb3vi") +region = Rect2(98, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qln"] +atlas = ExtResource("1_pb3vi") +region = Rect2(98, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr6n5"] +atlas = ExtResource("1_pb3vi") +region = Rect2(98, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o833"] +atlas = ExtResource("1_pb3vi") +region = Rect2(98, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a24r"] +atlas = ExtResource("1_pb3vi") +region = Rect2(147, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_queye"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h5lb"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6st2"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxdk8"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gsdv"] +atlas = ExtResource("1_pb3vi") +region = Rect2(0, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncdg2"] +atlas = ExtResource("1_pb3vi") +region = Rect2(0, 147, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dujra"] +atlas = ExtResource("1_pb3vi") +region = Rect2(0, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfvj4"] +atlas = ExtResource("1_pb3vi") +region = Rect2(0, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr8c5"] +atlas = ExtResource("1_pb3vi") +region = Rect2(0, 0, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6note"] +atlas = ExtResource("1_pb3vi") +region = Rect2(49, 196, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm6ie"] +atlas = ExtResource("1_pb3vi") +region = Rect2(147, 98, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkhpl"] +atlas = ExtResource("1_pb3vi") +region = Rect2(147, 49, 48, 48) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poxib"] +atlas = ExtResource("1_pb3vi") +region = Rect2(147, 0, 48, 48) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0m84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgssh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrrrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6qln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr6n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o833") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a24r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_queye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h5lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6st2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxdk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gsdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncdg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dujra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfvj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr8c5") +}], +"loop": true, +"name": &"active", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6note") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm6ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkhpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poxib") +}], +"loop": true, +"name": &"trinityheart", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_andromeda.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_andromeda.tres new file mode 100644 index 0000000..1290b49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_andromeda.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://cngcd26xleb0d"] + +[ext_resource type="Texture2D" uid="uid://b3vf3ld0o1ad2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png" id="1_h1jk3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk880"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2jo1"] +atlas = ExtResource("1_h1jk3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnwk6"] +atlas = ExtResource("1_h1jk3") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpglv"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4kht"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8thcj"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m62wa"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ielj"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf8ru"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eryph"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfque"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgnmw"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dyp1"] +atlas = ExtResource("1_h1jk3") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1r61"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81qrh"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkmr6"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xslvc"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxmgf"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncscc"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m465i"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa4x7"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu1jx"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwwua"] +atlas = ExtResource("1_h1jk3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjse7"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqvf7"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdkoe"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8snfv"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl74i"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gsub"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53xan"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbyqi"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haiav"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aqr1"] +atlas = ExtResource("1_h1jk3") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhabl"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rklg"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gngfv"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0gag"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v88kn"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu8sq"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8xgc"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twxfj"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdlj0"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4vxr"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beudw"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3yyb"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utmu2"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_307bv"] +atlas = ExtResource("1_h1jk3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frcly"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_can16"] +atlas = ExtResource("1_h1jk3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr7yk"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m3un"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tkxy"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1e7u"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsdky"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwl8w"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g18pw"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l0nk"] +atlas = ExtResource("1_h1jk3") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkth3"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pacy"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frrjb"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1w7d"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubc0y"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sah0i"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1pwp"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i8hv"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14kyk"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv8xa"] +atlas = ExtResource("1_h1jk3") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk880") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2jo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnwk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpglv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4kht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8thcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m62wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ielj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf8ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eryph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfque") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgnmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dyp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1r61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81qrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkmr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xslvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxmgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncscc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m465i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa4x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu1jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwwua") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjse7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqvf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdkoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8snfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl74i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gsub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53xan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbyqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haiav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aqr1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhabl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rklg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gngfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0gag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v88kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu8sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8xgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twxfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdlj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4vxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beudw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3yyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utmu2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_307bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frcly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_can16") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr7yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m3un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tkxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1e7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsdky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwl8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g18pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l0nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkth3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pacy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_frrjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1w7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubc0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sah0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1pwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i8hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14kyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv8xa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_antiswarm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_antiswarm.tres new file mode 100644 index 0000000..33bec48 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_antiswarm.tres @@ -0,0 +1,820 @@ +[gd_resource type="SpriteFrames" load_steps=114 format=3 uid="uid://db68qhcreje7j"] + +[ext_resource type="Texture2D" uid="uid://d0i0w3rjeuqk4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png" id="1_tceij"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4fvr"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak5cg"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdte3"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtm45"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_137yf"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slcic"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td487"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k874"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uk7c"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdmr0"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qldjx"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0i0d"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5q4i"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmc0w"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gy7s"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k874c"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km1x5"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdq8j"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c1o3"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgwgj"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m070h"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d501"] +atlas = ExtResource("1_tceij") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r02m7"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey5jp"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfv8y"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyka1"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckfd7"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4onc"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_805m5"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfqtb"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5eyi"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owr2r"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afs8t"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk1ej"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap5dj"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgvui"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsvus"] +atlas = ExtResource("1_tceij") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0r4e"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvwad"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iju2o"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jigrh"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys651"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uce6g"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykygm"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5cm4"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcwhr"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uyrv"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc5v2"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvq72"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npanr"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mspnd"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn5me"] +atlas = ExtResource("1_tceij") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2stsd"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhrhj"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4miv"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xqjj"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm3ge"] +atlas = ExtResource("1_tceij") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2pjl"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1udgd"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djo15"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvata"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q6xe"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhc2y"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mch54"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66vkx"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crtpd"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukynb"] +atlas = ExtResource("1_tceij") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l5te"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41dex"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcm73"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w0pr"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xec68"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhl2h"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfscv"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts064"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkam7"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya0f7"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqdh2"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ll1"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxiev"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj3b5"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epb1s"] +atlas = ExtResource("1_tceij") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m71k"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6sdr"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiq1u"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4412k"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qylcl"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id2md"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ssl"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjqpu"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga86l"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8npk1"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfo14"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slc5f"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fckfc"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v685l"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nacn"] +atlas = ExtResource("1_tceij") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csw8d"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_334ry"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7f5k"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqruu"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsepw"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shww1"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbq34"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3suvf"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8d5h"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_255mx"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkvyg"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okx8d"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfrgi"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spkoi"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg8k1"] +atlas = ExtResource("1_tceij") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4fvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak5cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdte3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtm45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_137yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slcic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td487") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k874") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uk7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdmr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qldjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0i0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5q4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmc0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gy7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k874c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km1x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdq8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c1o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgwgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m070h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d501") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r02m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey5jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfv8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyka1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckfd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4onc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_805m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfqtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5eyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owr2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afs8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk1ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap5dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgvui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsvus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0r4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvwad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iju2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jigrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys651") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uce6g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykygm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5cm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcwhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uyrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc5v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npanr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mspnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn5me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2stsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhrhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4miv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xqjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm3ge") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2pjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1udgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djo15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvata") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q6xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhc2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mch54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66vkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crtpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukynb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l5te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41dex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcm73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w0pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xec68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhl2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfscv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts064") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkam7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya0f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqdh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ll1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxiev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj3b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epb1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m71k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6sdr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiq1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4412k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qylcl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_id2md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ssl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjqpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga86l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8npk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfo14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slc5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fckfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v685l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nacn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csw8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_334ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7f5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqruu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsepw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shww1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbq34") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3suvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8d5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_255mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkvyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okx8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfrgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spkoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg8k1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_borealjuggernaut.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_borealjuggernaut.tres new file mode 100644 index 0000000..cff41c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_borealjuggernaut.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://iprobu2dtabk"] + +[ext_resource type="Texture2D" uid="uid://bplfvh1op12nk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png" id="1_7gker"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjfoo"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu0il"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_humrx"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbtgc"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttilp"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk7w0"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qaxw"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pp8"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klu3g"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17pon"] +atlas = ExtResource("1_7gker") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75p5o"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1bmv"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i47xc"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twylh"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8wgq"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7l3h"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jq61"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6y41"] +atlas = ExtResource("1_7gker") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpx2w"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jfto"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40gqj"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tm6q"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ntxy"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okuvj"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1d30"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx4sy"] +atlas = ExtResource("1_7gker") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28dbw"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4wat"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af48f"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f882c"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soa0k"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rusye"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j10m"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8lkn"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knjd0"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogid7"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbe1h"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6glm0"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53gkc"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xnse"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0emh"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7cdv"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2juav"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17l4q"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou3fb"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6fhy"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keakk"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwcmy"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e741"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmkn6"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws3uo"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj0b2"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh8n1"] +atlas = ExtResource("1_7gker") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5op4r"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adgq8"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rth2x"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_323p5"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mus5p"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp7as"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2hve"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2mw1"] +atlas = ExtResource("1_7gker") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3s5x"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lssab"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oomm"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnq4i"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmnce"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ytl8"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itukc"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egd7w"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwkh8"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la7on"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3v1q"] +atlas = ExtResource("1_7gker") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1l6o"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbwrq"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r46w"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmyje"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fddsb"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnt5s"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wbb3"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgv7d"] +atlas = ExtResource("1_7gker") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ihdm"] +atlas = ExtResource("1_7gker") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4p7q"] +atlas = ExtResource("1_7gker") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj2mj"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hhuy"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a33y8"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it812"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyuop"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwmj7"] +atlas = ExtResource("1_7gker") +region = Rect2(968, 242, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjfoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu0il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_humrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbtgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttilp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk7w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qaxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7pp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klu3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17pon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75p5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1bmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i47xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twylh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8wgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7l3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jq61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6y41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpx2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jfto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40gqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tm6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ntxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okuvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1d30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx4sy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_28dbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4wat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af48f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f882c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soa0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rusye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j10m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8lkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knjd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogid7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbe1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6glm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53gkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xnse") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0emh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7cdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2juav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17l4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou3fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6fhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keakk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwcmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e741") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmkn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws3uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj0b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh8n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5op4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adgq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rth2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_323p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mus5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp7as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2hve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2mw1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3s5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lssab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oomm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnq4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmnce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ytl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itukc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egd7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwkh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la7on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3v1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1l6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbwrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r46w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmyje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fddsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnt5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wbb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgv7d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ihdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4p7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj2mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hhuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a33y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it812") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyuop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwmj7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_candypanda.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_candypanda.tres new file mode 100644 index 0000000..dd9f766 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_candypanda.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://df43drvoauafp"] + +[ext_resource type="Texture2D" uid="uid://c3a7j3r0jdj6h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png" id="1_1evqu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojeju"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq3jt"] +atlas = ExtResource("1_1evqu") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2p3r"] +atlas = ExtResource("1_1evqu") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_splb5"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2cbb"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6vu2"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egfnr"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejgpv"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b5v6"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nlu8"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0cyv"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbh5h"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maqst"] +atlas = ExtResource("1_1evqu") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2usr"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g7db"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp1o0"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb0oc"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyvn5"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v485l"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e4ob"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm21b"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekukh"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpl8f"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jshfn"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwh6g"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed2na"] +atlas = ExtResource("1_1evqu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr7uw"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhk3i"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_348pr"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ypm"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a610c"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw3ro"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq03f"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc5xl"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q13x"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s6q0"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56yey"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tq7t"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_204eq"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lndsu"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tfs4"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hlfj"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx3pi"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnm1y"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulsbk"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v832h"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4vbg"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajl05"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jipvj"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6yj0"] +atlas = ExtResource("1_1evqu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbm4o"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3u0q"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utxww"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkwoj"] +atlas = ExtResource("1_1evqu") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqs8q"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvwje"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx76n"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa7qd"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgucb"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl3ex"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pewea"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70n4c"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp6y2"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl018"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s44a8"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjxxh"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oblay"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwnsi"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xpnc"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8e22"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_macw3"] +atlas = ExtResource("1_1evqu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcxlb"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46lfk"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gn31"] +atlas = ExtResource("1_1evqu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj2cy"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c218o"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgv1w"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2bmp"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qeuh"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_renf7"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k23x"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phvch"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4ipe"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gppkg"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b255u"] +atlas = ExtResource("1_1evqu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2fjp"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii3er"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj8hs"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vf6f"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8oxl"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r4iw"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ewhv"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng6vm"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aunf4"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwlxv"] +atlas = ExtResource("1_1evqu") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojeju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq3jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2p3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_splb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2cbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6vu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egfnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejgpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b5v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nlu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0cyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbh5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maqst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2usr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g7db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp1o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb0oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyvn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v485l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e4ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm21b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekukh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpl8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jshfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwh6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed2na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr7uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhk3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_348pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ypm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a610c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw3ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq03f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc5xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q13x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s6q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56yey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tq7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_204eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lndsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tfs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hlfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx3pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnm1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulsbk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v832h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4vbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajl05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jipvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6yj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbm4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3u0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utxww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkwoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqs8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvwje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx76n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa7qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgucb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl3ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pewea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70n4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp6y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl018") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s44a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjxxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oblay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwnsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xpnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8e22") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_macw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcxlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46lfk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gn31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj2cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c218o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgv1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2bmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qeuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_renf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k23x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phvch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4ipe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gppkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b255u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2fjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii3er") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj8hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vf6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8oxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r4iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ewhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng6vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aunf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwlxv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_chaosknight.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_chaosknight.tres new file mode 100644 index 0000000..3c215a7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_chaosknight.tres @@ -0,0 +1,785 @@ +[gd_resource type="SpriteFrames" load_steps=109 format=3 uid="uid://cbdiq76oo5fc7"] + +[ext_resource type="Texture2D" uid="uid://u8mk1th204oa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png" id="1_qqql2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w8k6"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqa6j"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qohcn"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoaf5"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y3c7"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4tfd"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0xll"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2j88"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4m62"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbosv"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcunr"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2vjh"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dpaa"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh2w0"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tic5f"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e52fd"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xdnl"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6suo"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrg55"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kccqv"] +atlas = ExtResource("1_qqql2") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ntuo"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb5u8"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcho3"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v88ov"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1onhm"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ijgp"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dfxh"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxilf"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y16jf"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2at5"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwwoc"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x71t1"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f248"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvh0m"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df84v"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhw3l"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xvym"] +atlas = ExtResource("1_qqql2") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihbxd"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75dlt"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfvju"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s4hw"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3njf8"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj3tq"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ojfo"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w80i2"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwhnd"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0d8w"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h8f4"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr88g"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhe6i"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wksnw"] +atlas = ExtResource("1_qqql2") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qx1e"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgbpg"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq6pk"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctt87"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agdlh"] +atlas = ExtResource("1_qqql2") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6stx"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqyjf"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdj85"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0cf3"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8afyv"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghlyj"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7bhm"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i6ms"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0arwx"] +atlas = ExtResource("1_qqql2") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_180rb"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ulhj"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvvag"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxk4i"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flen2"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv682"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hse1"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3k8a"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ijsy"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beheq"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2abqd"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgusq"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7agqb"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6v42"] +atlas = ExtResource("1_qqql2") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mirks"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mon7w"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ivpg"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogyuo"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxln5"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvjt6"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss5sw"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miiq7"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf104"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fptsr"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07ex3"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gbcl"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngao8"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjlxa"] +atlas = ExtResource("1_qqql2") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u551a"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsr1a"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yowwo"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiect"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r451y"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty50i"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_510k1"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jcm5"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w14p"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srffi"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq1kb"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dggr"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg8c1"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wkvc"] +atlas = ExtResource("1_qqql2") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w8k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqa6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qohcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoaf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y3c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4tfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0xll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2j88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4m62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbosv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcunr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2vjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dpaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh2w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tic5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e52fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xdnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6suo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrg55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kccqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ntuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb5u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcho3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v88ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1onhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ijgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dfxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxilf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y16jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2at5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwwoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x71t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f248") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvh0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df84v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhw3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xvym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihbxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75dlt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfvju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s4hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3njf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj3tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ojfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w80i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwhnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0d8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h8f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr88g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhe6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wksnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qx1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgbpg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq6pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctt87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agdlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6stx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqyjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdj85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0cf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8afyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghlyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7bhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i6ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0arwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_180rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ulhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvvag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxk4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flen2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv682") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hse1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3k8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ijsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beheq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2abqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgusq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7agqb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6v42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mirks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mon7w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ivpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogyuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxln5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvjt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss5sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miiq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf104") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fptsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07ex3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gbcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngao8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjlxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u551a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsr1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yowwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiect") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r451y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty50i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_510k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jcm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w14p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srffi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq1kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dggr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg8c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wkvc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_christmas.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_christmas.tres new file mode 100644 index 0000000..7cfe4f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_christmas.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://itk3m3wf2o5o"] + +[ext_resource type="Texture2D" uid="uid://0bqhckq4ryol" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png" id="1_p50m6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qbk6"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xrus"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1fjh"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whp3j"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hg1x"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvvqb"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_200b6"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tatp"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctg4x"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkr43"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os03m"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtutn"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5al5"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysp3a"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f1yq"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owlmq"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtp37"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gux46"] +atlas = ExtResource("1_p50m6") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sepbx"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ir7s"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70ysm"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m0rm"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1k5b"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tmwd"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7821"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjji7"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cib7q"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmqci"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lft4c"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adeey"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymukp"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsy3g"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwsci"] +atlas = ExtResource("1_p50m6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1g4u"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7il8a"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qnjy"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn670"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhf0s"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emq8g"] +atlas = ExtResource("1_p50m6") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bc6d"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dskg0"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w44tt"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21cou"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3qpx"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gptu"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prttv"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkgir"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_158l5"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03l2i"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3kcr"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byauk"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbdj7"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kblyx"] +atlas = ExtResource("1_p50m6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6nbh"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw0u5"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mkv4"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2ch0"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la4kv"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct1rp"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tllo"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52eo2"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ismar"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r2jd"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_356x7"] +atlas = ExtResource("1_p50m6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2owq"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs51n"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ayg"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chh6l"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu43f"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ulup"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0m58"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vfqo"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i17ug"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw2v3"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33h6t"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f1hw"] +atlas = ExtResource("1_p50m6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qbk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xrus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1fjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whp3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hg1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvvqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_200b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tatp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctg4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkr43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os03m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtutn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5al5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysp3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f1yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owlmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtp37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gux46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sepbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ir7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70ysm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m0rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1k5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tmwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7821") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjji7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cib7q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmqci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lft4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adeey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymukp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsy3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwsci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1g4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7il8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qnjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn670") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhf0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emq8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bc6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dskg0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w44tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21cou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3qpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gptu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prttv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkgir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_158l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03l2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3kcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byauk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbdj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kblyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6nbh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw0u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mkv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2ch0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la4kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct1rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tllo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52eo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ismar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r2jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_356x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2owq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs51n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ayg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chh6l") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu43f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ulup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0m58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vfqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i17ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw2v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33h6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f1hw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_cindera.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_cindera.tres new file mode 100644 index 0000000..cd1fc68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_cindera.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://d2yq8gw5ohsj"] + +[ext_resource type="Texture2D" uid="uid://bhshsnif8pcnd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png" id="1_2dyri"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea35p"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwvs6"] +atlas = ExtResource("1_2dyri") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d80t7"] +atlas = ExtResource("1_2dyri") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj3co"] +atlas = ExtResource("1_2dyri") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0bpu"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y60xn"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkmjm"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8gca"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfksi"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4p03"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jykqd"] +atlas = ExtResource("1_2dyri") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6fsh"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b44co"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2snd"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubsi0"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdrqq"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buukg"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0euaf"] +atlas = ExtResource("1_2dyri") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bht06"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyh6w"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj6qd"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xghbt"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ptlv"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvbx1"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoscy"] +atlas = ExtResource("1_2dyri") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vptn0"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubfep"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chvoo"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a22hm"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfo34"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq38j"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvcn"] +atlas = ExtResource("1_2dyri") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qwng"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdoi1"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0wls"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22hci"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvmfv"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g4m4"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kntbm"] +atlas = ExtResource("1_2dyri") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hihgr"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj63w"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foasc"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukykw"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ervtt"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i01fr"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q16cl"] +atlas = ExtResource("1_2dyri") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8op35"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tdfj"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cftbi"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiaya"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsbxr"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i677"] +atlas = ExtResource("1_2dyri") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1566"] +atlas = ExtResource("1_2dyri") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwmeq"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1uh4"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebqgc"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8f7d"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsxwe"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yca1"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb0x6"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g33y"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1etv"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4l4u"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unonq"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c17kp"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh06b"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx0a8"] +atlas = ExtResource("1_2dyri") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wak6i"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vioio"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmqre"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qjcy"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfapg"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlub0"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j07e"] +atlas = ExtResource("1_2dyri") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dc2m"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kxe2"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a77j"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r61se"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhd5g"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8bh1"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waoal"] +atlas = ExtResource("1_2dyri") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7183j"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmqpm"] +atlas = ExtResource("1_2dyri") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58suv"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51lwy"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi6qm"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdg5m"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up1b0"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc4vg"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m7nb"] +atlas = ExtResource("1_2dyri") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmni3"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp5bw"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgbq8"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0evs"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmivh"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgmad"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ayh"] +atlas = ExtResource("1_2dyri") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qiv4"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68r04"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e2mk"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv5wu"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omb6m"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0prs4"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hublg"] +atlas = ExtResource("1_2dyri") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea35p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwvs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d80t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj3co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0bpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y60xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkmjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8gca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfksi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4p03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jykqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6fsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b44co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2snd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubsi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdrqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buukg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0euaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bht06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyh6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj6qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xghbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ptlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvbx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoscy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vptn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubfep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chvoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a22hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfo34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq38j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qwng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdoi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0wls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22hci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvmfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g4m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kntbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hihgr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj63w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foasc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukykw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ervtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i01fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q16cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8op35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tdfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cftbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiaya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsbxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i677") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1566") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwmeq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1uh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebqgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8f7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsxwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yca1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb0x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g33y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1etv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4l4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unonq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c17kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh06b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx0a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wak6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vioio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmqre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qjcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfapg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlub0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j07e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dc2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kxe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a77j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r61se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhd5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8bh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waoal") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7183j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmqpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58suv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_51lwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi6qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdg5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up1b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc4vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m7nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmni3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp5bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgbq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0evs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmivh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgmad") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ayh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qiv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68r04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e2mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv5wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omb6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0prs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hublg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_city.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_city.tres new file mode 100644 index 0000000..8423713 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_city.tres @@ -0,0 +1,451 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://crpgvrlnhx3ot"] + +[ext_resource type="Texture2D" uid="uid://yh70ewnjcnq0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png" id="1_f2063"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0wlc"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7thcd"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24b5q"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljxu1"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbqg7"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s87yb"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw7f4"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv3bc"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6upt"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjhcp"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbhhs"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo36t"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnlqq"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cmjs"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwryd"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnfj5"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jacpi"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uad6m"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0daas"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u52ms"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brksw"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6j5h"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b4it"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja3ip"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrx16"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3k4k"] +atlas = ExtResource("1_f2063") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooa66"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8p3p"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ojjk"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr0ik"] +atlas = ExtResource("1_f2063") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m7fs"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m77m"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2uhj"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as77k"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q782"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jv6w"] +atlas = ExtResource("1_f2063") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lam41"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pw0u"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gppnh"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo4np"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62jmy"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p635"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqtvh"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v283h"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whg38"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn7m0"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4n4g"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1obg2"] +atlas = ExtResource("1_f2063") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhkor"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuwhe"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mj37"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka4yh"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laxgl"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l30fs"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_578lb"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwr0w"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gry1f"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10tdb"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ehh"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elva7"] +atlas = ExtResource("1_f2063") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0wlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7thcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24b5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljxu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbqg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s87yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw7f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv3bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6upt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjhcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbhhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo36t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnlqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cmjs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwryd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnfj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jacpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uad6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0daas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u52ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brksw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6j5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b4it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja3ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrx16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3k4k") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooa66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8p3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ojjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr0ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m7fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m77m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2uhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as77k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q782") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jv6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lam41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pw0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gppnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo4np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62jmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p635") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqtvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v283h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whg38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn7m0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4n4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1obg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhkor") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuwhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mj37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka4yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laxgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l30fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_578lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwr0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gry1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10tdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ehh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elva7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_crystal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_crystal.tres new file mode 100644 index 0000000..e7fec97 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_crystal.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://ci7qp4qp4jr81"] + +[ext_resource type="Texture2D" uid="uid://ll4prmubn8gh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png" id="1_k4bxr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h81jf"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nip6i"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6dh1"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60jj2"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_womd8"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8a4l"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2np4"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_046di"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w55uf"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o5k1"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04lw8"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alo6i"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdwav"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x0ee"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv7sn"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wjrm"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnham"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsosr"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23c3b"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3hhp"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w32k"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpptm"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5jy2"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdmxs"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dfqp"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gclco"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuqbl"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixpww"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stnug"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol86a"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lnj1"] +atlas = ExtResource("1_k4bxr") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkjix"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7whh"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx1ei"] +atlas = ExtResource("1_k4bxr") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i15id"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmm8p"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbfwd"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq6yw"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7s65"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65uqr"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba4v2"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wp1g"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewm0i"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et5gy"] +atlas = ExtResource("1_k4bxr") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rsx3"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k41r"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfoc0"] +atlas = ExtResource("1_k4bxr") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdtc7"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u83l"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xyys"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtdk1"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if54r"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc0lt"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnmb0"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay3h6"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_matgg"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl2ys"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfykn"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m105d"] +atlas = ExtResource("1_k4bxr") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h81jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nip6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6dh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60jj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_womd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8a4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2np4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_046di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w55uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o5k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04lw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alo6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdwav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x0ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv7sn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wjrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnham") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsosr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23c3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3hhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w32k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpptm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5jy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdmxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dfqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gclco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuqbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixpww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stnug") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol86a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lnj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkjix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7whh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx1ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i15id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmm8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbfwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq6yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7s65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65uqr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba4v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wp1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewm0i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_et5gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rsx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k41r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfoc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdtc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u83l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xyys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtdk1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_if54r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc0lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnmb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay3h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_matgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl2ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfykn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m105d") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticle.tres new file mode 100644 index 0000000..54acb6e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticle.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://bfje3ppi8mngd"] + +[ext_resource type="Texture2D" uid="uid://bp4l8x1aqw0rb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png" id="1_0x62d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5s26"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akd7u"] +atlas = ExtResource("1_0x62d") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ph16"] +atlas = ExtResource("1_0x62d") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v7nc"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqqnx"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcb2q"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcx2i"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5lll"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npy2r"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpx3m"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4irwp"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkkb4"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk7f1"] +atlas = ExtResource("1_0x62d") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eniq"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybf1c"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvbi0"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52onr"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6hgo"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp36g"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cygc6"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsnld"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yudgn"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvx8m"] +atlas = ExtResource("1_0x62d") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x20q"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmssg"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfgug"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0quv4"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qgwx"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i442l"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibpcd"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sofeu"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq4qw"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp2so"] +atlas = ExtResource("1_0x62d") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfpmt"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd6n8"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaq55"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guhg0"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cukx6"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb84q"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84wgj"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwn1b"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smj1e"] +atlas = ExtResource("1_0x62d") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja6vj"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfhwm"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3352u"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckdbx"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7rbp"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djoq0"] +atlas = ExtResource("1_0x62d") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v553n"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyuf1"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0mxd"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieoyq"] +atlas = ExtResource("1_0x62d") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjtfu"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7t0o"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usui6"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2fj0"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05pd7"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn5ik"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sw3y"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyq0c"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw5kj"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxt1i"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77lre"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eefeq"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rcuh"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_782p6"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dckel"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2ckk"] +atlas = ExtResource("1_0x62d") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwh2x"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvjoa"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wshc2"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbccy"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctbqd"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5erfv"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25gb8"] +atlas = ExtResource("1_0x62d") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5e0b"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vsch"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvmdw"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6revw"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxjxc"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgcxe"] +atlas = ExtResource("1_0x62d") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsctj"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhox4"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_237at"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okg1d"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irjvr"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj68x"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjpsm"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2vf3"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xq11"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksohj"] +atlas = ExtResource("1_0x62d") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovxk4"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u68j"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg0id"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bb78"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sio0"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx7n8"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nwvh"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhie1"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayaq7"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucgyq"] +atlas = ExtResource("1_0x62d") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5s26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akd7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ph16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v7nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqqnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcb2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcx2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5lll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npy2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpx3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4irwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkkb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk7f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eniq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybf1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvbi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52onr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6hgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp36g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cygc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsnld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yudgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvx8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x20q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmssg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfgug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0quv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qgwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i442l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibpcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sofeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq4qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp2so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfpmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd6n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaq55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guhg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cukx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb84q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84wgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwn1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smj1e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja6vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfhwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3352u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckdbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7rbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djoq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v553n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyuf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0mxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieoyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjtfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7t0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usui6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2fj0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_05pd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn5ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sw3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyq0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw5kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxt1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77lre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eefeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rcuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_782p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dckel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2ckk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwh2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvjoa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wshc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbccy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctbqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5erfv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_25gb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5e0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vsch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvmdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6revw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxjxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgcxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsctj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhox4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_237at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okg1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irjvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj68x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjpsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2vf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xq11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksohj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovxk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u68j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg0id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bb78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sio0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx7n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nwvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhie1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayaq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucgyq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlechassis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlechassis.tres new file mode 100644 index 0000000..8dbe54e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlechassis.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://c6e1g2vrnvjtr"] + +[ext_resource type="Texture2D" uid="uid://f2ds5hk7hy7i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png" id="1_7336o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2flka"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_851jb"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcbgn"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x11mf"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv5co"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o88c"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2rbn"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbb88"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkjuy"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pik68"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nge7"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qihc8"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cwhy"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onxh3"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hj22"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xk7p"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyo5j"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33bue"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ykeq"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e83g5"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0y0t"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqobp"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl3c2"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rddhf"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnn18"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca3ji"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mngh6"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lka6"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxvsd"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmr38"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxa3m"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq3k8"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm0kt"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3t13"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4qrn"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k62rm"] +atlas = ExtResource("1_7336o") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svj57"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll6yy"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k72cc"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bouol"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iw65"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0kjy"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6euk"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2a4f"] +atlas = ExtResource("1_7336o") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ticrh"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvi67"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekb7q"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acwpk"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h8fb"] +atlas = ExtResource("1_7336o") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihfta"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcjww"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdg3s"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqapy"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvspl"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpv6l"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u3ka"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47xnk"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pv6p"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdyok"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yapli"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ldl"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyjd5"] +atlas = ExtResource("1_7336o") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2flka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_851jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcbgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x11mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv5co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o88c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2rbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbb88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkjuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pik68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nge7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qihc8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cwhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onxh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hj22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xk7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyo5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33bue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ykeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e83g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0y0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqobp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl3c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rddhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnn18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca3ji") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mngh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lka6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxvsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmr38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxa3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq3k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm0kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3t13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4qrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k62rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svj57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll6yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k72cc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bouol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iw65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0kjy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6euk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2a4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ticrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvi67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekb7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acwpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h8fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihfta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcjww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdg3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqapy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvspl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpv6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u3ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47xnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pv6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdyok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yapli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ldl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyjd5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlehelm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlehelm.tres new file mode 100644 index 0000000..6898ea4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlehelm.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://cqqgodf4f5sht"] + +[ext_resource type="Texture2D" uid="uid://b2xwj0sklae8w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png" id="1_mi5u7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2hsg"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aeyg"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2a43"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m3vi"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k1aa"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqmwn"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy7mu"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llynm"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agxfk"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urlh4"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6hfl"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoni2"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shr52"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6klb"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l60t"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrcvc"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwatr"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nspqw"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pctnl"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihdff"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi6aw"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8j0x"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b0l5"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6rj7"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yipfm"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp4g1"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fviy7"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud0qr"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oisov"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjhvh"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg3ps"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctigt"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1gaf"] +atlas = ExtResource("1_mi5u7") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm4l8"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txbd4"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6sw1"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fnb1"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fglgn"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ce3"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pfhh"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfep6"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xs4p"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5j61"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdd8t"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gxgo"] +atlas = ExtResource("1_mi5u7") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwabi"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbgd4"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j87b"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t62sq"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gauxg"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv1we"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke6ug"] +atlas = ExtResource("1_mi5u7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iokel"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o14jd"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x83l0"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srmpe"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csatj"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tged5"] +atlas = ExtResource("1_mi5u7") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2hsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aeyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2a43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m3vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k1aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqmwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy7mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llynm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agxfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urlh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6hfl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shr52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6klb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l60t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrcvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwatr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nspqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pctnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihdff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi6aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8j0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b0l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6rj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yipfm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp4g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fviy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud0qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oisov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjhvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg3ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctigt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1gaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm4l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txbd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6sw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fnb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fglgn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pfhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfep6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xs4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5j61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdd8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gxgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwabi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbgd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j87b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t62sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gauxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv1we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke6ug") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iokel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o14jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x83l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srmpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csatj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tged5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticleprime.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticleprime.tres new file mode 100644 index 0000000..0a31c35 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticleprime.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://dkfby2mmjnfpd"] + +[ext_resource type="Texture2D" uid="uid://c0u46rsn5p6b6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png" id="1_7sk3w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_srkv1"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5lt3"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib8p5"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uu5e"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uekw8"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iqdn"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a60m"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ntx4"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaapx"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntmm1"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sife"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj2mq"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4bgg"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koc2y"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i1md"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr5t7"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1nf8"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2kmb"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iowai"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apcqj"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21ysj"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg02m"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwulf"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otit5"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsjop"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krgpj"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbxua"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygmgb"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flk0v"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mld8u"] +atlas = ExtResource("1_7sk3w") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbq4i"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buolf"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtrjp"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5okb"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cswtq"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wih48"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2248"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnn0m"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d55bb"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pc26"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g3ow"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q5cu"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f772q"] +atlas = ExtResource("1_7sk3w") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ldk1"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50gi3"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjoa7"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s000n"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k32pr"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w07cx"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftqxv"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi7re"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4osjh"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0vtw"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfnhy"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de4xc"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pmbg"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo6ie"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv163"] +atlas = ExtResource("1_7sk3w") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nalep"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kllnq"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d4i6"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvkey"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rwea"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dvo4"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8txev"] +atlas = ExtResource("1_7sk3w") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb4j1"] +atlas = ExtResource("1_7sk3w") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq26f"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqp3n"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4rgg"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f87b7"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttudk"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqi77"] +atlas = ExtResource("1_7sk3w") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbc4r"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6kf0"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66q1b"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q36bp"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvx4m"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3hyh"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vsom"] +atlas = ExtResource("1_7sk3w") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yukhc"] +atlas = ExtResource("1_7sk3w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0if1t"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2shr7"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlkf6"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p3p1"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u7mi"] +atlas = ExtResource("1_7sk3w") +region = Rect2(1441, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_srkv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5lt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib8p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uu5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uekw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iqdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a60m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ntx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaapx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntmm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sife") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj2mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4bgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koc2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i1md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr5t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1nf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2kmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iowai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apcqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21ysj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg02m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otit5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsjop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krgpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbxua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygmgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flk0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mld8u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbq4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buolf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtrjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5okb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cswtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wih48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2248") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnn0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d55bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pc26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g3ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q5cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f772q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ldk1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_50gi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjoa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s000n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k32pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w07cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftqxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi7re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4osjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0vtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfnhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de4xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pmbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo6ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv163") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nalep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kllnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d4i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvkey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rwea") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dvo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8txev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb4j1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq26f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqp3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4rgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f87b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttudk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqi77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbc4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6kf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66q1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q36bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvx4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3hyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vsom") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yukhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0if1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2shr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlkf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p3p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u7mi") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlesword.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlesword.tres new file mode 100644 index 0000000..964f002 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlesword.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://cwa7fac04ec03"] + +[ext_resource type="Texture2D" uid="uid://dukn5dl5e28qp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png" id="1_rf0p3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdl7w"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbcfv"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbh68"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ajf"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrrqb"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fok4t"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og6w2"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_intg8"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5r4"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwhw7"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2mil"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j27vb"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow6bq"] +atlas = ExtResource("1_rf0p3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcnqd"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iduef"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s36j"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feapj"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqsvv"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdbpf"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n1wu"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k7m3"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dl0s"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ec7t"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic1mw"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hvsy"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6mp8"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clnqm"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs8qf"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ro33"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb5h1"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4makp"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap5gq"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8owx"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fya51"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e58rx"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jqpx"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybucn"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8y8"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy33l"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6e40"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8qfm"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70ep2"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj5t2"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwlbw"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcucu"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35cjc"] +atlas = ExtResource("1_rf0p3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xbpn"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5q7i"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bp71"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f2te"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4d0"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odoir"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cqpt"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f2sp"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euui8"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tly6"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c6bo"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icnnn"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ychjr"] +atlas = ExtResource("1_rf0p3") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulyxr"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvq4x"] +atlas = ExtResource("1_rf0p3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2itpp"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vgs1"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2hu5"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heu1s"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h68k0"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up5y5"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lutex"] +atlas = ExtResource("1_rf0p3") +region = Rect2(324, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdl7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbcfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbh68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ajf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrrqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fok4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og6w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_intg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwhw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2mil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j27vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow6bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcnqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iduef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s36j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_feapj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqsvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdbpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n1wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k7m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dl0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ec7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic1mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hvsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6mp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clnqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs8qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ro33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb5h1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4makp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap5gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8owx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fya51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e58rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jqpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybucn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q8y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy33l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6e40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8qfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70ep2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj5t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwlbw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcucu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35cjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xbpn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5q7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bp71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f2te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odoir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cqpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f2sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euui8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tly6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c6bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icnnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ychjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulyxr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvq4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2itpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vgs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2hu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heu1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h68k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up5y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lutex") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlewings.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlewings.tres new file mode 100644 index 0000000..8cb7095 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_decepticlewings.tres @@ -0,0 +1,510 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://dllv4ip0g3fws"] + +[ext_resource type="Texture2D" uid="uid://bi210aq7868at" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png" id="1_dtumw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqa2u"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v53pw"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mu8k"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7y24"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ssv"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxnr5"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sccu"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkqy6"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0smbm"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmwe5"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05yrd"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y8w3"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouw1x"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2twe"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlhkg"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrgkv"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk2in"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blar3"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqp15"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r25ei"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smddo"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2cff"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrx2j"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kildp"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hesrs"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0flom"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hvn3"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcw8v"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5em2u"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bsvx"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6uc2"] +atlas = ExtResource("1_dtumw") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfwsf"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sta4n"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou0yk"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwat4"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxrfb"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8xp8"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41kj8"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0utf"] +atlas = ExtResource("1_dtumw") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abegq"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iv7n"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qrp8"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0fx4"] +atlas = ExtResource("1_dtumw") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxlrq"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qt7a"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxvvm"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbddw"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r47f1"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxalc"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l7q0"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq1yf"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frd2i"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flw7c"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0foa"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_478dv"] +atlas = ExtResource("1_dtumw") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilxr3"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mqsy"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwhwj"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc6jj"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kw2m"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se7cv"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr02r"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiufh"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbeh6"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtbbg"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ag4i"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6knjc"] +atlas = ExtResource("1_dtumw") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqa2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v53pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mu8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7y24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ssv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxnr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sccu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkqy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0smbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmwe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05yrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y8w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouw1x") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2twe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlhkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrgkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk2in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blar3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqp15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r25ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smddo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2cff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrx2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kildp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hesrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0flom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hvn3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcw8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5em2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bsvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6uc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfwsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sta4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou0yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwat4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxrfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8xp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41kj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0utf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abegq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iv7n") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qrp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0fx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxlrq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qt7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxvvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbddw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r47f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxalc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l7q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq1yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frd2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flw7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0foa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_478dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilxr3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mqsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwhwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc6jj") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kw2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se7cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr02r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiufh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbeh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtbbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ag4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6knjc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_dissonance.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_dissonance.tres new file mode 100644 index 0000000..501af0a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_dissonance.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://it8cm6mm1gs0"] + +[ext_resource type="Texture2D" uid="uid://cpftvqdlghbtq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png" id="1_03w8r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j6gr"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syeee"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyw8x"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a204r"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0xr7"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxdyf"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htrfm"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5qh"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf33m"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtw5u"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwmyu"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp5jj"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwyd6"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pniob"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otl37"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orgtc"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgfxl"] +atlas = ExtResource("1_03w8r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xvdv"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rlmy"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lurhi"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5bdl"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy1om"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0av11"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sts0u"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrw3a"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj442"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grncn"] +atlas = ExtResource("1_03w8r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0f8h"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq62s"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rneed"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v7v7"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls7q7"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukqkf"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ksux"] +atlas = ExtResource("1_03w8r") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtdqx"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ervq2"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21nf0"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bws8r"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxtec"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rcyy"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhp7f"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha7da"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkmml"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk23g"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb23p"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x4wc"] +atlas = ExtResource("1_03w8r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tr20"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jubvw"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vren1"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfnhg"] +atlas = ExtResource("1_03w8r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5ma2"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eud3j"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j68gq"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i53v2"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e02qj"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a5c2"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwtr0"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe35r"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otegu"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y3vi"] +atlas = ExtResource("1_03w8r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogub5"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgp3i"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj35k"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkc1"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkur5"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yjet"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0f4o"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ut1"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujfmg"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51ouk"] +atlas = ExtResource("1_03w8r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j6gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syeee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyw8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a204r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0xr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxdyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htrfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf33m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtw5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwmyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp5jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwyd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pniob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otl37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orgtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgfxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xvdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rlmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lurhi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5bdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy1om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0av11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sts0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrw3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj442") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grncn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0f8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq62s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rneed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v7v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls7q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukqkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ksux") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtdqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ervq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21nf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bws8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxtec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rcyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhp7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha7da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkmml") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk23g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb23p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x4wc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tr20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jubvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vren1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfnhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5ma2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eud3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j68gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i53v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e02qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a5c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwtr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe35r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otegu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y3vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogub5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgp3i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj35k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptkc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkur5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yjet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0f4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ut1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujfmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51ouk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_emp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_emp.tres new file mode 100644 index 0000000..935bc75 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_emp.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://dg058ekvtt7p0"] + +[ext_resource type="Texture2D" uid="uid://dtm7aks7x28vc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png" id="1_s5lqd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n56di"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wgxh"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrujx"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxjnb"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr0f5"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8p2n"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf17y"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ip53"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yil4"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1iv8"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg0sv"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v4bd"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r74sy"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52ftg"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o7jn"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwbcr"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc6pc"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pfs4"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lqnp"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq17r"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uarpo"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8hb7"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28p31"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceqp3"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbcqc"] +atlas = ExtResource("1_s5lqd") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ycs3"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1erwo"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k7ge"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trkdm"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1rrx"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a8dk"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apv73"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5uls"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sxqj"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnqni"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oh8a"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5mbo"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj8yj"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nupbu"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrps0"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ry4j"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqo3c"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keoyh"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13db4"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5fkc"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4flu"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr05l"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sqw5"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngyvp"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iistn"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqbro"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi4ke"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k18lm"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apq0a"] +atlas = ExtResource("1_s5lqd") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wqay"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctmow"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7py4"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrw73"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1kae"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqb6q"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_066e2"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cktgo"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyo3b"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g60s"] +atlas = ExtResource("1_s5lqd") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhp26"] +atlas = ExtResource("1_s5lqd") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qbk1"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mevj1"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jlow"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d70ef"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idn8b"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asfj8"] +atlas = ExtResource("1_s5lqd") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80pcf"] +atlas = ExtResource("1_s5lqd") +region = Rect2(404, 909, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n56di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wgxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrujx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxjnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr0f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8p2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf17y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ip53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yil4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1iv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg0sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v4bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r74sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52ftg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o7jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwbcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc6pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pfs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lqnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq17r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uarpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8hb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28p31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceqp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbcqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ycs3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1erwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k7ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trkdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1rrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a8dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apv73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5uls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sxqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnqni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oh8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5mbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj8yj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nupbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrps0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ry4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqo3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keoyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13db4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5fkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4flu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr05l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sqw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngyvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iistn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqbro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi4ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k18lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apq0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wqay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctmow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7py4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrw73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1kae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqb6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_066e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cktgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyo3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g60s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhp26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qbk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mevj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jlow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d70ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idn8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asfj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80pcf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_gol.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_gol.tres new file mode 100644 index 0000000..aa2245d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_gol.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://cnc7glwne5717"] + +[ext_resource type="Texture2D" uid="uid://ba5tbey1v5awb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png" id="1_fs1vw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_276t1"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14ixw"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1833, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4srh"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvvkc"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srlv0"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xgw6"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7f7l"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2d46"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eta3k"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1692, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ytny"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig5fc"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q3y1"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0tqy"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erlgn"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j75d"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx2cj"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1551, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83duk"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16rw1"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hufv1"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty55j"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rum5o"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mxw"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd02a"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1410, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8btbv"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wm4c"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cftkr"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq2q4"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ugm"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr5vj"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3yaw"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpt78"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fkew"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3mfr"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks6f2"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rbf3"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31l3s"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enfw5"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vulgg"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmmaw"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f5bo"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r4sk"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7urff"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld5jr"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g14fc"] +atlas = ExtResource("1_fs1vw") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0m61"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anh2t"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l56f"] +atlas = ExtResource("1_fs1vw") +region = Rect2(1833, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkj4x"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bceu6"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouqju"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdqvg"] +atlas = ExtResource("1_fs1vw") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c5ja"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah4ig"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl6au"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3a0e"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsts5"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gutlh"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdh3y"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7yau"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16jaf"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn6x1"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmkhu"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owcn6"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pajf8"] +atlas = ExtResource("1_fs1vw") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20k7y"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10fs3"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfktc"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vgpk"] +atlas = ExtResource("1_fs1vw") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inkva"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fgtt"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrlt5"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yqvq"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sinp2"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl5qx"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn48l"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26lit"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abmds"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6fsx"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m218"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y484i"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntlq5"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68egi"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03jr2"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fte0t"] +atlas = ExtResource("1_fs1vw") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6yv2"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnghg"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkh6f"] +atlas = ExtResource("1_fs1vw") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2y2d"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s254w"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctvad"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvm4s"] +atlas = ExtResource("1_fs1vw") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7lfy"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e273x"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaie3"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vmja"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06u2k"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_putra"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfeeq"] +atlas = ExtResource("1_fs1vw") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_276t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14ixw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4srh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvvkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srlv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xgw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7f7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2d46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eta3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ytny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig5fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q3y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0tqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erlgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j75d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx2cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83duk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16rw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hufv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty55j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rum5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd02a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8btbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wm4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cftkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq2q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ugm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr5vj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3yaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpt78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fkew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3mfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks6f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rbf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31l3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enfw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vulgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmmaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f5bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r4sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7urff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld5jr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g14fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0m61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anh2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l56f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkj4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bceu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouqju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdqvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c5ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah4ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl6au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3a0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsts5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gutlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdh3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7yau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16jaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn6x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmkhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owcn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pajf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20k7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10fs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfktc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vgpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inkva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fgtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrlt5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yqvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sinp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl5qx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn48l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26lit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abmds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6fsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m218") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y484i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntlq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68egi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03jr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fte0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6yv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnghg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkh6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2y2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s254w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctvad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvm4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7lfy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e273x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaie3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vmja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06u2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_putra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfeeq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_grym.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_grym.tres new file mode 100644 index 0000000..ee52530 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_grym.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://d4cx26703ou5w"] + +[ext_resource type="Texture2D" uid="uid://b1ltb4e6xquat" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png" id="1_d8o35"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh1rw"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5scwi"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t3no"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx15r"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpfr3"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7lbe"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmgq2"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm8au"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4hou"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft4pe"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6doii"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps1ot"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e40j"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frn8r"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e40d"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aicjx"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o11wf"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3svf"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4smmi"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws3pe"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rkpv"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrugr"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsahw"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1urc1"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_314l1"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exm5i"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj4rc"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgobf"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14xi7"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh8nl"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if4su"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8or65"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi53q"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv5me"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyk2f"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gncjc"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfmm2"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ytdi"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wxol"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkbqg"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4g86"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42a44"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f051m"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4bpp"] +atlas = ExtResource("1_d8o35") +region = Rect2(348, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_567fl"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2mwy"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52t7i"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03v5w"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stqee"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b54kc"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4hjw"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccgmq"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njkdl"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsge3"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w0sm"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg3bj"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vhcj"] +atlas = ExtResource("1_d8o35") +region = Rect2(232, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkjjg"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceib2"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw1ol"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pitu6"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b86j2"] +atlas = ExtResource("1_d8o35") +region = Rect2(116, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2tkf"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgyo3"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwapc"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54syk"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2a6g"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_178mw"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8usoo"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7g7d"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvv4a"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyndh"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yoat"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni8a2"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u61wm"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq0ss"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8je3i"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7nvq"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihhyl"] +atlas = ExtResource("1_d8o35") +region = Rect2(0, 0, 115, 115) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh1rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5scwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t3no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx15r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpfr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7lbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmgq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm8au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4hou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft4pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6doii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps1ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e40j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frn8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e40d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aicjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o11wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3svf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4smmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws3pe") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rkpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrugr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsahw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1urc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_314l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exm5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj4rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgobf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14xi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh8nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if4su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8or65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi53q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv5me") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyk2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gncjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfmm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ytdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wxol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkbqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4g86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42a44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f051m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4bpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_567fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2mwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52t7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03v5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stqee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b54kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4hjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccgmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njkdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsge3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w0sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg3bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vhcj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkjjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceib2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw1ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pitu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b86j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2tkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwapc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54syk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2a6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_178mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8usoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7g7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvv4a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyndh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yoat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni8a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u61wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq0ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8je3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7nvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihhyl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_harmony.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_harmony.tres new file mode 100644 index 0000000..4445d1e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_harmony.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://s434seb2gfj2"] + +[ext_resource type="Texture2D" uid="uid://b5lh5xum0dy0e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png" id="1_3nhtu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dov4r"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na1gv"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxjle"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orb1j"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqa82"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mcga"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klo8q"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mehi"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vemk"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h3a6"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llya6"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq4jy"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eq47"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cvi2"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3afg"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peuid"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p8ht"] +atlas = ExtResource("1_3nhtu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orj1x"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlkox"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xynk6"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqn57"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srkxo"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcd8p"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6o0c"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bypc"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80crj"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j8si"] +atlas = ExtResource("1_3nhtu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58xsx"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5ekg"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_netvt"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caaw3"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl8yx"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1bxq"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40awe"] +atlas = ExtResource("1_3nhtu") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6h5w"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd2gx"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4b2l"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbnny"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0lih"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmbw5"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evw65"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xswta"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8mik"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhoey"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0p0i"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2lhh"] +atlas = ExtResource("1_3nhtu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxmaw"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54y3h"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkiir"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu2yu"] +atlas = ExtResource("1_3nhtu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh3ik"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp20j"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8tkd"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qx8v"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3pbf"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gwn8"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl1yk"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77kyo"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb7sj"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eyhj"] +atlas = ExtResource("1_3nhtu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xix7o"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe1x8"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa1p0"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kei3j"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f6f2"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32m2u"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm2gc"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qceec"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dafcu"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvrw3"] +atlas = ExtResource("1_3nhtu") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dov4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na1gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxjle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orb1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqa82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mcga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klo8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mehi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vemk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h3a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llya6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq4jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eq47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cvi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3afg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peuid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p8ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orj1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlkox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xynk6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqn57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srkxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcd8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6o0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bypc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80crj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j8si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58xsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5ekg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_netvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_caaw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl8yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1bxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40awe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6h5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd2gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4b2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbnny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0lih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmbw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evw65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xswta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8mik") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhoey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0p0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2lhh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxmaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54y3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkiir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu2yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh3ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp20j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8tkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qx8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3pbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gwn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl1yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77kyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb7sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eyhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xix7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe1x8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa1p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kei3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f6f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32m2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm2gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qceec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dafcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvrw3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_invader.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_invader.tres new file mode 100644 index 0000000..1ca7d90 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_invader.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://dqyueyen18p6n"] + +[ext_resource type="Texture2D" uid="uid://ca3q4bnummcvy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png" id="1_o7xt1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7okgx"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrwq2"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlc2n"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swy57"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3vqj"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t2ed"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2bjj"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htmr2"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46y8h"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd3gd"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymnwt"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dnsp"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8eod"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nevik"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51bfo"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m26w"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nj5e"] +atlas = ExtResource("1_o7xt1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abumt"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4dnc"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp2ud"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf2vk"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b181p"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh31w"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inaku"] +atlas = ExtResource("1_o7xt1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jegq"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bixsy"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ffht"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xfq"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qcjm"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qj5f"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga07a"] +atlas = ExtResource("1_o7xt1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y7jh"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eiwy"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8cwm"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0bdw"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn7k5"] +atlas = ExtResource("1_o7xt1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7kv5"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ng1"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w0kh"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svygm"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r6lk"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiy53"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p657j"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yniyx"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k4pv"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smf2k"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5ie0"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j1ft"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iidrr"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awd6u"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74xh7"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8rwc"] +atlas = ExtResource("1_o7xt1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gomc7"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3yaf"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kywu"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_735cr"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfvp5"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad2sl"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hcmq"] +atlas = ExtResource("1_o7xt1") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55hy4"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd2kv"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnncr"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sry70"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npvbh"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byx3v"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tifnb"] +atlas = ExtResource("1_o7xt1") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16rxt"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugg4g"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1oip"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jh4h"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s0f6"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rf31"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5y6v"] +atlas = ExtResource("1_o7xt1") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u6re"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfpqq"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkw7m"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06rru"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30k48"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa2et"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xypcs"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhkip"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37m4k"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83oyv"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vgrj"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvpyb"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx5q7"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqx31"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snlem"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdop0"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w77ql"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q6yh"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68vc6"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00fl1"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3c2e"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_folmi"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ef1m"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc2hb"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_refl7"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp7xc"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v21ah"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbe6r"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2oy6"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qog6j"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf5b3"] +atlas = ExtResource("1_o7xt1") +region = Rect2(1048, 393, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7okgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrwq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlc2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swy57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3vqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t2ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2bjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htmr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46y8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd3gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymnwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dnsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8eod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nevik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51bfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m26w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nj5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abumt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4dnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp2ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf2vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b181p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh31w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inaku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jegq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bixsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ffht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qcjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qj5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga07a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y7jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eiwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8cwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0bdw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn7k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7kv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ng1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w0kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svygm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r6lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiy53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p657j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yniyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k4pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smf2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5ie0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j1ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iidrr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_awd6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74xh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8rwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gomc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3yaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kywu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_735cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfvp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad2sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hcmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55hy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd2kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnncr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sry70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npvbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byx3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tifnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16rxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugg4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1oip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jh4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s0f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rf31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5y6v") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u6re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfpqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkw7m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_06rru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30k48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa2et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xypcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhkip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37m4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83oyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vgrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvpyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx5q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqx31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snlem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdop0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w77ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q6yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68vc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00fl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3c2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_folmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ef1m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc2hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_refl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp7xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v21ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbe6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2oy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qog6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf5b3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kane.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kane.tres new file mode 100644 index 0000000..e8c67c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kane.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://didukbtoid7fp"] + +[ext_resource type="Texture2D" uid="uid://bxrfqt72ffojw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png" id="1_xuhcg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u63ad"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcr8u"] +atlas = ExtResource("1_xuhcg") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ttdi"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytoxe"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akf5u"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofqpe"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si21a"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2jjk"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0rkf"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gugt"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x36g7"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_comtp"] +atlas = ExtResource("1_xuhcg") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epnfc"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48rl6"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpy8y"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhp8w"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1wdk"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh8h8"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216f8"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6we2"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1feed"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53qhm"] +atlas = ExtResource("1_xuhcg") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2tnf"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu0ek"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86yx6"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul3cb"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0e73"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mytk"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvl3y"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjowg"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrisj"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmm7e"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksqq3"] +atlas = ExtResource("1_xuhcg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnd6c"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_261qp"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfn0w"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifs0"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vttft"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtbyc"] +atlas = ExtResource("1_xuhcg") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5dqc"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvqrg"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye5yq"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8pwp"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxods"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asrp6"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_karwa"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y7m5"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osbnr"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywe4r"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbcwe"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3agpo"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vygt3"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylmvf"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ip3s"] +atlas = ExtResource("1_xuhcg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5fpx"] +atlas = ExtResource("1_xuhcg") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hxkv"] +atlas = ExtResource("1_xuhcg") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83pf6"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qwo3"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gep4q"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kabg4"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojs3j"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkvhf"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv0wj"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhjl0"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk71w"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cwh6"] +atlas = ExtResource("1_xuhcg") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3vf8"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxidw"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcel2"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itb7b"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csetg"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndhob"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmtjs"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anqh2"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74gjg"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7jd8"] +atlas = ExtResource("1_xuhcg") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u63ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcr8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ttdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytoxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akf5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofqpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si21a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2jjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0rkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gugt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x36g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_comtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epnfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48rl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpy8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhp8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1wdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh8h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6we2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1feed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53qhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2tnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu0ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86yx6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul3cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0e73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mytk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvl3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjowg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrisj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmm7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksqq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnd6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_261qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfn0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nifs0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vttft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtbyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5dqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvqrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye5yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8pwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxods") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asrp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_karwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y7m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osbnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywe4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbcwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3agpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vygt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylmvf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ip3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5fpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hxkv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_83pf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qwo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gep4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kabg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojs3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkvhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv0wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhjl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk71w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cwh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3vf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxidw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcel2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itb7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csetg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndhob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmtjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anqh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74gjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7jd8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kron.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kron.tres new file mode 100644 index 0000000..6eea172 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_kron.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://b1honc4lq15yq"] + +[ext_resource type="Texture2D" uid="uid://bcnp6ygqtguc1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png" id="1_scqvk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtdiv"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx4gt"] +atlas = ExtResource("1_scqvk") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3o2r"] +atlas = ExtResource("1_scqvk") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iatux"] +atlas = ExtResource("1_scqvk") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7ku4"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkyvv"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhutl"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlaub"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4aat"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxma0"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h0w0"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b61h"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbjx1"] +atlas = ExtResource("1_scqvk") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybshb"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq7i7"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo7ab"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndjxr"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfrrh"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpxmc"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hmx8"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdo5l"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seuf2"] +atlas = ExtResource("1_scqvk") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkcin"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je23r"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4pbb"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnxh1"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7237"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl6qr"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i6hd"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci0i5"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10o1e"] +atlas = ExtResource("1_scqvk") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrg3s"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd0gb"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qexjo"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp1c6"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yff5e"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjdqd"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcshf"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqw7g"] +atlas = ExtResource("1_scqvk") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpk3j"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wevbp"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vduxd"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14m3"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmyfd"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf3x0"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vd0p"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqrp1"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgn4v"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aqie"] +atlas = ExtResource("1_scqvk") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5g8l"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_403f4"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdhbw"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok8nn"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q83wu"] +atlas = ExtResource("1_scqvk") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uupue"] +atlas = ExtResource("1_scqvk") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eduee"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krell"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttlmj"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wfie"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3sut"] +atlas = ExtResource("1_scqvk") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lnxx"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4m56"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h786"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s64i"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kul4"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mng"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lic5"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dcl4"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26pen"] +atlas = ExtResource("1_scqvk") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wyfs"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ki6s"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms36a"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmv68"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtsew"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc7cg"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p651l"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qogm"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wen5"] +atlas = ExtResource("1_scqvk") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtdiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx4gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3o2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iatux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7ku4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkyvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhutl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlaub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4aat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxma0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h0w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b61h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbjx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybshb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq7i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo7ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndjxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfrrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpxmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hmx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdo5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seuf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkcin") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_je23r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4pbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnxh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7237") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl6qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i6hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci0i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10o1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrg3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd0gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qexjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp1c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yff5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjdqd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcshf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqw7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpk3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wevbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vduxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmyfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf3x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vd0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqrp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgn4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aqie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5g8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_403f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdhbw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok8nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q83wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uupue") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eduee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krell") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttlmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wfie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3sut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lnxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4m56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h786") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s64i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kul4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lic5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dcl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26pen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wyfs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ki6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms36a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmv68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtsew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc7cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p651l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qogm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wen5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_legion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_legion.tres new file mode 100644 index 0000000..00ecf41 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_legion.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://d0lsy4mvml3fs"] + +[ext_resource type="Texture2D" uid="uid://cpmg6v0a2dmvg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png" id="1_wbnw6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4eb8"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obni1"] +atlas = ExtResource("1_wbnw6") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyg8v"] +atlas = ExtResource("1_wbnw6") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pvwo"] +atlas = ExtResource("1_wbnw6") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5qjv"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkx52"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as2bp"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5bfe"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f0xl"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjmv1"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmnur"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coi5c"] +atlas = ExtResource("1_wbnw6") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awmd4"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vbb0"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xde7g"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07uy5"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj45r"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5127"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaxwx"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lcrl"] +atlas = ExtResource("1_wbnw6") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqu7p"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxh6w"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5su"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkxaa"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk5gu"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhknt"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkg3j"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueoir"] +atlas = ExtResource("1_wbnw6") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brbqm"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbjdj"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lt4i"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3adk"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31moe"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q50gq"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwksc"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b1fh"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bn6c"] +atlas = ExtResource("1_wbnw6") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imihu"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5p2l"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dhea"] +atlas = ExtResource("1_wbnw6") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxt6g"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n3by"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up0ay"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc7mb"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3vcq"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agcgl"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qh36"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjiky"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rslbm"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni64m"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2al8n"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efhmb"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8mik"] +atlas = ExtResource("1_wbnw6") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rmgp"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtw5b"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ly1"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfwhl"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yo31"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mksio"] +atlas = ExtResource("1_wbnw6") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73420"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bya5s"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm4kk"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aybve"] +atlas = ExtResource("1_wbnw6") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieag0"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8o5p"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo002"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x47gf"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0y0a"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsmwy"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihsb5"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_500tl"] +atlas = ExtResource("1_wbnw6") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxpdq"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6i6p"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tliv1"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj5ep"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e28oy"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r53fv"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnnoj"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuxky"] +atlas = ExtResource("1_wbnw6") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4eb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obni1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyg8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pvwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5qjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkx52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as2bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5bfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f0xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjmv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmnur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coi5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awmd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vbb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xde7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07uy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj45r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5127") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaxwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lcrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqu7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxh6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy5su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkxaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk5gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhknt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkg3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueoir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brbqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbjdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lt4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3adk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31moe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q50gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwksc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b1fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bn6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imihu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5p2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dhea") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxt6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n3by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up0ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc7mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3vcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agcgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qh36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjiky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rslbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni64m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2al8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efhmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8mik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rmgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtw5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ly1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfwhl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yo31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mksio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73420") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bya5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm4kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aybve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieag0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8o5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo002") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x47gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0y0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsmwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihsb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_500tl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxpdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6i6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tliv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj5ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e28oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r53fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnnoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuxky") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_malyk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_malyk.tres new file mode 100644 index 0000000..dc7cb46 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_malyk.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://xw1cqmdmvufw"] + +[ext_resource type="Texture2D" uid="uid://bknupp50jsxt3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png" id="1_8xyhy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1xj2"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ro54"] +atlas = ExtResource("1_8xyhy") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma0oj"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grlsh"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq56l"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gt03"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5vix"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckuyj"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlopw"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwjc7"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j467c"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0ayu"] +atlas = ExtResource("1_8xyhy") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvxjk"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d06l"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewmig"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucjjf"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmumi"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dtlu"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6epxq"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5j8v"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hph80"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy3k5"] +atlas = ExtResource("1_8xyhy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t6ag"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npwhl"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmcy2"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kqac"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu3ag"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r13u3"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wjje"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_howq7"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qmps"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toqko"] +atlas = ExtResource("1_8xyhy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfo86"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp84n"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uecfn"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2vrt"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p1iy"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4jl7"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf6m6"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqjov"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nnd5"] +atlas = ExtResource("1_8xyhy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl4er"] +atlas = ExtResource("1_8xyhy") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8robe"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5n8g"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwrmc"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndvli"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxuyl"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sq76"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y53uq"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocifn"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr8ge"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gkjb"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eqa6"] +atlas = ExtResource("1_8xyhy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqxbe"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3q85"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huxx0"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drkpx"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh4wb"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ag1k"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl0p8"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii8tg"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xf32"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qfsp"] +atlas = ExtResource("1_8xyhy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7naf"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s72c"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w7cs"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avttc"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_islr0"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwhff"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k17p6"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjj18"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bwi0"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa4ed"] +atlas = ExtResource("1_8xyhy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e5sb"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxtwb"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbi7j"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4em3d"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2vpc"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q67pk"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyb4l"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8lr8"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1pyx"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5dg5"] +atlas = ExtResource("1_8xyhy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1xj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ro54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma0oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grlsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq56l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gt03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5vix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckuyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlopw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwjc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j467c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0ayu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvxjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d06l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewmig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucjjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmumi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dtlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6epxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5j8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hph80") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy3k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t6ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npwhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmcy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kqac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu3ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r13u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wjje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_howq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qmps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toqko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfo86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp84n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uecfn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2vrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p1iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4jl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf6m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqjov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nnd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl4er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8robe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5n8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwrmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndvli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxuyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sq76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y53uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocifn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr8ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gkjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eqa6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqxbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3q85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huxx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drkpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh4wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ag1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl0p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii8tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xf32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qfsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7naf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s72c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w7cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avttc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_islr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwhff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k17p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjj18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bwi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa4ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e5sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxtwb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbi7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4em3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2vpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q67pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyb4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8lr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1pyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5dg5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_manaman.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_manaman.tres new file mode 100644 index 0000000..836c536 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_manaman.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://bv5v4e3wtb12c"] + +[ext_resource type="Texture2D" uid="uid://bhrkmc3gknbd7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png" id="1_nosqq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkax6"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nr10"] +atlas = ExtResource("1_nosqq") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7i4l"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drw63"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp2oh"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ek2n"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py8ip"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13xyn"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mij6"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ktac"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfemn"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aywk"] +atlas = ExtResource("1_nosqq") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5snt"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xetdg"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvnsr"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuhuv"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io7ll"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdysm"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksdw6"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lurwn"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoje1"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3m1e"] +atlas = ExtResource("1_nosqq") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ib2f"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21qkl"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yupn"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35yel"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g5nu"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l4ch"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02oih"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vysr8"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj3ca"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh8ra"] +atlas = ExtResource("1_nosqq") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpfgv"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhwm1"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rurs"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3agn"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl7tl"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrdsa"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0eqe"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84ywd"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjhmw"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y8ii"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61rq8"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fl32"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ectt1"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_840fq"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdhxh"] +atlas = ExtResource("1_nosqq") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11o7o"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbiu5"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exbb5"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlil1"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvc25"] +atlas = ExtResource("1_nosqq") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ow6h"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gofs3"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0jr3"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioglm"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vym77"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpswu"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rj5m"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3uh4"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xdg1"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wt1l"] +atlas = ExtResource("1_nosqq") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqf55"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ei17"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_118cj"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_688hp"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwbvc"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd06h"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xhjs"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tqxx"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csqyj"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2yjn"] +atlas = ExtResource("1_nosqq") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq0ar"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7601s"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7730k"] +atlas = ExtResource("1_nosqq") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjlq1"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjqj7"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm5c5"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kl84"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhf28"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiasm"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohxe5"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2eiu"] +atlas = ExtResource("1_nosqq") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfi2l"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el1y6"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyp0v"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdlg"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsxym"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwcs7"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmx0e"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em1qx"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmki2"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xr6n"] +atlas = ExtResource("1_nosqq") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkax6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nr10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7i4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drw63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp2oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ek2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py8ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13xyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mij6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ktac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfemn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aywk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5snt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xetdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvnsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuhuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdysm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksdw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lurwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoje1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3m1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ib2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21qkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yupn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35yel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g5nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l4ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02oih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vysr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj3ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh8ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpfgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhwm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rurs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3agn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl7tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrdsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0eqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84ywd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjhmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y8ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61rq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fl32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ectt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_840fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdhxh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_11o7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbiu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exbb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlil1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvc25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ow6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gofs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0jr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioglm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vym77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpswu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rj5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3uh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xdg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wt1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqf55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ei17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_118cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_688hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwbvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd06h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xhjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tqxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csqyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2yjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq0ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7601s") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7730k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjlq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjqj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm5c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kl84") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhf28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiasm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohxe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2eiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfi2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el1y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyp0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdlg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsxym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwcs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmx0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em1qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmki2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xr6n") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_orias.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_orias.tres new file mode 100644 index 0000000..b2ebfd2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_orias.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://d3onyk8qiklh7"] + +[ext_resource type="Texture2D" uid="uid://dvpm48ltmn5br" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png" id="1_qetuc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_alvcr"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie6cv"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2plp"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u57hi"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvx7q"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilxar"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j87sk"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot8vm"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xfvk"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8fu7"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxlyc"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfndl"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4eg7"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r8su"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnths"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8r0n"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la5s1"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3jev"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia2w5"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtn21"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjv0s"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihtr4"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7vtl"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a6l4"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgysw"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d717"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf12q"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqccd"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhicg"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq4yq"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h67rk"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxa2k"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3uqh"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skcrk"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in83o"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xskyu"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgxth"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bic20"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl4td"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62qwt"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am0fs"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kdmo"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnwhu"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkpcp"] +atlas = ExtResource("1_qetuc") +region = Rect2(162, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr3na"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouddn"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knd8s"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lls32"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47sgr"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88qp0"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nogcd"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp8rd"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncf80"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p23ua"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31h1b"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luiun"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8286"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjqj2"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw3t1"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q06j4"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjonl"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xqkp"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usqcb"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shomo"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d53hc"] +atlas = ExtResource("1_qetuc") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sown7"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8654y"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2c6h"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eejkf"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8qyg"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff1m8"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmnqk"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7e8w"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iski"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t4c5"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppvjo"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olrpn"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvx2b"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2ak1"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afbao"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgtyk"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_podio"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ki70"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejp0x"] +atlas = ExtResource("1_qetuc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_alvcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie6cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2plp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u57hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvx7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilxar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j87sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot8vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xfvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8fu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxlyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfndl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4eg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r8su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnths") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8r0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la5s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3jev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia2w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtn21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjv0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihtr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7vtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a6l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgysw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d717") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf12q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqccd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhicg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq4yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h67rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxa2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3uqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skcrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in83o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xskyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgxth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bic20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl4td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62qwt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_am0fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kdmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnwhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkpcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr3na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouddn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knd8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lls32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47sgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88qp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nogcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp8rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncf80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p23ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31h1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luiun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8286") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjqj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw3t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q06j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjonl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xqkp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_usqcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shomo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d53hc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sown7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8654y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2c6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eejkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8qyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff1m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmnqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7e8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iski") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t4c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppvjo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_olrpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvx2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2ak1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afbao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgtyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_podio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ki70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejp0x") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_oriasidol.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_oriasidol.tres new file mode 100644 index 0000000..fd6cfd2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_oriasidol.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://bipacsf7jbwxi"] + +[ext_resource type="Texture2D" uid="uid://boofxxcb6q72f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png" id="1_hk1m4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytl5r"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihbv6"] +atlas = ExtResource("1_hk1m4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pahtv"] +atlas = ExtResource("1_hk1m4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgt5d"] +atlas = ExtResource("1_hk1m4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2fro"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj106"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk0yd"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2sm1"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4abql"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmg2v"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn6c6"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jb7y"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m34jf"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_045c7"] +atlas = ExtResource("1_hk1m4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4kkg"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub433"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st1tm"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hixm8"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk007"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq5j8"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hye2s"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b400e"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cslfa"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd2a4"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_507qg"] +atlas = ExtResource("1_hk1m4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2svh"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i5y4"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32u06"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x5a2"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acvqe"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jf2i"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkrtl"] +atlas = ExtResource("1_hk1m4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olfsx"] +atlas = ExtResource("1_hk1m4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh2yc"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntn7a"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts5to"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01tuw"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmvku"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37lb5"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfphj"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ocio"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bf3e"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_decoh"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hp1s"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcw8o"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hspv"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1wa5"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3vt7"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4djy1"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnceh"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy5mu"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueyht"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtu68"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50gmd"] +atlas = ExtResource("1_hk1m4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc3o8"] +atlas = ExtResource("1_hk1m4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijj3y"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu7dj"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klsgx"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eqnd"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q86i"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxqux"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfb6w"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odj8j"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nopc8"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrb8a"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdetx"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lejww"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y720"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4x1a"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x2ep"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4t8o"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiq1m"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmtcg"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3gxm"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12wad"] +atlas = ExtResource("1_hk1m4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytl5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihbv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pahtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgt5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2fro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj106") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk0yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2sm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4abql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmg2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn6c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jb7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m34jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_045c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4kkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub433") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st1tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hixm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk007") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq5j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hye2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b400e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cslfa") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd2a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_507qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2svh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i5y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32u06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x5a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acvqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jf2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkrtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olfsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh2yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntn7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts5to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01tuw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmvku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37lb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfphj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ocio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bf3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_decoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hp1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcw8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hspv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1wa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3vt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4djy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnceh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy5mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueyht") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtu68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50gmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc3o8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijj3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu7dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klsgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eqnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q86i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxqux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfb6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odj8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nopc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrb8a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdetx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lejww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y720") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4x1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x2ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4t8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiq1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmtcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3gxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12wad") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_paragon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_paragon.tres new file mode 100644 index 0000000..b7179b4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_paragon.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://bda05n3eqbuyv"] + +[ext_resource type="Texture2D" uid="uid://csr5gixj51g36" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png" id="1_l0ev3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w07nu"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y5v3"] +atlas = ExtResource("1_l0ev3") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgx2d"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h670n"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6xho"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7gxg"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrp0m"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obkbn"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmexu"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25wm6"] +atlas = ExtResource("1_l0ev3") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfqq8"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36ycy"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rr5b"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sq8m"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_778xe"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vix6"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjsep"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0h1b"] +atlas = ExtResource("1_l0ev3") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be4rt"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbi0q"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42q7a"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c12th"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m26p8"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jqrm"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5cet"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q58pk"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1fx0"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twfnt"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fubih"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1ens"] +atlas = ExtResource("1_l0ev3") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkmrm"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noxvi"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs5c6"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b28fq"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7bls"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y5ee"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkg6c"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egh6g"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v12p1"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doxtf"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlwrj"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgl6l"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kajpx"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dblgp"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1peqg"] +atlas = ExtResource("1_l0ev3") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0ivs"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c45e"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga74u"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ga8"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1vkh"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhqh4"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnyfm"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3owr"] +atlas = ExtResource("1_l0ev3") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi1tk"] +atlas = ExtResource("1_l0ev3") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31kt3"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_god85"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wktpv"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohx8o"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_givhb"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06jsm"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1joa"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kbnc"] +atlas = ExtResource("1_l0ev3") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oq2p"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sei4o"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evj1e"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tom8f"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfrc"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42cbg"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m6sd"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk3r1"] +atlas = ExtResource("1_l0ev3") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv42p"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fe3h"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beqp1"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wthj"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s56jv"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jtgc"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itmml"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp3tr"] +atlas = ExtResource("1_l0ev3") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w07nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y5v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgx2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h670n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6xho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7gxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrp0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obkbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmexu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25wm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfqq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36ycy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rr5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sq8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_778xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vix6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjsep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0h1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be4rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbi0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42q7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c12th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m26p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jqrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5cet") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q58pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1fx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twfnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fubih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1ens") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkmrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noxvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs5c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b28fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7bls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y5ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkg6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egh6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v12p1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_doxtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlwrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgl6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kajpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dblgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1peqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0ivs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c45e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga74u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ga8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1vkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhqh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnyfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3owr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi1tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31kt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_god85") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wktpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohx8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_givhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06jsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1joa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kbnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oq2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sei4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evj1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tom8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42cbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m6sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk3r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv42p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fe3h") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_beqp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wthj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s56jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jtgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itmml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp3tr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_protector.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_protector.tres new file mode 100644 index 0000000..f82995c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_protector.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://1045ks1rrije"] + +[ext_resource type="Texture2D" uid="uid://desf7pkts4lgj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png" id="1_1kd4v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi541"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne2iw"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h3q6"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkoys"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjefl"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjcaj"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml0eg"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ahmv"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnr57"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq2em"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1oa1"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0ck5"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jua4l"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj0hu"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncfjx"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qdgv"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlg6n"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfodl"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5r5y"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vphqu"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vic1o"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxbg4"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t5dd"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxfld"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtt5d"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiu4i"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvhuw"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eetga"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdsky"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0jjo"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntxbv"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxm7e"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y13ls"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30nn2"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p2lo"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkwrr"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvodu"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6o73"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfujr"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qpt5"] +atlas = ExtResource("1_1kd4v") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obs37"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4la1a"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkwut"] +atlas = ExtResource("1_1kd4v") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7oux"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqowl"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e48pg"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58qxs"] +atlas = ExtResource("1_1kd4v") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeyfi"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1nnc"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnlpn"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uqls"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81i4r"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ttxi"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dho5l"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtjpi"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aag3"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3md6"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4je8"] +atlas = ExtResource("1_1kd4v") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2cth"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om6ec"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpfkg"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd5l3"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i78es"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh8bf"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxrl4"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1uug"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmxmo"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ut4c"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5jiq"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fimft"] +atlas = ExtResource("1_1kd4v") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi541") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne2iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h3q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkoys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjefl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjcaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml0eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ahmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnr57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq2em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1oa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0ck5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jua4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj0hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncfjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qdgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlg6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfodl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5r5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vphqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vic1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxbg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t5dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxfld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtt5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiu4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvhuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eetga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdsky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0jjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntxbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxm7e") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y13ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30nn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p2lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkwrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvodu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6o73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfujr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qpt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obs37") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4la1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkwut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7oux") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqowl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e48pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58qxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeyfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1nnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnlpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uqls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81i4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ttxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dho5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtjpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aag3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3md6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4je8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2cth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om6ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpfkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd5l3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i78es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh8bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxrl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1uug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmxmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ut4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5jiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fimft") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_sandpanther.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_sandpanther.tres new file mode 100644 index 0000000..4b66784 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_sandpanther.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://bwyhvqp8bphxj"] + +[ext_resource type="Texture2D" uid="uid://b3rxkfjfyird7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png" id="1_p7qaj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f561v"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slnu4"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kgy6"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3exli"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpqg0"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fewd"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quhc8"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmqbq"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwfkv"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft073"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gqxu"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua234"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiqw3"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edb07"] +atlas = ExtResource("1_p7qaj") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvaer"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb0we"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pp3g"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe2ss"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xxgi"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3ar4"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_833o4"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vb1y"] +atlas = ExtResource("1_p7qaj") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlr5o"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvinl"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td5os"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_125ie"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nqk0"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7125p"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q4cy"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smirw"] +atlas = ExtResource("1_p7qaj") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g0hm"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnk3n"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rv58"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhiee"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h8od"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp0xq"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eci47"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbrr5"] +atlas = ExtResource("1_p7qaj") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up7hc"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhhrt"] +atlas = ExtResource("1_p7qaj") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy5e1"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmdru"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoeg5"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymafi"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bs8x"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14ver"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hlg8"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24i5b"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3tq0"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn7sq"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hldo"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg5hn"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q02n"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdow8"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnrn2"] +atlas = ExtResource("1_p7qaj") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdp48"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opxb7"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioxor"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an0rt"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mpw6"] +atlas = ExtResource("1_p7qaj") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2hw3"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln8ey"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1dtp"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3xvv"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnyon"] +atlas = ExtResource("1_p7qaj") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0rpd"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4wuk"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2fgw"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2tib"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2024x"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhc8o"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t7vy"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5uaw"] +atlas = ExtResource("1_p7qaj") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idpp7"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06ud6"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b4qh"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vqyt"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h36s"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_calrv"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktagf"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n7vh"] +atlas = ExtResource("1_p7qaj") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f561v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slnu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kgy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3exli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpqg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fewd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quhc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmqbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwfkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft073") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gqxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua234") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiqw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edb07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvaer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb0we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pp3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe2ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xxgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3ar4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_833o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vb1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlr5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvinl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td5os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_125ie") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nqk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7125p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q4cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smirw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g0hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnk3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rv58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhiee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h8od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp0xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eci47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbrr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up7hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhhrt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy5e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmdru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoeg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymafi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bs8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14ver") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hlg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24i5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3tq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn7sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hldo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg5hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q02n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdow8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnrn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdp48") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opxb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioxor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an0rt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mpw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2hw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln8ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1dtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3xvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnyon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0rpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4wuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2fgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2tib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2024x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhc8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t7vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5uaw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_idpp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06ud6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b4qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vqyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h36s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_calrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktagf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n7vh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_serpenti.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_serpenti.tres new file mode 100644 index 0000000..4093e9b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_serpenti.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://ciksh8mgw3a2i"] + +[ext_resource type="Texture2D" uid="uid://bqq2jm77oq3gn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png" id="1_0gq07"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_24k0o"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gy7a"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da7nw"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1chq1"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyjw2"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1ap3"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebcln"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6xwq"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu0xr"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdan5"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30cfw"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5ywd"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf85l"] +atlas = ExtResource("1_0gq07") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlhkr"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we40w"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3r2t"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m27go"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghitp"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stdxr"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ietyg"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a3x8"] +atlas = ExtResource("1_0gq07") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufk7r"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwp1m"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kc7j"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhh6c"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb272"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibwdl"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0cm2"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dssv"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v5o7"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_envx4"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8y2b"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xplf"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2pd2"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekq1f"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e6kq"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br18v"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58n44"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hyv3"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vclm"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxo55"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkrl0"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgq8u"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8apk"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub6sy"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojlve"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddbj0"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kcd0"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0pyp"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoevc"] +atlas = ExtResource("1_0gq07") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0mho"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s5hm"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyid7"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6udgr"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu61u"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oek6p"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61i7o"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hve7g"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxmbc"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjy64"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frf3p"] +atlas = ExtResource("1_0gq07") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x3d7"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mplr"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yra6k"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqrxh"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny06a"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv2mu"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pfqi"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh3bo"] +atlas = ExtResource("1_0gq07") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1050n"] +atlas = ExtResource("1_0gq07") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2rpr"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74v8e"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdpda"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78d55"] +atlas = ExtResource("1_0gq07") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yioyj"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oiwk"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4g8v"] +atlas = ExtResource("1_0gq07") +region = Rect2(726, 605, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24k0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gy7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da7nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1chq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyjw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1ap3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebcln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6xwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu0xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdan5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30cfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5ywd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf85l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlhkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we40w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3r2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m27go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghitp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stdxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ietyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a3x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufk7r") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwp1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kc7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhh6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb272") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibwdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0cm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dssv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v5o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_envx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8y2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xplf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2pd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekq1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e6kq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_br18v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58n44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hyv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vclm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxo55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkrl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgq8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8apk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub6sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojlve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddbj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kcd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0pyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoevc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0mho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s5hm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyid7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6udgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu61u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oek6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61i7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hve7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxmbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjy64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frf3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x3d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mplr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yra6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqrxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny06a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv2mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pfqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh3bo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1050n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2rpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74v8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdpda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78d55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yioyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oiwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4g8v") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shadowlord.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shadowlord.tres new file mode 100644 index 0000000..52f3821 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shadowlord.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://dn645t24xpuhj"] + +[ext_resource type="Texture2D" uid="uid://drh62b2uohvo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png" id="1_3yyrl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gku0k"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8d5g"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_momop"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhxcu"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aumt3"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgudr"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn45b"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_100u7"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xovgw"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6qra"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rh6k"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0byu8"] +atlas = ExtResource("1_3yyrl") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktx4t"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gn4r"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rpsw"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mhog"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy4cv"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k2ns"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uomh6"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofbgs"] +atlas = ExtResource("1_3yyrl") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0dcx"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hawb4"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y083i"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0cys"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wjhd"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvaxu"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8vte"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21yse"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovy1a"] +atlas = ExtResource("1_3yyrl") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sba15"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srqy1"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5agu4"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hmwl"] +atlas = ExtResource("1_3yyrl") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li1ny"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db3ub"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayvas"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs45c"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuvs7"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkl8b"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7cqs"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqbhw"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px103"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x54od"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oda34"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su4fv"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnwsx"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx573"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw336"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuik8"] +atlas = ExtResource("1_3yyrl") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhwuw"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5hjt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5iqd"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11wub"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwtvx"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rblcw"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gpen"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qduet"] +atlas = ExtResource("1_3yyrl") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fbjt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idsnt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0brwe"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiq2g"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wcej"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc86l"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q13m1"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a5g2"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw3y6"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua6tt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r6g3"] +atlas = ExtResource("1_3yyrl") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8snh1"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m2jt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt238"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvu2n"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_335q8"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74155"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywypk"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2efuv"] +atlas = ExtResource("1_3yyrl") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s56l0"] +atlas = ExtResource("1_3yyrl") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nomkp"] +atlas = ExtResource("1_3yyrl") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twmn"] +atlas = ExtResource("1_3yyrl") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24s66"] +atlas = ExtResource("1_3yyrl") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03wst"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmjyt"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqxy0"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_behxp"] +atlas = ExtResource("1_3yyrl") +region = Rect2(968, 484, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gku0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8d5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_momop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhxcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aumt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgudr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn45b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_100u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xovgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6qra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rh6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0byu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktx4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gn4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rpsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mhog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy4cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k2ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uomh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofbgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0dcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hawb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y083i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0cys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wjhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvaxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8vte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21yse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovy1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sba15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srqy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5agu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hmwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li1ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db3ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayvas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs45c") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuvs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkl8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7cqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqbhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px103") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x54od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oda34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su4fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnwsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx573") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw336") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuik8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhwuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5hjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5iqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11wub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwtvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rblcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gpen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qduet") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fbjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idsnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0brwe") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiq2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wcej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc86l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q13m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a5g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw3y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua6tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r6g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8snh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m2jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt238") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvu2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_335q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74155") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywypk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2efuv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s56l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nomkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24s66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03wst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmjyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqxy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_behxp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shinkagezendo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shinkagezendo.tres new file mode 100644 index 0000000..3b5d806 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_shinkagezendo.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://dwne7hn6ues1n"] + +[ext_resource type="Texture2D" uid="uid://clkh5u0dmeya0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png" id="1_im4gs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgkux"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axkgr"] +atlas = ExtResource("1_im4gs") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ook"] +atlas = ExtResource("1_im4gs") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ff2f"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v07g6"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qha1"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s55yq"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8hrs"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx52f"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fnb5"] +atlas = ExtResource("1_im4gs") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ay6v"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjvq8"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qome"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqrsa"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaoio"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4wxn"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsyuj"] +atlas = ExtResource("1_im4gs") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwgwq"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opss8"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgsjy"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktfgx"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fampr"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2aso"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipoku"] +atlas = ExtResource("1_im4gs") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uk1i"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8umpe"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryqlv"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pw44"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pncgl"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5ck0"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc6xj"] +atlas = ExtResource("1_im4gs") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta2br"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nal2h"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq8r4"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2fxb"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kgoe"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bish0"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egaxh"] +atlas = ExtResource("1_im4gs") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82pom"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmkcp"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meolh"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_booy1"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu5it"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wub6o"] +atlas = ExtResource("1_im4gs") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8065"] +atlas = ExtResource("1_im4gs") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kppm8"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rlmh"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_833eo"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leo60"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua81e"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmtu2"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1brt6"] +atlas = ExtResource("1_im4gs") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2bd1"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr2mj"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8epnf"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmns5"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrqms"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6r6a"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo8lw"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0amas"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6fcc"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wo6c"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58rb4"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_864tp"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0kx2"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfrj4"] +atlas = ExtResource("1_im4gs") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hft3r"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gvd3"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6spj"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75j60"] +atlas = ExtResource("1_im4gs") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqecl"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpldm"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2owk7"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d1pf"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kky4"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi0cv"] +atlas = ExtResource("1_im4gs") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sadht"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hytfi"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu170"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie47i"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noblm"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpr1k"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q843"] +atlas = ExtResource("1_im4gs") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eh7i"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6le8"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ilbi"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_238kk"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etcp3"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3d2r"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inebp"] +atlas = ExtResource("1_im4gs") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgkux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axkgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ook") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ff2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v07g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qha1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s55yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8hrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx52f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fnb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ay6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjvq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qome") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqrsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaoio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4wxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsyuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwgwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opss8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgsjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktfgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fampr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2aso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipoku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uk1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8umpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryqlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pw44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pncgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5ck0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc6xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta2br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nal2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq8r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2fxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kgoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bish0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egaxh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_82pom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmkcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meolh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_booy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu5it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wub6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8065") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kppm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rlmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_833eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leo60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua81e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmtu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1brt6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2bd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr2mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8epnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmns5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrqms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6r6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo8lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0amas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6fcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wo6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58rb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_864tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0kx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfrj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hft3r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gvd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6spj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75j60") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqecl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpldm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2owk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d1pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kky4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi0cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sadht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hytfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu170") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie47i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noblm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpr1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q843") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eh7i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6le8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ilbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_238kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etcp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3d2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inebp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skurge.tres new file mode 100644 index 0000000..bdbc23f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skurge.tres @@ -0,0 +1,482 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://den5ja0mr2fev"] + +[ext_resource type="Texture2D" uid="uid://bi72hbhb8tqdn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png" id="1_bxn5t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hewxy"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qtll"] +atlas = ExtResource("1_bxn5t") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50iuj"] +atlas = ExtResource("1_bxn5t") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osqbn"] +atlas = ExtResource("1_bxn5t") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjc1a"] +atlas = ExtResource("1_bxn5t") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vue6h"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d00wd"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eujgk"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj764"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_124yw"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkgog"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmqvj"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyvtq"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx85e"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k14bc"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq6vh"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy6bt"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb1xt"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub0ns"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shjas"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pok0o"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qofpm"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pel85"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e7u0"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqh05"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0miuh"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leqdk"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n5tu"] +atlas = ExtResource("1_bxn5t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb5u3"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwl0j"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8uxv"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebw8d"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16bkl"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrs43"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulcjx"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apf3a"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdytj"] +atlas = ExtResource("1_bxn5t") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msnuk"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gctre"] +atlas = ExtResource("1_bxn5t") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fsim"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anmjc"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks258"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88mn3"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj307"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy5jn"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6gwg"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6evx"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnist"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kc4d"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0if3"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl4rh"] +atlas = ExtResource("1_bxn5t") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8058"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arjee"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv5wt"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3uge"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5v3h"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0544"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5exhq"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjusn"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3ssd"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be7ff"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5go5q"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1ifa"] +atlas = ExtResource("1_bxn5t") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hewxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qtll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50iuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osqbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjc1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vue6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d00wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eujgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj764") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_124yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkgog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmqvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyvtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx85e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k14bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq6vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy6bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb1xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub0ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shjas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pok0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qofpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pel85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e7u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqh05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0miuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n5tu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb5u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwl0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8uxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebw8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16bkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrs43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulcjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apf3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdytj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_msnuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gctre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fsim") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_anmjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks258") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88mn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj307") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy5jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6gwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6evx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnist") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kc4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0if3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl4rh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8058") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arjee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv5wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3uge") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5v3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0544") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5exhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjusn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3ssd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be7ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5go5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1ifa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skyfalltyrant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skyfalltyrant.tres new file mode 100644 index 0000000..c97c25c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_skyfalltyrant.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://dbp88nvd0qlmm"] + +[ext_resource type="Texture2D" uid="uid://cgav4088ba6cq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png" id="1_iforj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_imj8r"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccsct"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb86r"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xfg1"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shvmo"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpmgj"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qenox"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elroh"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k3nr"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lhi5"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87pnb"] +atlas = ExtResource("1_iforj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juhur"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vayb6"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq0wb"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiepi"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wsaa"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sk54"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88pvd"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ka1r"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gxg0"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su3mc"] +atlas = ExtResource("1_iforj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b1el"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsj1c"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45kyh"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p76n3"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3be4"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c03n7"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktiq"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uohm0"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xki8l"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihuks"] +atlas = ExtResource("1_iforj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4vn1"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so5e3"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ig2c"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0d64"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ei8t"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o5ry"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7878"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb38u"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asy58"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8ora"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8rj2"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nf7f"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn3ga"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jocy1"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkkau"] +atlas = ExtResource("1_iforj") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcmfp"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77i0w"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbupa"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w4d6"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr4dd"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85l1d"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roy5m"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvel"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k4jg"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwjaj"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7git"] +atlas = ExtResource("1_iforj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gy0g"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goe0w"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8j6i"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7amhs"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymu1o"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sp70"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1x1j"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mri6p"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb3gy"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxrxd"] +atlas = ExtResource("1_iforj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkwta"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0pad"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg4xc"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhcqn"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm3w7"] +atlas = ExtResource("1_iforj") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltoi8"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as65l"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j12jd"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11py1"] +atlas = ExtResource("1_iforj") +region = Rect2(303, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_imj8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccsct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb86r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xfg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shvmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpmgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qenox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elroh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k3nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lhi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87pnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juhur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vayb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq0wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiepi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wsaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sk54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88pvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ka1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gxg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su3mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b1el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsj1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45kyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p76n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3be4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c03n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ktiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uohm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xki8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihuks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4vn1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so5e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ig2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0d64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ei8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o5ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb38u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asy58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8ora") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8rj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nf7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn3ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jocy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkkau") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcmfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77i0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbupa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w4d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr4dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85l1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roy5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k4jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwjaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7git") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gy0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goe0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8j6i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7amhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymu1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sp70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1x1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mri6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxrxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkwta") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0pad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg4xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhcqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm3w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltoi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as65l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j12jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11py1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_solfist.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_solfist.tres new file mode 100644 index 0000000..c7d5f06 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_solfist.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://b03nsfi06i25u"] + +[ext_resource type="Texture2D" uid="uid://b1a3ybueeo2l8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png" id="1_qmvh7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv34p"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1ogl"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db2gi"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxpqj"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7u23"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3akhk"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ikbf"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw2j1"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8xjq"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gwr4"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hotd5"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8lvh"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg51l"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7dfa"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poqhe"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pueyb"] +atlas = ExtResource("1_qmvh7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxxx0"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgiso"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydkxb"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m7kt"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2x0i"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7h1c"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u6nv"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b40q7"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20lkb"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yie6u"] +atlas = ExtResource("1_qmvh7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8bh1"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42024"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf2pr"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nntad"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms5y3"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx1pl"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbs23"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjl2h"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fhl0"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxkdl"] +atlas = ExtResource("1_qmvh7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16ovw"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41eax"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_677id"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hw2a"] +atlas = ExtResource("1_qmvh7") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psupx"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a7ce"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wbw7"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyum5"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78ls5"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40ibt"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slgnp"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kobmi"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slkxf"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgswi"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfbnm"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q25tk"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn0jm"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e17ju"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npj1g"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7x60"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8td0"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owh4t"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiibn"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndmaf"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl6as"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8wmn"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6w3e"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjwqu"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrcmw"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j65b"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wr5n"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cesy"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc04c"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u4aj"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtyob"] +atlas = ExtResource("1_qmvh7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swbd5"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc6pu"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mer0r"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppwmw"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sorc"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8mnd"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyjfq"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8dba"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdjws"] +atlas = ExtResource("1_qmvh7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrntt"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlbrk"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp0e0"] +atlas = ExtResource("1_qmvh7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpugh"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l4gc"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n36jl"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2yr7"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2yce"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qknam"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frf51"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysrb3"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pss8e"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1v8c"] +atlas = ExtResource("1_qmvh7") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oymgj"] +atlas = ExtResource("1_qmvh7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsub0"] +atlas = ExtResource("1_qmvh7") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xib5"] +atlas = ExtResource("1_qmvh7") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pk0v"] +atlas = ExtResource("1_qmvh7") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl8ol"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yj8i"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq028"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieiq4"] +atlas = ExtResource("1_qmvh7") +region = Rect2(808, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv34p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1ogl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db2gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxpqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7u23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3akhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ikbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw2j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8xjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gwr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hotd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8lvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg51l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7dfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poqhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pueyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxxx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgiso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydkxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m7kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2x0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7h1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u6nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b40q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20lkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yie6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8bh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42024") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf2pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nntad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms5y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx1pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbs23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjl2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fhl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxkdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16ovw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41eax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_677id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hw2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psupx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a7ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wbw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyum5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78ls5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40ibt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slgnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kobmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slkxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgswi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfbnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q25tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn0jm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e17ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npj1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7x60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8td0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owh4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiibn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndmaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl6as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8wmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6w3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjwqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrcmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j65b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wr5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cesy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc04c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u4aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtyob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swbd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc6pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mer0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppwmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sorc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8mnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyjfq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8dba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdjws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrntt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlbrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp0e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpugh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l4gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n36jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2yr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2yce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qknam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frf51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysrb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pss8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1v8c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oymgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsub0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xib5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pk0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl8ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yj8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq028") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieiq4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_soulstealer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_soulstealer.tres new file mode 100644 index 0000000..6e06b54 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_soulstealer.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://dkuf0pl5aukt4"] + +[ext_resource type="Texture2D" uid="uid://6ntq1h7gcrqc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png" id="1_k7voq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ortn"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye5im"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8jj4"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4yvl"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5o0o"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ccrk"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bemb1"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enbqk"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_120aq"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_booy0"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy4w5"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve47s"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5efr5"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwmu7"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as47t"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_figph"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl50t"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea8ui"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiba2"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql3f5"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x0p4"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxsav"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1glj"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuo3y"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5a82"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2dme"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoojt"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp1un"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3pj7"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6nuq"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61oad"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3f8x"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o5t2"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhrwb"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxplx"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwwtv"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyimj"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05xij"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51ekl"] +atlas = ExtResource("1_k7voq") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r33a"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ljpn"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx18w"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuc30"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbul6"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kl1a"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g5a5"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isxy1"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3xn8"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftas4"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y43ab"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk8nk"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0ucv"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2llbx"] +atlas = ExtResource("1_k7voq") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igp58"] +atlas = ExtResource("1_k7voq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjo3r"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvxqm"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reiax"] +atlas = ExtResource("1_k7voq") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ugr"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tikmy"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5o8j"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci2ds"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u1gi"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgrbv"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cd5h"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo0a7"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm20b"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiiv6"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7irju"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye8ng"] +atlas = ExtResource("1_k7voq") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ortn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye5im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8jj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4yvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5o0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ccrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bemb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enbqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_120aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_booy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy4w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve47s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5efr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwmu7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_as47t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_figph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl50t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea8ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiba2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql3f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x0p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxsav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1glj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuo3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5a82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2dme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoojt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp1un") +}], +"loop": true, +"name": &"breath", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3pj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6nuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61oad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3f8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o5t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhrwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxplx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwwtv") +}], +"loop": true, +"name": &"crawl", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyimj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05xij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51ekl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r33a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ljpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx18w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuc30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbul6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kl1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g5a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isxy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3xn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftas4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y43ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk8nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0ucv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2llbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igp58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjo3r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvxqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reiax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ugr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tikmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5o8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci2ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u1gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgrbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cd5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo0a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm20b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiiv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7irju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye8ng") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_spelleater.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_spelleater.tres new file mode 100644 index 0000000..9dd3990 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_spelleater.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://xrxfqscriwpp"] + +[ext_resource type="Texture2D" uid="uid://dia6qi06fbska" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png" id="1_1wd0c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x4vj"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8oov"] +atlas = ExtResource("1_1wd0c") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hkci"] +atlas = ExtResource("1_1wd0c") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y3ct"] +atlas = ExtResource("1_1wd0c") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfcui"] +atlas = ExtResource("1_1wd0c") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usy3q"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejw4f"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnmd5"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui25g"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kdws"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afyuf"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0jnw"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msgru"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjhjl"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd5m1"] +atlas = ExtResource("1_1wd0c") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ryxd"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xdud"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so2gu"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8txn"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltq3b"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en6qx"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6k2b"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsp13"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufloq"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiuit"] +atlas = ExtResource("1_1wd0c") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ff77"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l18f"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msi3j"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0i7o"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qewwl"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vyod"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd8xg"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o522u"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxetx"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itqxw"] +atlas = ExtResource("1_1wd0c") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb87l"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evdgi"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar4qb"] +atlas = ExtResource("1_1wd0c") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1gxp"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntcm1"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vrfo"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eswab"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0vaj"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxnha"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfuh6"] +atlas = ExtResource("1_1wd0c") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55p7h"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4g24"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03xoa"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxvhy"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plsbm"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq5e3"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1kjo"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acbcv"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gux45"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n5ds"] +atlas = ExtResource("1_1wd0c") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7afbm"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lux5a"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3inw"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvyby"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cej46"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0mw3"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymu0g"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03tbq"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlvbb"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1esxl"] +atlas = ExtResource("1_1wd0c") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg2q1"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bflvw"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu3pi"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvn3r"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pflo3"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83yeq"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruqsu"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxcc6"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t0uk"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxb68"] +atlas = ExtResource("1_1wd0c") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x4vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8oov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hkci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y3ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfcui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usy3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejw4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnmd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui25g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kdws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afyuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0jnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msgru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjhjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd5m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ryxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xdud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so2gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8txn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltq3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en6qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6k2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsp13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufloq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiuit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ff77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l18f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msi3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0i7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qewwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vyod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd8xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o522u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxetx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itqxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb87l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evdgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar4qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1gxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntcm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vrfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eswab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0vaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxnha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfuh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55p7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4g24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03xoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxvhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plsbm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq5e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1kjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acbcv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gux45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n5ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7afbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lux5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3inw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvyby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cej46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0mw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymu0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03tbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlvbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1esxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg2q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bflvw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu3pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvn3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pflo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83yeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruqsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxcc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t0uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxb68") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_taskmaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_taskmaster.tres new file mode 100644 index 0000000..2079133 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_taskmaster.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://dpjhts6mmi5gl"] + +[ext_resource type="Texture2D" uid="uid://dnxxcat3jikpe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png" id="1_6duvb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q77cv"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwl7x"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb1d6"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpl4p"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xf4e"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueyn8"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbjt7"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycs26"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soeq0"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oj1v"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv4ln"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_let7g"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt670"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqjqc"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcrdg"] +atlas = ExtResource("1_6duvb") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3j0a"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p6g8"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oxvu"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2cn5"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vd2b"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa2jx"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv0pw"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kfyi"] +atlas = ExtResource("1_6duvb") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kmkl"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p72ye"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g5uo"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jabx"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypgay"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86v62"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmx8c"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sipi4"] +atlas = ExtResource("1_6duvb") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i72ju"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh36a"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v82wt"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0c63"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57w8n"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4325e"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq4ys"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ihkw"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8krl5"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7u2x"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_110kn"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gnc7"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euqf0"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhog2"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_605nw"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyyru"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15l17"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4synn"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipie4"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrluk"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cjec"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfthe"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7g83"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxip2"] +atlas = ExtResource("1_6duvb") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8nu1"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eltbj"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48584"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6sdm"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbmgm"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbnx3"] +atlas = ExtResource("1_6duvb") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pt6i"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srop4"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbce0"] +atlas = ExtResource("1_6duvb") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28s2d"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3wuv"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s11v8"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8qph"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhqs5"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsyf4"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_481uu"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_526ai"] +atlas = ExtResource("1_6duvb") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mxrx"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4g6b"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilcrx"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjjm4"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nykho"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unyh7"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o55yt"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r7iw"] +atlas = ExtResource("1_6duvb") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdkcc"] +atlas = ExtResource("1_6duvb") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx07h"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i13fw"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8qcy"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v388s"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtk86"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1hil"] +atlas = ExtResource("1_6duvb") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqkkn"] +atlas = ExtResource("1_6duvb") +region = Rect2(1089, 847, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q77cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwl7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb1d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpl4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xf4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueyn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbjt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycs26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soeq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oj1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv4ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_let7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt670") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqjqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcrdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3j0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p6g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oxvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2cn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vd2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa2jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv0pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kfyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kmkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p72ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g5uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jabx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypgay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86v62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmx8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sipi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i72ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh36a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v82wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0c63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57w8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4325e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq4ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ihkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8krl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7u2x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_110kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gnc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euqf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhog2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_605nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyyru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15l17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4synn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipie4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrluk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cjec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfthe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7g83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxip2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8nu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eltbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48584") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6sdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbmgm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbnx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pt6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srop4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbce0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28s2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3wuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s11v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8qph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhqs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsyf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_481uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_526ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mxrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4g6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilcrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjjm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nykho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unyh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o55yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r7iw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdkcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx07h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i13fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8qcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v388s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtk86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1hil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqkkn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdemon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdemon.tres new file mode 100644 index 0000000..c2401f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdemon.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://wrp414q5gptr"] + +[ext_resource type="Texture2D" uid="uid://cmu56giarybqq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png" id="1_2kijs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie52l"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3wuj"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x22s"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upc6p"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjxto"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma4qd"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kixj2"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf6en"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wvor"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlvw7"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sow3o"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncsah"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n1sq"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k58f1"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5w3e"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs40t"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2sk3"] +atlas = ExtResource("1_2kijs") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5so8"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nggy"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef51f"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a41bt"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arj1e"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq7h2"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsah8"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55je7"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycs0q"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k02j"] +atlas = ExtResource("1_2kijs") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpaqp"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uk30"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyxqw"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5upo"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe2xl"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by2sv"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1d5x"] +atlas = ExtResource("1_2kijs") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmvun"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5fk0"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3qkc"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c06k"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vajrt"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bct5w"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4850"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf11d"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1g7f"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37pen"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy0sy"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we2en"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u20i"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ke64"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6tgm"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f16dg"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36emo"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4xxs"] +atlas = ExtResource("1_2kijs") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w18ig"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8n3p"] +atlas = ExtResource("1_2kijs") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj4o2"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8tsi"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g6k4"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dscxx"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe1ij"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ifhn"] +atlas = ExtResource("1_2kijs") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdfqv"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsvfn"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuth1"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tr48"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjvaf"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csnj8"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t8b6"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khyut"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hi2s"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn475"] +atlas = ExtResource("1_2kijs") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie52l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3wuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x22s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upc6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjxto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma4qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kixj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf6en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wvor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlvw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sow3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncsah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n1sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k58f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5w3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs40t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2sk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5so8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nggy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef51f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a41bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arj1e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq7h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsah8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55je7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycs0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k02j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpaqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uk30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyxqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5upo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe2xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by2sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1d5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmvun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5fk0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3qkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c06k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vajrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bct5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4850") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf11d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1g7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37pen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy0sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we2en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u20i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ke64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6tgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f16dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36emo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4xxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w18ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8n3p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj4o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8tsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g6k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dscxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe1ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ifhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdfqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsvfn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuth1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tr48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjvaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csnj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t8b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khyut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hi2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn475") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdrake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdrake.tres new file mode 100644 index 0000000..ac04afd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatdrake.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://cq6u45ec15abo"] + +[ext_resource type="Texture2D" uid="uid://k002kb2ukdkc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png" id="1_pqq72"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe1um"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4plk"] +atlas = ExtResource("1_pqq72") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46bkf"] +atlas = ExtResource("1_pqq72") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oei4f"] +atlas = ExtResource("1_pqq72") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnmhh"] +atlas = ExtResource("1_pqq72") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87p3e"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p285k"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlh8v"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cfg2"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo7fr"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1k7r"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alpc0"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qai3"] +atlas = ExtResource("1_pqq72") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mvd6"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irmf1"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7jd2"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqlrm"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_462q7"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3evn"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ae2"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aue2v"] +atlas = ExtResource("1_pqq72") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jnts"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwtto"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnf4w"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhpib"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5dot"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qppcp"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tx88"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c2kf"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42uwm"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woteq"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c665i"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7qpu"] +atlas = ExtResource("1_pqq72") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reag7"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwk3m"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_augcf"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_donjh"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11brq"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_161eu"] +atlas = ExtResource("1_pqq72") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1hr"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e01c"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbmpg"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev0bq"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r86d5"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc71a"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mmcc"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjsc2"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r27he"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vgip"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e11fy"] +atlas = ExtResource("1_pqq72") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irs0u"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m84xk"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8340x"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpank"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jvum"] +atlas = ExtResource("1_pqq72") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xplw"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmygi"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhysk"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuyfj"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1pw8"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyfhr"] +atlas = ExtResource("1_pqq72") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji5iv"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yjrg"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3wf0"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whhv2"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc4vx"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unxf3"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv6mp"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj4hi"] +atlas = ExtResource("1_pqq72") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cs0x"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s05i"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xf50"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvtvr"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcu7m"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw2ob"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oca0"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f05t5"] +atlas = ExtResource("1_pqq72") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe1um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4plk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46bkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oei4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnmhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87p3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p285k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlh8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cfg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo7fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1k7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alpc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qai3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mvd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irmf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7jd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqlrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_462q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3evn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ae2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aue2v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jnts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwtto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnf4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhpib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5dot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qppcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tx88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c2kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42uwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woteq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c665i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7qpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reag7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwk3m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_augcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_donjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11brq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_161eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e01c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbmpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev0bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r86d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc71a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mmcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjsc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r27he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vgip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e11fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irs0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m84xk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8340x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpank") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jvum") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xplw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmygi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhysk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuyfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1pw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyfhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji5iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yjrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3wf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whhv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc4vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unxf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv6mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj4hi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cs0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s05i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xf50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvtvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcu7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw2ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oca0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f05t5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatoni.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatoni.tres new file mode 100644 index 0000000..d8d6b5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_treatoni.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://es4a2ptcddil"] + +[ext_resource type="Texture2D" uid="uid://c3wcf7uynyixl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png" id="1_0ax8m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4b23"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_827wv"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yaad"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axgvi"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq24q"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmvbd"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frtsw"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu72j"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76lqp"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx6ot"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p71vf"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg2do"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s6e6"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo8lq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrcrk"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vny7j"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkvu4"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5lrn"] +atlas = ExtResource("1_0ax8m") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umfom"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ef1o"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66u4l"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_froty"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgwry"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a28ik"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea3hq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruvcv"] +atlas = ExtResource("1_0ax8m") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b23oq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yli6"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edsmt"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5kbo"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srsfk"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvk6u"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h7l3"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl0be"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30ntk"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0u40"] +atlas = ExtResource("1_0ax8m") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i47wg"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr4ws"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ofld"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpwla"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ob44"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84t0o"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxtr1"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4bam"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owsjx"] +atlas = ExtResource("1_0ax8m") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k08n"] +atlas = ExtResource("1_0ax8m") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px6r4"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykabu"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1p7q"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgfx6"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51lqy"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwv15"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hffaq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls455"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fr5x"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unxin"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baxvs"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl1hq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kenr4"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8577"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f0sg"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov1t8"] +atlas = ExtResource("1_0ax8m") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2qm0"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmwyr"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trnet"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opes6"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_betta"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgqic"] +atlas = ExtResource("1_0ax8m") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d01ul"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cjrm"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkfga"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kanfq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d372"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ss03"] +atlas = ExtResource("1_0ax8m") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boc08"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xosk"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvp6y"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5lip"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt2uv"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0gh8"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv2o1"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so5cu"] +atlas = ExtResource("1_0ax8m") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs1wl"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hqa5"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud70t"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bhad"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftckr"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40kjo"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7yhg"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv8iq"] +atlas = ExtResource("1_0ax8m") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4b23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_827wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yaad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axgvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq24q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmvbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frtsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu72j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76lqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx6ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p71vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg2do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s6e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo8lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrcrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vny7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkvu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5lrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umfom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ef1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66u4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_froty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgwry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a28ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea3hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruvcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b23oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yli6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edsmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5kbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srsfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvk6u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h7l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl0be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ntk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0u40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i47wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr4ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ofld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpwla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ob44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84t0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxtr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4bam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owsjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k08n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_px6r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykabu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1p7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgfx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51lqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwv15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hffaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls455") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fr5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unxin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baxvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl1hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kenr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8577") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f0sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov1t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2qm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmwyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trnet") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opes6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_betta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgqic") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d01ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cjrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkfga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kanfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d372") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ss03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boc08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xosk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvp6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5lip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt2uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0gh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv2o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so5cu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs1wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hqa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud70t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bhad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftckr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40kjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7yhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv8iq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_umbra.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_umbra.tres new file mode 100644 index 0000000..da820fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_umbra.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://c7kwrxn1ii4u8"] + +[ext_resource type="Texture2D" uid="uid://nhau602dtqux" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png" id="1_bpnk0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5clq"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11uul"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot4uf"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo554"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i6w8"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wl1i"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ytbe"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vciuw"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go3mi"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q327i"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djfgv"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dbtq"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ham"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tqxg"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xae4b"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il8ct"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck01n"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7kuf"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grag2"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0m6m"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3y2r"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhqsr"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsk0s"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb6ks"] +atlas = ExtResource("1_bpnk0") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn3r8"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hc38"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkltn"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7b27"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbhvf"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32jcp"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn4he"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u3hw"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er1un"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btufa"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr2ep"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80mnb"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16s5h"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te7xq"] +atlas = ExtResource("1_bpnk0") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loo05"] +atlas = ExtResource("1_bpnk0") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdksy"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syi74"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y5rj"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjg7b"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww5gu"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddrob"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obn08"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsbte"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eawgo"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbxb6"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyo4a"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyp4m"] +atlas = ExtResource("1_bpnk0") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yoy5"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s88rj"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbxhq"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p88kf"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qrjw"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knmli"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgjwc"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf44l"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j1uu"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgh26"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx8g6"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnxdp"] +atlas = ExtResource("1_bpnk0") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5clq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11uul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot4uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo554") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i6w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wl1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ytbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vciuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go3mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q327i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djfgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dbtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ham") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tqxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xae4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il8ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck01n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7kuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grag2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0m6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3y2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhqsr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsk0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb6ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn3r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hc38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkltn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7b27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbhvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32jcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn4he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u3hw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_er1un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btufa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr2ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80mnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16s5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te7xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loo05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdksy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syi74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y5rj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjg7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww5gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddrob") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_obn08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsbte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eawgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbxb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyo4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyp4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yoy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s88rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbxhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p88kf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qrjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knmli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgjwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf44l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j1uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgh26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx8g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnxdp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_unhallowed.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_unhallowed.tres new file mode 100644 index 0000000..4f4506f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_unhallowed.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bvcb67rwnnevh"] + +[ext_resource type="Texture2D" uid="uid://c4djk80w3ncob" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png" id="1_m41vh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7y4c"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjekb"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwkyj"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmji7"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwfuo"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60w1x"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahfj6"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kfrh"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls8d1"] +atlas = ExtResource("1_m41vh") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqepv"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c4yf"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvgph"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbcth"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc86o"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54k7x"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvsbw"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn2rc"] +atlas = ExtResource("1_m41vh") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n5it"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa7io"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx2l0"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nv3f"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd2x3"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiuyw"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_matjs"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhg1f"] +atlas = ExtResource("1_m41vh") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsac7"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhguy"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah8o7"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b34xq"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afsp4"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btlkx"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esao0"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qtkw"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nvmv"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2ytn"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg1go"] +atlas = ExtResource("1_m41vh") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv2tj"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu2n1"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f23h3"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xoif"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjivv"] +atlas = ExtResource("1_m41vh") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkqa5"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m4c8"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8evi1"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yopqx"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wabll"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udi0i"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkc4j"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns5tf"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weq55"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as6lh"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nw7h"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk4ch"] +atlas = ExtResource("1_m41vh") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3oxr"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvjhi"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj6td"] +atlas = ExtResource("1_m41vh") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5px7k"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfcxu"] +atlas = ExtResource("1_m41vh") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kdci"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr7if"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l183n"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05g1j"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6sxl"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xchv2"] +atlas = ExtResource("1_m41vh") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkmo8"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bokwj"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umjhj"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hje0e"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5yy6"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0uyb"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bf2c"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft62m"] +atlas = ExtResource("1_m41vh") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka8e3"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ija80"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcx22"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxgpi"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utshj"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5q3j"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8883"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srq54"] +atlas = ExtResource("1_m41vh") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7y4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjekb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwkyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmji7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwfuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60w1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahfj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kfrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls8d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqepv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c4yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvgph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbcth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc86o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54k7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvsbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn2rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n5it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa7io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx2l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nv3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd2x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiuyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_matjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhg1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsac7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhguy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah8o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b34xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afsp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btlkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esao0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qtkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nvmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2ytn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg1go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv2tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu2n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f23h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xoif") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjivv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkqa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m4c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8evi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yopqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wabll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udi0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkc4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns5tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weq55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as6lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nw7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk4ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3oxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvjhi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj6td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5px7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfcxu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kdci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr7if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l183n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05g1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6sxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xchv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkmo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bokwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umjhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hje0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5yy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0uyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bf2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft62m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka8e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ija80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcx22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxgpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utshj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5q3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8883") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srq54") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_valiant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_valiant.tres new file mode 100644 index 0000000..40b0d22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_valiant.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://cv5l507u6bqxw"] + +[ext_resource type="Texture2D" uid="uid://cbj3iv6m6voww" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png" id="1_16jg6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p201"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clqtt"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebq0r"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nd5c"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti53c"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ash"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjs6t"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ska"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkbhb"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gctrj"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cid7l"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rr88"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2i3t"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twgsv"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmtqm"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwnrc"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3c26"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh4l5"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt8vd"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p14ju"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eam5"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buwbu"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4u6y"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ubic"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qms65"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v58gc"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyvgt"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsn8e"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv5kw"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjv34"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8fi7"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0sju"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl347"] +atlas = ExtResource("1_16jg6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grbcs"] +atlas = ExtResource("1_16jg6") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxf4r"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lxct"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qby8"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3nqf"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvbhr"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7dvy"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4515"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxyse"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e2t5"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ehae"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3gl5"] +atlas = ExtResource("1_16jg6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5nmb"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4badv"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa7ea"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wlf4"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ncbi"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um2ml"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv41e"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e5kb"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1y0l"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljb01"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6avv"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br7m2"] +atlas = ExtResource("1_16jg6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p201") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clqtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebq0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nd5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti53c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ash") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjs6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ska") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkbhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gctrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cid7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rr88") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2i3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twgsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmtqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwnrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3c26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh4l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt8vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p14ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eam5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buwbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4u6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ubic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qms65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v58gc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyvgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsn8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv5kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjv34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8fi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0sju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl347") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grbcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxf4r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lxct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qby8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3nqf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvbhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7dvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4515") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxyse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e2t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ehae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3gl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5nmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4badv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa7ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wlf4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ncbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um2ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv41e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e5kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1y0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljb01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6avv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br7m2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_vampire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_vampire.tres new file mode 100644 index 0000000..b0575ba --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_vampire.tres @@ -0,0 +1,776 @@ +[gd_resource type="SpriteFrames" load_steps=107 format=3 uid="uid://373dbt6pdnnk"] + +[ext_resource type="Texture2D" uid="uid://dhve47j0xuywx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png" id="1_yq2xk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq2oe"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvnau"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1sor"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuwib"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb76l"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6klvs"] +atlas = ExtResource("1_yq2xk") +region = Rect2(818, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db1tj"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pe6u"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxp3w"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40rt7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb5q5"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj372"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcw1r"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b5f1"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5g4i"] +atlas = ExtResource("1_yq2xk") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp3f5"] +atlas = ExtResource("1_yq2xk") +region = Rect2(717, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofeil"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_himf4"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5nlf"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqw3f"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7048m"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t2eh"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41x6e"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8wam"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_invob"] +atlas = ExtResource("1_yq2xk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmnm4"] +atlas = ExtResource("1_yq2xk") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lhpp"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mtru"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s75jm"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpu24"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g3cc"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjj3m"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7odb3"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pbt1"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auj2k"] +atlas = ExtResource("1_yq2xk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_513vc"] +atlas = ExtResource("1_yq2xk") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4diee"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r23jb"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcwwe"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwu8"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5kx8"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wirv2"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80ua0"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q12x"] +atlas = ExtResource("1_yq2xk") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6oom"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g7kl"] +atlas = ExtResource("1_yq2xk") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1w1g"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uoi1"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b6hn"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vqko"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_783kt"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgut2"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16p1t"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dju0f"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erhjd"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm4su"] +atlas = ExtResource("1_yq2xk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbfns"] +atlas = ExtResource("1_yq2xk") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5walc"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp3o6"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kthcd"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gvsx"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bnsq"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhdsk"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibod7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jejea"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re3y2"] +atlas = ExtResource("1_yq2xk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me6vl"] +atlas = ExtResource("1_yq2xk") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u57ug"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ormjt"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj3i0"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flcrt"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd4es"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mopqo"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc5hn"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8qud"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnxne"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mqwg"] +atlas = ExtResource("1_yq2xk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43c38"] +atlas = ExtResource("1_yq2xk") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1816"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayegf"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl4t4"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oteo"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4gj0"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqib7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqn6v"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbrmm"] +atlas = ExtResource("1_yq2xk") +region = Rect2(101, 123, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njeng"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf1b7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovm2b"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pednk"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_and6j"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02u0q"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4fv"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntu3e"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 123, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tbe7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 82, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1j54"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 41, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwf6d"] +atlas = ExtResource("1_yq2xk") +region = Rect2(0, 0, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfujv"] +atlas = ExtResource("1_yq2xk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8wkm"] +atlas = ExtResource("1_yq2xk") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s86sl"] +atlas = ExtResource("1_yq2xk") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1t65"] +atlas = ExtResource("1_yq2xk") +region = Rect2(919, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h24l7"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny0ma"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s203"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcxvc"] +atlas = ExtResource("1_yq2xk") +region = Rect2(909, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq2oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvnau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1sor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuwib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb76l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6klvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db1tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pe6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxp3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40rt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb5q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj372") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcw1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b5f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5g4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp3f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofeil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_himf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5nlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqw3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7048m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t2eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41x6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8wam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_invob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmnm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lhpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mtru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s75jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpu24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g3cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjj3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7odb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pbt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auj2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_513vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4diee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r23jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcwwe") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wwu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5kx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wirv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80ua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q12x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6oom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g7kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1w1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uoi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b6hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vqko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_783kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgut2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16p1t") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dju0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erhjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm4su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbfns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5walc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp3o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kthcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gvsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bnsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhdsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibod7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jejea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re3y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me6vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u57ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ormjt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj3i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flcrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd4es") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mopqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc5hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8qud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnxne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mqwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43c38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1816") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayegf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl4t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oteo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4gj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqib7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqn6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbrmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njeng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf1b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovm2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pednk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_and6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02u0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntu3e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tbe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1j54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwf6d") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfujv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8wkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s86sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1t65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h24l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny0ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s203") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcxvc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wolfpunch.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wolfpunch.tres new file mode 100644 index 0000000..dc52b7e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wolfpunch.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://biymetpngjxot"] + +[ext_resource type="Texture2D" uid="uid://bq2l0j2e62f0b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png" id="1_d52ru"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t81i7"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohc7r"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1fc2"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xg1e"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_locip"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd3g7"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix1r5"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1t5m"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sxqb"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hng5b"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ht7a"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf87t"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj3d5"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omigj"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17flv"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vjtt"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0np52"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bx38"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0rm8"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3md5b"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4sla"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me4n0"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7p2o"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6uea"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pg14"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgg8a"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loe1w"] +atlas = ExtResource("1_d52ru") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq53g"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0joed"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14wjf"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jmay"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlgjg"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufdke"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cf73"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cimqi"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioej0"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmqnb"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmbjt"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8wha"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs0np"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp5xq"] +atlas = ExtResource("1_d52ru") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pilcc"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlddv"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nwyh"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r0ys"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qor2x"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2020d"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jhnb"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mch3t"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugi2y"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxce0"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88aw5"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_774m7"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnqk4"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qthhw"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me5f8"] +atlas = ExtResource("1_d52ru") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjgwy"] +atlas = ExtResource("1_d52ru") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgd34"] +atlas = ExtResource("1_d52ru") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0y01"] +atlas = ExtResource("1_d52ru") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vou3u"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ov7"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2i4q"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyah0"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx0ro"] +atlas = ExtResource("1_d52ru") +region = Rect2(243, 567, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t81i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohc7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1fc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xg1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_locip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd3g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix1r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1t5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sxqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hng5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ht7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf87t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj3d5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_omigj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17flv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vjtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0np52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bx38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0rm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3md5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4sla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me4n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7p2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6uea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pg14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgg8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loe1w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq53g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0joed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14wjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jmay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlgjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufdke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cf73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cimqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioej0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmqnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmbjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8wha") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs0np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp5xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pilcc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlddv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nwyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r0ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qor2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2020d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jhnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mch3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugi2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxce0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88aw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_774m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnqk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qthhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me5f8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjgwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgd34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0y01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vou3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ov7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2i4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyah0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx0ro") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wraith.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wraith.tres new file mode 100644 index 0000000..3ee8019 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wraith.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://ck75m5ceqguuu"] + +[ext_resource type="Texture2D" uid="uid://csm3xpqm255gn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png" id="1_8b1k8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp5tg"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujnph"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qkoy"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hoj7"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeedk"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc2tm"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xj7e"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbxer"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv5yu"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dabs"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4pxo"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lxrk"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1yn6"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2qyn"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhfe8"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3rvm"] +atlas = ExtResource("1_8b1k8") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u70y"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8tkd"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y6ci"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk4mb"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7w1u"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_671ew"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgjkw"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x0jb"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61m7y"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q61g6"] +atlas = ExtResource("1_8b1k8") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugjn2"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15wog"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srocd"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm4vk"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyri5"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un3dv"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yw0g"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqq5a"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v4r0"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uhny"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8157e"] +atlas = ExtResource("1_8b1k8") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eei05"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q1x5"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1cew"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qepdv"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05f1s"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u01p2"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mbis"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0asjq"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_646id"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wm67"] +atlas = ExtResource("1_8b1k8") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8iq0"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbq3"] +atlas = ExtResource("1_8b1k8") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8inu"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyjr8"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng7yc"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnslq"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn0ra"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip36x"] +atlas = ExtResource("1_8b1k8") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fqmo"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbv0w"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3lrd"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnyhl"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0i73"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0amrw"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u46ie"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2kdp"] +atlas = ExtResource("1_8b1k8") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_350pl"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqpir"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh3sn"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uspy3"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw36n"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tatvs"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3do7g"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7ofd"] +atlas = ExtResource("1_8b1k8") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp5tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujnph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qkoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hoj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeedk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc2tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xj7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbxer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv5yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dabs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4pxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lxrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1yn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2qyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhfe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3rvm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u70y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8tkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y6ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk4mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7w1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_671ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgjkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x0jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61m7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q61g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugjn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15wog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srocd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm4vk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyri5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un3dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yw0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqq5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v4r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uhny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8157e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eei05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q1x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1cew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qepdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05f1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u01p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mbis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0asjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_646id") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wm67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8iq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbq3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8inu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyjr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng7yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnslq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn0ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip36x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fqmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbv0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3lrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnyhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0i73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0amrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u46ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2kdp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_350pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqpir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh3sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uspy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw36n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tatvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3do7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7ofd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wujin.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wujin.tres new file mode 100644 index 0000000..c329283 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/boss_wujin.tres @@ -0,0 +1,778 @@ +[gd_resource type="SpriteFrames" load_steps=108 format=3 uid="uid://csnlul0fvhkdt"] + +[ext_resource type="Texture2D" uid="uid://55wgxphqnu1h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png" id="1_y5euc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j5ae"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrveq"] +atlas = ExtResource("1_y5euc") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm18b"] +atlas = ExtResource("1_y5euc") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o3dt"] +atlas = ExtResource("1_y5euc") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juq6r"] +atlas = ExtResource("1_y5euc") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cioxq"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ao1"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_484hq"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_570j3"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jftb1"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjusr"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d8mw"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6goxi"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvqgu"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es8y0"] +atlas = ExtResource("1_y5euc") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nie2y"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs41i"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wltnh"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ymjb"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0y3b"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hefl7"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibrcd"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kurnt"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfo7d"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5xia"] +atlas = ExtResource("1_y5euc") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jbdf"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djdui"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfngy"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd7ct"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fntqr"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6fxo"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oicv1"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwpjv"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khvje"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gndo2"] +atlas = ExtResource("1_y5euc") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7et1n"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fqnh"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cockq"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re2cd"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ktg"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv32b"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lxtc"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n87bm"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssovg"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy0nc"] +atlas = ExtResource("1_y5euc") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj2uo"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v88kr"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpyhp"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbdsw"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hfyk"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1isq"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yag33"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuteg"] +atlas = ExtResource("1_y5euc") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqgs3"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qfla"] +atlas = ExtResource("1_y5euc") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6edw6"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi8o0"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlfrf"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xtec"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7gd4"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aj1i"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo7uc"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukca8"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xec1h"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onqay"] +atlas = ExtResource("1_y5euc") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le2jf"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x20j0"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu5vx"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuntv"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1ny"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsqnn"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2110"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crf5v"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnxl3"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yo2t"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tc8o"] +atlas = ExtResource("1_y5euc") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em67o"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pawrj"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wr83"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbscp"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pke2"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q314b"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wggmt"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7n3e"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1varb"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx4by"] +atlas = ExtResource("1_y5euc") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg3h1"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l38x1"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlu6j"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jr8k"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01ca6"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02kl4"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7jin"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjr8q"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv1y3"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2frf4"] +atlas = ExtResource("1_y5euc") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwkl3"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqx2d"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcjwo"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8fuj"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iioe1"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wig8f"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptuh4"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tecqn"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g2q2"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yygb"] +atlas = ExtResource("1_y5euc") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j5ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrveq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm18b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o3dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juq6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cioxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ao1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_484hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_570j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jftb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjusr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d8mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6goxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvqgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es8y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nie2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs41i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wltnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ymjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0y3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hefl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibrcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kurnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfo7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5xia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jbdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djdui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfngy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd7ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fntqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6fxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oicv1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwpjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khvje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gndo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7et1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fqnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cockq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re2cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ktg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv32b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lxtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n87bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssovg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy0nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj2uo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v88kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpyhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbdsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hfyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1isq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yag33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuteg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqgs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qfla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6edw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi8o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlfrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xtec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7gd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aj1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo7uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukca8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xec1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onqay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le2jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x20j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu5vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuntv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsqnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2110") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crf5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnxl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yo2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tc8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em67o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pawrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wr83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbscp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pke2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q314b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wggmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7n3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1varb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx4by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg3h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l38x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlu6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jr8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01ca6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02kl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7jin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjr8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv1y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2frf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwkl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqx2d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcjwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8fuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iioe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wig8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptuh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tecqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g2q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yygb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_1.tres new file mode 100644 index 0000000..cef319f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_1.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://bqndga87u1trf"] + +[ext_resource type="Texture2D" uid="uid://7ic068anosko" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png" id="1_vugb2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlub5"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55gy8"] +atlas = ExtResource("1_vugb2") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3dqn"] +atlas = ExtResource("1_vugb2") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt3l0"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho0e7"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30y3f"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e450"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meca0"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b8i2"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xol4"] +atlas = ExtResource("1_vugb2") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7rqd"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnbee"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48btj"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjcl0"] +atlas = ExtResource("1_vugb2") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7pvs"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkta1"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk4re"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tyrt"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uknk"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbjmf"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hux7"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c28l"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka2tb"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7r4j"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd3f5"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o77"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klelx"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2xsw"] +atlas = ExtResource("1_vugb2") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhbgo"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mvx1"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2h3c"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsqvl"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3npo"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6kw5"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vshr"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bvwo"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i75l"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wovrw"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xpcw"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfqam"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvdxa"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oiw2"] +atlas = ExtResource("1_vugb2") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f3y5"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f17m7"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a2wg"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wetee"] +atlas = ExtResource("1_vugb2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75wnx"] +atlas = ExtResource("1_vugb2") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et0qi"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umygx"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnyty"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gppcs"] +atlas = ExtResource("1_vugb2") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlub5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55gy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3dqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt3l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho0e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30y3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e450") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meca0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b8i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xol4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7rqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnbee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48btj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjcl0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7pvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkta1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk4re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tyrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uknk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbjmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hux7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c28l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka2tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7r4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd3f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klelx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2xsw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhbgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mvx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2h3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsqvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3npo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6kw5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vshr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bvwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i75l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wovrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xpcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfqam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvdxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oiw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f3y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f17m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a2wg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wetee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75wnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et0qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umygx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnyty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gppcs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_2.tres new file mode 100644 index 0000000..9f79838 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/critter_2.tres @@ -0,0 +1,358 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://b38iok8ul0swf"] + +[ext_resource type="Texture2D" uid="uid://ct72euu8nb28" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png" id="1_kjb48"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bscgf"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oqfp"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qc1k"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1v5g"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0wu3"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4raw"] +atlas = ExtResource("1_kjb48") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeiyb"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkrtm"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruap0"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkr6u"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70r8a"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o3vo"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x4h4"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v035h"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl7es"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km721"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlswc"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae67f"] +atlas = ExtResource("1_kjb48") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hfmb"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2t8k"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55kuf"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jurn1"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5qjt"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m05pr"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vosr"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrmug"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b715u"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uj2w"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ntb"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj13g"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cmla"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpgbm"] +atlas = ExtResource("1_kjb48") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji2s3"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukme4"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt63d"] +atlas = ExtResource("1_kjb48") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxmiq"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5ftb"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6l5a"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wxm4"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8flej"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3c76"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xymo"] +atlas = ExtResource("1_kjb48") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4wka"] +atlas = ExtResource("1_kjb48") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guvut"] +atlas = ExtResource("1_kjb48") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gjgm"] +atlas = ExtResource("1_kjb48") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjfhm"] +atlas = ExtResource("1_kjb48") +region = Rect2(405, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bscgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oqfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qc1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1v5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0wu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4raw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeiyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkrtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruap0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkr6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70r8a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o3vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x4h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v035h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl7es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km721") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlswc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae67f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hfmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2t8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55kuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jurn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5qjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m05pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vosr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrmug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b715u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uj2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ntb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj13g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cmla") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpgbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji2s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukme4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt63d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxmiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5ftb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6l5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wxm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8flej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3c76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xymo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4wka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guvut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gjgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjfhm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_3rdgeneral.tres new file mode 100644 index 0000000..9dc3094 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_3rdgeneral.tres @@ -0,0 +1,1183 @@ +[gd_resource type="SpriteFrames" load_steps=163 format=3 uid="uid://bvm73m3xyuumi"] + +[ext_resource type="Texture2D" uid="uid://dty0vnk6jcrbe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png" id="1_8huf2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm08n"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmbfm"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdbtf"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea1fg"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8852w"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nlya"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eadwn"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j72e4"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0buj8"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vo2t"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj42g"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0xhw"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_313fo"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1q72"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr040"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80ef3"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kacar"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoptt"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36bhm"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e025"] +atlas = ExtResource("1_8huf2") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxtkf"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxki"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3fq2"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxkbf"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_symbf"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkjge"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cejy1"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etg65"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiq2n"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvgah"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v6ln"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji1ek"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mjft"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05glj"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mx2t"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg54"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bhd8"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svyru"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x05rm"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs14d"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypqar"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq80e"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx1bh"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whbg6"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puyoy"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x03m"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5be5c"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uwxe"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf63c"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iecv8"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yemg5"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r36tn"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfhvo"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pps4j"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tlj7"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl4lm"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8er3"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idwh3"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j32qp"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4qe0"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t1ro"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rs80"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf7c3"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7oca"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f56j6"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsnoq"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdqud"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uivor"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8xo6"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1d5"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cref5"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7klrn"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j8vl"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcv0c"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq4w6"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tno5"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fwus"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf3gn"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltyac"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8672"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mjjy"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1on7v"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rsjo"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eup3u"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfrdi"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87hek"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p728s"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvfw0"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyatc"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bcmw"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_madcq"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ird1p"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smk8m"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5nle"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cei82"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrer1"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8to88"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo5uy"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oyq4"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w1df"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keglg"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dldd5"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slv22"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eigr6"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gypn"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evfd2"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yw32"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ivr"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwtck"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g11ln"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7vny"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo2bm"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cludk"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce7c6"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgt5x"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dysj4"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnv7x"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twvxv"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xd0n"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vb4t"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mqbc"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4hhv"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_613y4"] +atlas = ExtResource("1_8huf2") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxgkr"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmp5r"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkhj6"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tlu6"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apphb"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hhu1"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0armv"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1ohg"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sohin"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e6kr"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0fgt"] +atlas = ExtResource("1_8huf2") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4vws"] +atlas = ExtResource("1_8huf2") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn7uo"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m5gf"] +atlas = ExtResource("1_8huf2") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlaum"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po1pp"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkf1n"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rornt"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmf00"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gel6q"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7dt1"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt3h6"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5y07"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnc6c"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8p0l"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cop1m"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqirr"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wweca"] +atlas = ExtResource("1_8huf2") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tunyh"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s45v"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka8lq"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilgb0"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdtw0"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lytyh"] +atlas = ExtResource("1_8huf2") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbcch"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4pmd"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k77g"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqtt5"] +atlas = ExtResource("1_8huf2") +region = Rect2(393, 1441, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm08n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmbfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdbtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea1fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8852w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nlya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eadwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j72e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0buj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vo2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj42g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0xhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_313fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1q72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr040") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80ef3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kacar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoptt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36bhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e025") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxtkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoxki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3fq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxkbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_symbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkjge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cejy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etg65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiq2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvgah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v6ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji1ek") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mjft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05glj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mx2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bhd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svyru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x05rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs14d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypqar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq80e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx1bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whbg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puyoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x03m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5be5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uwxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf63c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iecv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yemg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r36tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfhvo") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pps4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tlj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl4lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8er3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idwh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j32qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4qe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t1ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rs80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf7c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7oca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f56j6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsnoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdqud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uivor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8xo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cref5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7klrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j8vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcv0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq4w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tno5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fwus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf3gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltyac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8672") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mjjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1on7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rsjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eup3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfrdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87hek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p728s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvfw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyatc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bcmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_madcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ird1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smk8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5nle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cei82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrer1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8to88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo5uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oyq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w1df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keglg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dldd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slv22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eigr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gypn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evfd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yw32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ivr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwtck") +}], +"loop": true, +"name": &"castendsample", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g11ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7vny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo2bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cludk") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce7c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgt5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dysj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnv7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twvxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xd0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vb4t") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mqbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4hhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_613y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxgkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmp5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkhj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tlu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apphb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hhu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0armv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1ohg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sohin") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e6kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0fgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4vws") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn7uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m5gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlaum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po1pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkf1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rornt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmf00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gel6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7dt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt3h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5y07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnc6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8p0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cop1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqirr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wweca") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tunyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s45v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka8lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilgb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdtw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lytyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbcch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4pmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k77g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqtt5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneral.tres new file mode 100644 index 0000000..c205ccc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneral.tres @@ -0,0 +1,896 @@ +[gd_resource type="SpriteFrames" load_steps=122 format=3 uid="uid://dkmh2234scv3r"] + +[ext_resource type="Texture2D" uid="uid://b13rktv527okt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png" id="1_dxgy5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkod3"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi2te"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uv6a"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr4qu"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o31bd"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bo6l"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la3an"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klllr"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1sd0"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x72cw"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0pxe"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r0pd"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhij6"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ffqx"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs27d"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbmyn"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrim0"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ebsr"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj6gv"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ykyf"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4png"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvxij"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nicmv"] +atlas = ExtResource("1_dxgy5") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u48tf"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opgvf"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3r18"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmj14"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya61c"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg25d"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t01pt"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ts87"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10xsj"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co7n1"] +atlas = ExtResource("1_dxgy5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rmj7"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wli2"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq4fd"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55la5"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_817s2"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgo17"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe4r4"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53ik1"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjd5x"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejput"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erbyh"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x53g"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfj51"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hdx3"] +atlas = ExtResource("1_dxgy5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdocw"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xgtb"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3h84"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rx7a"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17l7m"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbhut"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbc84"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ykdi"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkm26"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlwct"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipumj"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_206od"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_872p2"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jqey"] +atlas = ExtResource("1_dxgy5") +region = Rect2(1111, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei2sw"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjg11"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77hx4"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke2r5"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_676vu"] +atlas = ExtResource("1_dxgy5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mji8"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah5sr"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqjtb"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3hhx"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1tio"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jellc"] +atlas = ExtResource("1_dxgy5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2kvu"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfujm"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81y5e"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4nhn"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odyjd"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heivk"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxa7j"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8inc3"] +atlas = ExtResource("1_dxgy5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nirh5"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfdcp"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plsav"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svfr5"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sse63"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew5sb"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhi6i"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyn70"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72iwu"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3o1h"] +atlas = ExtResource("1_dxgy5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhh7q"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mscja"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ryrt"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i61i2"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xhgt"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81clh"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1i5m"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg27y"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdbsx"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igjxx"] +atlas = ExtResource("1_dxgy5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqkl5"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gkvb"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omnuw"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no2eb"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxilv"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_635t4"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt1i6"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b313f"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbu30"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaajo"] +atlas = ExtResource("1_dxgy5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1j4u"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d4xh"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqqob"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5qer"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbfoi"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq5tr"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ackrk"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbgq2"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nni0w"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g61o"] +atlas = ExtResource("1_dxgy5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkod3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi2te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uv6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr4qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o31bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bo6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la3an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klllr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1sd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x72cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0pxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r0pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhij6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ffqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs27d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbmyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrim0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ebsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ykyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4png") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvxij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nicmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u48tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opgvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3r18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmj14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya61c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg25d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t01pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ts87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10xsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co7n1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rmj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wli2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq4fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55la5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_817s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgo17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe4r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53ik1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjd5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejput") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erbyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x53g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfj51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hdx3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdocw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xgtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3h84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rx7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17l7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbhut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbc84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ykdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkm26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlwct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipumj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_206od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_872p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jqey") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei2sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjg11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77hx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke2r5") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_676vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mji8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah5sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqjtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3hhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1tio") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jellc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2kvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfujm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81y5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4nhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odyjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heivk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxa7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8inc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nirh5") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfdcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plsav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svfr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sse63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew5sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhi6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyn70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72iwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3o1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhh7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mscja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ryrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i61i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xhgt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_81clh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1i5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg27y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdbsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igjxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqkl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gkvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no2eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxilv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_635t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt1i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b313f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbu30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaajo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1j4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d4xh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqqob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5qer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbfoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq5tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ackrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbgq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nni0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g61o") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneraltier2.tres new file mode 100644 index 0000000..57a6566 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_altgeneraltier2.tres @@ -0,0 +1,868 @@ +[gd_resource type="SpriteFrames" load_steps=118 format=3 uid="uid://dj3ietpaevobw"] + +[ext_resource type="Texture2D" uid="uid://cwxayataso3rk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png" id="1_vgc0c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5bu7"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol6eb"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf0vj"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2inh2"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtl5e"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvucp"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qkb0"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w3ti"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eibls"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgqt5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo4rg"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1638, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cui17"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckv1w"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdri0"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldsvq"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s22rx"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2biew"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3avl1"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi2oi"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1512, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2tsr"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4acg5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi837"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2da8q"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqend"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjbvt"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk83i"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nhf5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1386, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxyqe"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1edy"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7p4g"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aomu"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woaxr"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klrcv"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x2io"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nsc1"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1260, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afqdp"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arxu5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxmfn"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb1mb"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5imm"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpq52"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yqs8"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3rfv"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1134, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewnyt"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmra"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvviw"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3ntc"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pboql"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33bno"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spw72"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axb56"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2uhf"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7tnu"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avid1"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa2k8"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di4cs"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4mk4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xdeo"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djn0n"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4xlm"] +atlas = ExtResource("1_vgc0c") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8kd4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppygi"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ng7j"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr5aa"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2v7w"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5gi8"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ryi"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jli5a"] +atlas = ExtResource("1_vgc0c") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5ug4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei6ax"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwpie"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqune"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p3mr"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5pcm"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbuhk"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2idt4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e5et"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5err"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi7o7"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jpi0"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3gtf"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylute"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53gk4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1y6k"] +atlas = ExtResource("1_vgc0c") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap512"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t12js"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbsb5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bnyf"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd0sm"] +atlas = ExtResource("1_vgc0c") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7xkq"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1764, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er6o4"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1764, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pb62"] +atlas = ExtResource("1_vgc0c") +region = Rect2(1764, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbnqo"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfty6"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bktp5"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avwkf"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whyft"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqrmu"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rtpo"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppjim"] +atlas = ExtResource("1_vgc0c") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whkpe"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uam76"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bl3h"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydoba"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54253"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg6vh"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21sv8"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xis1x"] +atlas = ExtResource("1_vgc0c") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3euu0"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7mgy"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b66i7"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umuds"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u306d"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2r1y"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taguv"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bxtc"] +atlas = ExtResource("1_vgc0c") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5bu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol6eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf0vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2inh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtl5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvucp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qkb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w3ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eibls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgqt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo4rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cui17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckv1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdri0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldsvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s22rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2biew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3avl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi2oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2tsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4acg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi837") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2da8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqend") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjbvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk83i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nhf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxyqe") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1edy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7p4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aomu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woaxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klrcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x2io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nsc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afqdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arxu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxmfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb1mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5imm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpq52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yqs8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3rfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewnyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvviw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3ntc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pboql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33bno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spw72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axb56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2uhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7tnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avid1") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa2k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di4cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4mk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xdeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djn0n") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4xlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8kd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppygi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ng7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr5aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2v7w") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5gi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jli5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5ug4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei6ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwpie") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqune") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p3mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5pcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbuhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2idt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e5et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5err") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi7o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jpi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3gtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylute") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53gk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1y6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap512") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t12js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbsb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bnyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd0sm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7xkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er6o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pb62") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbnqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfty6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bktp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avwkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whyft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqrmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rtpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppjim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whkpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uam76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bl3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydoba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54253") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg6vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21sv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xis1x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3euu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7mgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b66i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umuds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u306d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2r1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taguv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bxtc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_archdeacon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_archdeacon.tres new file mode 100644 index 0000000..9728024 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_archdeacon.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://cd7wfcg8n6u0q"] + +[ext_resource type="Texture2D" uid="uid://b8o0s2pihkeib" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png" id="1_x5wgn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5lgr"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rri5w"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d76yo"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y7uh"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ndx"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4iyp"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b5yf"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14l7o"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0cni"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74hw4"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rm57"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkygd"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tk8y"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjge6"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lh8w"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahi1n"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dil38"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61y0l"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa0xd"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hekm1"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmrxq"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85570"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc0ok"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y35c"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdfiy"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpmp4"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vtg4"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oos5k"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsuie"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4fed"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47a81"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1ecs"] +atlas = ExtResource("1_x5wgn") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2prhp"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha2t3"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7p0u"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpxuk"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0gs"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nftdn"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kieyy"] +atlas = ExtResource("1_x5wgn") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxywp"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkfr2"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wroga"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wveh"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxo36"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkg0r"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47m0c"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ragw4"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_666q6"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mltbm"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdhne"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j3pc"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggxv4"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja0bj"] +atlas = ExtResource("1_x5wgn") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njape"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh7kr"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvpl2"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh4gs"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_844yr"] +atlas = ExtResource("1_x5wgn") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kureg"] +atlas = ExtResource("1_x5wgn") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtvhl"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbxb1"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d46b5"] +atlas = ExtResource("1_x5wgn") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cywpv"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_025ux"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo34m"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpsjq"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ku5d"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkgvv"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq8da"] +atlas = ExtResource("1_x5wgn") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuo47"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j4np"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnrga"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fyb1"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6pdb"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iia5"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcguv"] +atlas = ExtResource("1_x5wgn") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn11t"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8jws"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axw5l"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28rmm"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpvdw"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51pue"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqbik"] +atlas = ExtResource("1_x5wgn") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5lgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rri5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d76yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y7uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ndx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4iyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b5yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14l7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0cni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74hw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rm57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkygd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tk8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjge6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lh8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahi1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dil38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61y0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa0xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hekm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmrxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85570") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc0ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y35c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdfiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpmp4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vtg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oos5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsuie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4fed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47a81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1ecs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2prhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha2t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7p0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpxuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux0gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nftdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kieyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxywp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkfr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wroga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wveh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxo36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkg0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47m0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ragw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_666q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mltbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdhne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j3pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggxv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja0bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njape") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh7kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvpl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh4gs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_844yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kureg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtvhl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbxb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d46b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cywpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_025ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo34m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpsjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ku5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkgvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq8da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuo47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j4np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnrga") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fyb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6pdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iia5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcguv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn11t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8jws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axw5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28rmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpvdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51pue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqbik") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_auroralioness.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_auroralioness.tres new file mode 100644 index 0000000..46103c6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_auroralioness.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://c52ujkfoi64rb"] + +[ext_resource type="Texture2D" uid="uid://i18vcvu8uldo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png" id="1_mhems"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt1bt"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6ro1"] +atlas = ExtResource("1_mhems") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5vvq"] +atlas = ExtResource("1_mhems") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvgm"] +atlas = ExtResource("1_mhems") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks8il"] +atlas = ExtResource("1_mhems") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qf1c"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64dr0"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa1sl"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmqcq"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v54gc"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syycy"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg1jy"] +atlas = ExtResource("1_mhems") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ade0d"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhch2"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mirko"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r37mx"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqv2n"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo6o5"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v342"] +atlas = ExtResource("1_mhems") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3xvt"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlumi"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwcg3"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqxio"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hg7x"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h68k"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q3kn"] +atlas = ExtResource("1_mhems") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3qvw"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fys00"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2enpl"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nph4h"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1fu6"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsrpj"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhcin"] +atlas = ExtResource("1_mhems") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe66l"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6rjs"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuqyx"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvr0i"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8djfe"] +atlas = ExtResource("1_mhems") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1quw"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1vit"] +atlas = ExtResource("1_mhems") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp6mj"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkob1"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muwre"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bkid"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_camjm"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp411"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf713"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iap8r"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rixdc"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bw5w"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gs5s"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1fpw"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64at"] +atlas = ExtResource("1_mhems") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shnd7"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlr8d"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5su2v"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lel7e"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox8al"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jreu"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cd7h"] +atlas = ExtResource("1_mhems") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ugtn"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xijas"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntcrp"] +atlas = ExtResource("1_mhems") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj8dj"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14cu"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2cgf"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f0cn"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flxua"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f8n1"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bov3s"] +atlas = ExtResource("1_mhems") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfqpf"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naif3"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7pk2"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_may47"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgmux"] +atlas = ExtResource("1_mhems") +region = Rect2(262, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt1bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6ro1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5vvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks8il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qf1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64dr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa1sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmqcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v54gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syycy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg1jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ade0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhch2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mirko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r37mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqv2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo6o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v342") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3xvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlumi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwcg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqxio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hg7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h68k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q3kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3qvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fys00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2enpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nph4h") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1fu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsrpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhcin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe66l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6rjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuqyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvr0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8djfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1quw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1vit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp6mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkob1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muwre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bkid") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_camjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp411") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf713") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iap8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rixdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bw5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gs5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1fpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a64at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shnd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlr8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5su2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lel7e") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox8al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jreu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cd7h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ugtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xijas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntcrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj8dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2cgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f0cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flxua") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f8n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bov3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfqpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naif3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7pk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_may47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgmux") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_azuritelion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_azuritelion.tres new file mode 100644 index 0000000..6349e83 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_azuritelion.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://dr13qka280ouf"] + +[ext_resource type="Texture2D" uid="uid://c2kp8y2tlksti" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png" id="1_gqoij"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnect"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fch0"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7olqj"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q43k2"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc714"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_684nc"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x12tt"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d71r"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqw3i"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppmki"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqlrc"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2avt"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_papa4"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f72w"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2lkh"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cankk"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tc51"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h65xs"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjmsh"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mome4"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_846w0"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju36e"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jteo"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0io1"] +atlas = ExtResource("1_gqoij") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq6ii"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1nwl"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5200"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc7mn"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_furqg"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kr8j"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdygx"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqgwt"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_345xa"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5payh"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxqna"] +atlas = ExtResource("1_gqoij") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nidaa"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcj33"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e44y1"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ldht"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdi7n"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smkct"] +atlas = ExtResource("1_gqoij") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xljw"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdr6i"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fdx8"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8at4y"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6y5s"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20apk"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l1dp"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jhrg"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bahjn"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgu7s"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_443ww"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vju0"] +atlas = ExtResource("1_gqoij") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87fb6"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ewi"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ithj"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h81j1"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yhnb"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qal3c"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plmy"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k2j2"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78by8"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6mxf"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqyaj"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q163h"] +atlas = ExtResource("1_gqoij") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnect") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fch0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7olqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q43k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc714") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_684nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x12tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d71r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqw3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppmki") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqlrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2avt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_papa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f72w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2lkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cankk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tc51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h65xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjmsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mome4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_846w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju36e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jteo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0io1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq6ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1nwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5200") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc7mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_furqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kr8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdygx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqgwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_345xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5payh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxqna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nidaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcj33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e44y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ldht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdi7n") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_smkct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xljw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdr6i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fdx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8at4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6y5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20apk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l1dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jhrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bahjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgu7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_443ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vju0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87fb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ewi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ithj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h81j1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yhnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qal3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k2j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78by8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6mxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqyaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q163h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_baastchampion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_baastchampion.tres new file mode 100644 index 0000000..ee768b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_baastchampion.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://c78tnmiloi7pg"] + +[ext_resource type="Texture2D" uid="uid://1woteajcnrdd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png" id="1_e551n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpoog"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xn1y"] +atlas = ExtResource("1_e551n") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexpr"] +atlas = ExtResource("1_e551n") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8ya1"] +atlas = ExtResource("1_e551n") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1cgb"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daen4"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o75v8"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y51ww"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ma5a"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18e5l"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mpof"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjh1a"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yx87"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a664a"] +atlas = ExtResource("1_e551n") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxrf2"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmvcd"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb8qu"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qf0a"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smgj8"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy8ve"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt4k4"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bcsk"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ouvg"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkdbw"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8tdo"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imie"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7xw6"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uhpd"] +atlas = ExtResource("1_e551n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3y0o"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0h0s"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrorg"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjtas"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyogq"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ef37"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwgqo"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi7y4"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx052"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucxp3"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6js24"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvwr4"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmfvs"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvovt"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwtlq"] +atlas = ExtResource("1_e551n") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4f53"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otf37"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yahsi"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p64vk"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbbst"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gocpo"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glvfn"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr2m2"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjyvb"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4woj"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flssu"] +atlas = ExtResource("1_e551n") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vo51"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2ys8"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qedc"] +atlas = ExtResource("1_e551n") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hug5"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grnnw"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lomjm"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlbst"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1a5l"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7raj4"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abqac"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d44fc"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rq5k"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23w0j"] +atlas = ExtResource("1_e551n") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nspjr"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xmll"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js2tk"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_251i8"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_estqi"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5bb3"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy7kr"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15nes"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sxr8"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axjbf"] +atlas = ExtResource("1_e551n") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpoog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xn1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8ya1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1cgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daen4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o75v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y51ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ma5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18e5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mpof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjh1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yx87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a664a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxrf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmvcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb8qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qf0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smgj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy8ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt4k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bcsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ouvg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkdbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8tdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0imie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7xw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uhpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3y0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0h0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrorg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjtas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyogq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ef37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwgqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi7y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx052") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucxp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6js24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvwr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmfvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvovt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwtlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4f53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otf37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yahsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p64vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbbst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gocpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glvfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr2m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjyvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4woj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flssu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vo51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2ys8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qedc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hug5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grnnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lomjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlbst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1a5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7raj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abqac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d44fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rq5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23w0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nspjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xmll") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_js2tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_251i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_estqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5bb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy7kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15nes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sxr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axjbf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_backlinearcher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_backlinearcher.tres new file mode 100644 index 0000000..d4a71f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_backlinearcher.tres @@ -0,0 +1,594 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://ct8pam4ghe5ly"] + +[ext_resource type="Texture2D" uid="uid://heo3py7gmtja" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png" id="1_tpbw1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vprlj"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxids"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18mdw"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25s85"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1tuh"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhprg"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7px8"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sofbo"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf8iu"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h86g"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tmpg"] +atlas = ExtResource("1_tpbw1") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j26fu"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ted1k"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfvr5"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c01eg"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43h8b"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgblm"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nyje"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8710"] +atlas = ExtResource("1_tpbw1") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1psy0"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyj4t"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56k2l"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoqrx"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uii5f"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv5xv"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u4jq"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5up2"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmyt4"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5qkq"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgvqn"] +atlas = ExtResource("1_tpbw1") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w1jh"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xkuu"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_132d5"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8vgp"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcb68"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxo3w"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iar6b"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd6n4"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vj7n"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l18a1"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu0hb"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwimq"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uonqj"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2pbp"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm0oq"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gbir"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkcuw"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j52bv"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofu2s"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10mdg"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2wbl"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2fyk"] +atlas = ExtResource("1_tpbw1") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f310"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kx18"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3sw1"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bndo"] +atlas = ExtResource("1_tpbw1") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvubg"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfe43"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ohu4"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtann"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih8mc"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smtrm"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkaoo"] +atlas = ExtResource("1_tpbw1") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grkq6"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns1k7"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds58f"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo64q"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2atge"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5rkk"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418t0"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq4r8"] +atlas = ExtResource("1_tpbw1") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sumki"] +atlas = ExtResource("1_tpbw1") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emgwr"] +atlas = ExtResource("1_tpbw1") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwb37"] +atlas = ExtResource("1_tpbw1") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgvst"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo0yy"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um8be"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxoje"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eehd7"] +atlas = ExtResource("1_tpbw1") +region = Rect2(847, 363, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vprlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxids") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18mdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25s85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1tuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhprg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7px8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sofbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf8iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h86g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tmpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j26fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ted1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfvr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c01eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43h8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgblm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nyje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8710") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1psy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyj4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56k2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoqrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uii5f") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv5xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u4jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5up2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmyt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5qkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgvqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w1jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xkuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_132d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8vgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcb68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxo3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iar6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd6n4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vj7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l18a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu0hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwimq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uonqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2pbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm0oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gbir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkcuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j52bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofu2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10mdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2wbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2fyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f310") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kx18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3sw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bndo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvubg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfe43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ohu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtann") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih8mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smtrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkaoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grkq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns1k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds58f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo64q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2atge") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5rkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_418t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq4r8") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sumki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emgwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwb37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgvst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo0yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um8be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxoje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eehd7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_bromemk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_bromemk2.tres new file mode 100644 index 0000000..12d8a28 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_bromemk2.tres @@ -0,0 +1,826 @@ +[gd_resource type="SpriteFrames" load_steps=112 format=3 uid="uid://cbe1tqpwo346m"] + +[ext_resource type="Texture2D" uid="uid://ba7rlyqdo7t7q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png" id="1_blujt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_44jsv"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsfnj"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17glj"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecqg7"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcuym"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx4co"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxw5u"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eddy"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dild"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiol7"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnlqh"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4fq1"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwhw7"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bipb"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlamy"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hae"] +atlas = ExtResource("1_blujt") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmje3"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8ywa"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_210wf"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6b7y"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss57x"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmlc5"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if14x"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y8je"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1nvw"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi0pu"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxs87"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkfpg"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlm63"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhfaa"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtrhq"] +atlas = ExtResource("1_blujt") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgaga"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skouj"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxgcy"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atbfs"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_higje"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0pfm"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hky1g"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4no6s"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ephl4"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taovm"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olm38"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr2gk"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bomd"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p2st"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaa5f"] +atlas = ExtResource("1_blujt") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekb38"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irgax"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn7jp"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy817"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8156"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1vn8"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngpbl"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaf3f"] +atlas = ExtResource("1_blujt") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cbak"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiyl4"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hwsg"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l48wh"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uffsf"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18kod"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6fs3"] +atlas = ExtResource("1_blujt") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5s82"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoit5"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywgod"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm2bb"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xavgk"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y558r"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjhss"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdsfl"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gf78"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yve1y"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmbf3"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61myx"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxycm"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vd2l"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygx76"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcm5s"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb2x2"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak26f"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36a4r"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5ec4"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w80k"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkv68"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw7cm"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tndh"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asdln"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhceq"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5kq0"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cccxv"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fafj1"] +atlas = ExtResource("1_blujt") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgmyc"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p0t3"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g00i"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru63s"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhomw"] +atlas = ExtResource("1_blujt") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p2lm"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sw87"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7s44"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqixa"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e5h4"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6hwq"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe8vb"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1sbe"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3akt"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnyep"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ksff"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yullk"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq12i"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8anng"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qev7c"] +atlas = ExtResource("1_blujt") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_44jsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsfnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17glj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecqg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcuym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx4co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxw5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eddy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dild") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiol7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnlqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4fq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwhw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bipb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlamy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6hae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmje3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8ywa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_210wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6b7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss57x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmlc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if14x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y8je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1nvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi0pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxs87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkfpg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlm63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhfaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtrhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgaga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skouj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxgcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atbfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_higje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0pfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hky1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4no6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ephl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taovm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olm38") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr2gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bomd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p2st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaa5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekb38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irgax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn7jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy817") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8156") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1vn8") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngpbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaf3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cbak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiyl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hwsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l48wh") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uffsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18kod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6fs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5s82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoit5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywgod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm2bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xavgk") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y558r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjhss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdsfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gf78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yve1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmbf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61myx") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxycm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vd2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygx76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcm5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb2x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak26f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36a4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5ec4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w80k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkv68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw7cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tndh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asdln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhceq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5kq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cccxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fafj1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgmyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p0t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g00i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru63s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhomw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p2lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sw87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7s44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqixa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e5h4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6hwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe8vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1sbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3akt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnyep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ksff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yullk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq12i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8anng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qev7c") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildcommon.tres new file mode 100644 index 0000000..757cbe3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildcommon.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cnj6l1q2e6ilt"] + +[ext_resource type="Texture2D" uid="uid://dukmxucqc7aum" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png" id="1_i38ar"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eanw"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6glc3"] +atlas = ExtResource("1_i38ar") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol4a1"] +atlas = ExtResource("1_i38ar") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phmbr"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar1mg"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjkis"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wfm3"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi0u7"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d74y"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mi3m"] +atlas = ExtResource("1_i38ar") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf77v"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybcof"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grtjk"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph3co"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eecbi"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wils2"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq32u"] +atlas = ExtResource("1_i38ar") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6phaa"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5x22"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xte4t"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1sr2"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o02i"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl7e1"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ehfb"] +atlas = ExtResource("1_i38ar") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0576m"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvg12"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3tjm"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67cxh"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8syvp"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4cu5"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_typ5y"] +atlas = ExtResource("1_i38ar") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cpa7"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vufps"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk6ng"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj3to"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xhpu"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md6tf"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hwiu"] +atlas = ExtResource("1_i38ar") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26jdf"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dc1o"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0y5n"] +atlas = ExtResource("1_i38ar") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfayr"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl4eh"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5lds"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yodxl"] +atlas = ExtResource("1_i38ar") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0ohk"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pln1x"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea713"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m75j"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pyed"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31dj2"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uqfq"] +atlas = ExtResource("1_i38ar") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3akuc"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el7tf"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a14ht"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcwxa"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufgar"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wyb0"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6mhq"] +atlas = ExtResource("1_i38ar") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_herft"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j86u6"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flb1r"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfdis"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii8cc"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p77gs"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt5c0"] +atlas = ExtResource("1_i38ar") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvtl2"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fpy6"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk65c"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pxlr"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_568fn"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au8h4"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqyjp"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p36p0"] +atlas = ExtResource("1_i38ar") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ivrt"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qshe"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aswus"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dubwp"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntcvp"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jcas"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5mdo"] +atlas = ExtResource("1_i38ar") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eanw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6glc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol4a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phmbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar1mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjkis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wfm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi0u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d74y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mi3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf77v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybcof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grtjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph3co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eecbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wils2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq32u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6phaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5x22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xte4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1sr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o02i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl7e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ehfb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0576m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvg12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3tjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67cxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8syvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4cu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_typ5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cpa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vufps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk6ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj3to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xhpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md6tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hwiu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_26jdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dc1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0y5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfayr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl4eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5lds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yodxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0ohk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pln1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea713") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m75j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pyed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31dj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uqfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3akuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el7tf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a14ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcwxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufgar") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wyb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6mhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_herft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j86u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flb1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfdis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii8cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p77gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt5c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvtl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fpy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk65c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pxlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_568fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au8h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqyjp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p36p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ivrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qshe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aswus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dubwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntcvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jcas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5mdo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildminion.tres new file mode 100644 index 0000000..e9cf8c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://r1jr08unq8j2"] + +[ext_resource type="Texture2D" uid="uid://u8yhg7lj7njj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png" id="1_0t6eo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_howg7"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyet5"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ngg"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43pmp"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lia3l"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xyi5"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2jql"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxxah"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4pfq"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wy5a"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xlic"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r803v"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jot6c"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drace"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwals"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc0y5"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywq42"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k21sl"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb3cq"] +atlas = ExtResource("1_0t6eo") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksty4"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ufaf"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aarup"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd2xk"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvsue"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0gb5"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpeno"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrk25"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuboc"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhty0"] +atlas = ExtResource("1_0t6eo") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evr36"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdot8"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jleub"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u426"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3ur"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tvd5"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6xc0"] +atlas = ExtResource("1_0t6eo") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5aac"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vjvj"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4kxg"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cat3v"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7566h"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wvjc"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffo6e"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbiog"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hyan"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0q0x"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tj3j"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu6pt"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euy1t"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em410"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3qr6"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpqrb"] +atlas = ExtResource("1_0t6eo") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1mr6"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nj2f"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq3cl"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiunf"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm6te"] +atlas = ExtResource("1_0t6eo") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cqeu"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltrxe"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnidh"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffaca"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwiuk"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngybs"] +atlas = ExtResource("1_0t6eo") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_214do"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3ukf"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxxwv"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7885a"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc7ft"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xrtf"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6k32"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdid8"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc54r"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ruqb"] +atlas = ExtResource("1_0t6eo") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_howg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyet5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ngg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43pmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lia3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xyi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2jql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxxah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4pfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wy5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xlic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r803v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jot6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drace") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwals") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc0y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywq42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k21sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb3cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksty4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ufaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aarup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd2xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvsue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0gb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpeno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuboc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhty0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evr36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdot8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jleub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u426") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3ur") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tvd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6xc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5aac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vjvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4kxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cat3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7566h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wvjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffo6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbiog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hyan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0q0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tj3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu6pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euy1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em410") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3qr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpqrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1mr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nj2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq3cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiunf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm6te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cqeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltrxe") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnidh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffaca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwiuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngybs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_214do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3ukf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxxwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7885a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc7ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xrtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6k32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdid8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc54r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ruqb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caliber-o.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caliber-o.tres new file mode 100644 index 0000000..de90f76 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caliber-o.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://bqik1hyjtq8bn"] + +[ext_resource type="Texture2D" uid="uid://bdjumkgammw7k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png" id="1_owkgu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc8vo"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86o8w"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeuyn"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4twyh"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l445v"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvn8o"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aexym"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aor8"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4blm"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4k17"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yagul"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2tdi"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xsjj"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6poaq"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4e4g"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq340"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiwfh"] +atlas = ExtResource("1_owkgu") +region = Rect2(726, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smhfx"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_578yh"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7arw"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wipk"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x2xk"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yufwo"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka8uw"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diaec"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhm5e"] +atlas = ExtResource("1_owkgu") +region = Rect2(605, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5vyk"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osjkg"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da3xl"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqp5q"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edsqn"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pilmq"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo62y"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mnw8"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57s7p"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymuiy"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lvyv"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wvn2"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3e37"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjkej"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2emt"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjrap"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qures"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64ai8"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ckkj"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyra1"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1oeb"] +atlas = ExtResource("1_owkgu") +region = Rect2(847, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lunyu"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb7lq"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apgrq"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra2uj"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oq7q"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q67r"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72nrf"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ja8e"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjiht"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enlyg"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ime0"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a72wa"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k36wr"] +atlas = ExtResource("1_owkgu") +region = Rect2(363, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5k1g"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhkce"] +atlas = ExtResource("1_owkgu") +region = Rect2(484, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17q33"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa6id"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jqog"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybpgx"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn4be"] +atlas = ExtResource("1_owkgu") +region = Rect2(242, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vryja"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6jfe"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umfmw"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkrqc"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iirjt"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2abh"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq27u"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qagun"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2drjq"] +atlas = ExtResource("1_owkgu") +region = Rect2(121, 0, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygmjj"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 888, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh80c"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 777, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7150"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 666, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eojm"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 555, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5mws"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 444, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs0uq"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 333, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtf0j"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 222, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg0oe"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 111, 120, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67rfr"] +atlas = ExtResource("1_owkgu") +region = Rect2(0, 0, 120, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc8vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86o8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeuyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4twyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l445v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvn8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aexym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aor8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4blm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4k17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yagul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2tdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xsjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6poaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4e4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq340") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiwfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smhfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_578yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7arw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wipk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x2xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yufwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka8uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diaec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhm5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5vyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osjkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da3xl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqp5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edsqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pilmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo62y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mnw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57s7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymuiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lvyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wvn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3e37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjkej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2emt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjrap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qures") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64ai8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ckkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyra1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1oeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lunyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb7lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apgrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra2uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oq7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q67r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72nrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ja8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjiht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enlyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ime0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a72wa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k36wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5k1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhkce") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_17q33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa6id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jqog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybpgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn4be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vryja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6jfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umfmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkrqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iirjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2abh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq27u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qagun") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2drjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygmjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh80c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7150") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eojm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5mws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs0uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtf0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg0oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67rfr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caster.tres new file mode 100644 index 0000000..4bea740 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_caster.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://wde4outkqmlk"] + +[ext_resource type="Texture2D" uid="uid://cmdlkfb32pryu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png" id="1_dddeh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wjv7"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si11h"] +atlas = ExtResource("1_dddeh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do6h3"] +atlas = ExtResource("1_dddeh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytqux"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhb3l"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2nnf"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03tq6"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypqmv"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn1l4"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrqsr"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgpq4"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm3cd"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n11ao"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx0jd"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41k3v"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edqm3"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvf63"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27glo"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewesh"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjokg"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwf2o"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtjhq"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpoam"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0ypc"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddoi2"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q72da"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcran"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svcbk"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jheb8"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epm1i"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikaut"] +atlas = ExtResource("1_dddeh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n534q"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t7ij"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnc2c"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiujp"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waw62"] +atlas = ExtResource("1_dddeh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2517"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrhpf"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8b55"] +atlas = ExtResource("1_dddeh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v7cy"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh4rt"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo5k6"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4smb"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dx41"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klmjb"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2rok"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1jsr"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gjth"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el34a"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfijf"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i48g"] +atlas = ExtResource("1_dddeh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wjv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si11h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do6h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytqux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhb3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2nnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03tq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypqmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn1l4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrqsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgpq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm3cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n11ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx0jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41k3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edqm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvf63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27glo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewesh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjokg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwf2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtjhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpoam") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0ypc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddoi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q72da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcran") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svcbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jheb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epm1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikaut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n534q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t7ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnc2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiujp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_waw62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2517") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrhpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8b55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v7cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh4rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo5k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4smb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dx41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klmjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2rok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1jsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gjth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el34a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfijf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i48g") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblade.tres new file mode 100644 index 0000000..8316c59 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblade.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://breqjv0bx4es4"] + +[ext_resource type="Texture2D" uid="uid://bdk6cbwlu203x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png" id="1_mx4q6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqq8p"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvi6a"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vha2b"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vdtp"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2a81"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqltk"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3twq"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k051l"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt8p5"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxdlh"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qqx8"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l8ye"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8son"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnflj"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2usdc"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mnvq"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h26on"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bax1l"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl47g"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6duej"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sih25"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q0lo"] +atlas = ExtResource("1_mx4q6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtv5q"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mlfv"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8or7h"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx4a2"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nabho"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruq61"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbxla"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r55w"] +atlas = ExtResource("1_mx4q6") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx36f"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvcea"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v8hc"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2gy5"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkbf5"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfmmo"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyasw"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y24f"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw83i"] +atlas = ExtResource("1_mx4q6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6yn6"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpey4"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74vws"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0syh"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fx86"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x87v7"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn7mx"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gif3"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpas5"] +atlas = ExtResource("1_mx4q6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wxgi"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp10m"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gfp7"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fb7b"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2mwl"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly7lq"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stiuh"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_carhb"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7f4m"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ebsr"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux60v"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j88ue"] +atlas = ExtResource("1_mx4q6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqq8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvi6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vha2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vdtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2a81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqltk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3twq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k051l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt8p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxdlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qqx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l8ye") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8son") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnflj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2usdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mnvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h26on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bax1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl47g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6duej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sih25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q0lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtv5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mlfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8or7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx4a2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nabho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruq61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbxla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r55w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx36f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvcea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v8hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2gy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkbf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfmmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyasw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y24f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw83i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6yn6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpey4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74vws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0syh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fx86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x87v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn7mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gif3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpas5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wxgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp10m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gfp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fb7b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2mwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly7lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stiuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_carhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7f4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ebsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux60v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j88ue") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblademk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblademk2.tres new file mode 100644 index 0000000..52c50e6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_elyxstormblademk2.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://dj7qn03gdk0j4"] + +[ext_resource type="Texture2D" uid="uid://cyo13r01dw0rl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png" id="1_u0lah"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_187me"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cvne"] +atlas = ExtResource("1_u0lah") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao4mf"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aif2c"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej84o"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4tc6"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q1bi"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7xnb"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq6i5"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seyr5"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gggm0"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2haal"] +atlas = ExtResource("1_u0lah") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mreji"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghfsa"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqgv4"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssroh"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv1qo"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfxey"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61u5f"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o14gt"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ipye"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixoop"] +atlas = ExtResource("1_u0lah") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7woqt"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne1nt"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ns1"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwrca"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdt3h"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt1al"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0r4w"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ulnp"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yja5u"] +atlas = ExtResource("1_u0lah") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv7cf"] +atlas = ExtResource("1_u0lah") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2lbm"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua3l6"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmtwo"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1im5"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgkvq"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4cko"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ce3s"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5rrd"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6ore"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qi5h"] +atlas = ExtResource("1_u0lah") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpd3a"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3pnw"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2gxl"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3nvm"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emr5l"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b6kc"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tve01"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwcla"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsya1"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjda5"] +atlas = ExtResource("1_u0lah") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryvk7"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hv0j"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dtiy"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot4nr"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcnjx"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qje41"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npbat"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66cuw"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifp8j"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7bha"] +atlas = ExtResource("1_u0lah") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_187me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cvne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao4mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aif2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej84o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4tc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q1bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7xnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq6i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seyr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gggm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2haal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mreji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghfsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqgv4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssroh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv1qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfxey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61u5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o14gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ipye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixoop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7woqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne1nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ns1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwrca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdt3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt1al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0r4w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ulnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yja5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv7cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2lbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua3l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmtwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1im5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgkvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4cko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ce3s") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5rrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6ore") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qi5h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpd3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3pnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2gxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3nvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emr5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b6kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tve01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwcla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsya1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjda5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryvk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hv0j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dtiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot4nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcnjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qje41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npbat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66cuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifp8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7bha") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_excelsious.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_excelsious.tres new file mode 100644 index 0000000..12b345b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_excelsious.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://cewtef81crgff"] + +[ext_resource type="Texture2D" uid="uid://cr8pcthtstgbb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png" id="1_f48k4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkjc8"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss5bb"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfiuw"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7ivu"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stynk"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x5om"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de2an"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3nxa"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hp50"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mysdg"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ubmm"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8n67"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4r4a"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyiya"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn7l0"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb2ks"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oy4y"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6asf"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7qj1"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a52wb"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx2sm"] +atlas = ExtResource("1_f48k4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tyb4"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjk34"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pubjg"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_876b0"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmxd0"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3m0s"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vufw"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cahp"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1y06"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otoep"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_holpx"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c270t"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fnl5"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxe1k"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hwui"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq2cd"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mke5f"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx8qm"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gup3a"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srqjo"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2yjw"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es6dh"] +atlas = ExtResource("1_f48k4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_302ma"] +atlas = ExtResource("1_f48k4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e82oe"] +atlas = ExtResource("1_f48k4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkk06"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04khr"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hiei"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6adw7"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idpka"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o5nw"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rr23"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh3bu"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4gsi"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn2m7"] +atlas = ExtResource("1_f48k4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcr41"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uklrt"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8jsw"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut86p"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm1j2"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mshvj"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhbyg"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8pw3"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh2vs"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8fa8"] +atlas = ExtResource("1_f48k4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkjc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss5bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfiuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7ivu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stynk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x5om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de2an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3nxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hp50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mysdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ubmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8n67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4r4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyiya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn7l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb2ks") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oy4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6asf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7qj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a52wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx2sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tyb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjk34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pubjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_876b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmxd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3m0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vufw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cahp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1y06") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_otoep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_holpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c270t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fnl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxe1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hwui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq2cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mke5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx8qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gup3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srqjo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2yjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es6dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_302ma") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e82oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkk06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04khr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hiei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6adw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idpka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o5nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rr23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh3bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4gsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn2m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcr41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uklrt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8jsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut86p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm1j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mshvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhbyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8pw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh2vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8fa8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_fiz.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_fiz.tres new file mode 100644 index 0000000..1cdc67b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_fiz.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://c18jyecsmebwu"] + +[ext_resource type="Texture2D" uid="uid://cr6134vrychyw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png" id="1_c2ybi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibou"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4gku"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylmjr"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd7g0"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6een"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt7sa"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e55tx"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl888"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_663gr"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i4k0"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3get"] +atlas = ExtResource("1_c2ybi") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsh08"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8sgo"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ia12"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l38r"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7tyu"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0jf7"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kkqy"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8er8b"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_larat"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5j8g"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amq1y"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnpjw"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yyb5"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x613v"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxmtp"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ggkp"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l5se"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtr8i"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbi8g"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1tt0"] +atlas = ExtResource("1_c2ybi") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlx1i"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dih61"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh51p"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy2s0"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqsjc"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7bvv"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rgwp"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekqdk"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwupy"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iun6g"] +atlas = ExtResource("1_c2ybi") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xygon"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4amt"] +atlas = ExtResource("1_c2ybi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k8fp"] +atlas = ExtResource("1_c2ybi") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wijcl"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tmuj"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnuw0"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fql77"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m530l"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cat6e"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1smdm"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcmk6"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssplm"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swwcw"] +atlas = ExtResource("1_c2ybi") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abkea"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqp5k"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki1kq"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v47re"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wydi"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dce65"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lhvl"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15asp"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2asmq"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsnnk"] +atlas = ExtResource("1_c2ybi") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4gku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylmjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd7g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6een") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt7sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e55tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl888") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_663gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i4k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3get") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsh08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8sgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ia12") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l38r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7tyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0jf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kkqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8er8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_larat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5j8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amq1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnpjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yyb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x613v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxmtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ggkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l5se") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtr8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbi8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1tt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlx1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dih61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh51p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy2s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqsjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7bvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rgwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwupy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iun6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xygon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4amt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k8fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wijcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tmuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnuw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fql77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m530l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cat6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1smdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcmk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssplm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swwcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abkea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqp5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki1kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v47re") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wydi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dce65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lhvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15asp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2asmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsnnk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_friendsguard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_friendsguard.tres new file mode 100644 index 0000000..cc684b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_friendsguard.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://cco3mq21d5m34"] + +[ext_resource type="Texture2D" uid="uid://2d62rq1oe16e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png" id="1_nw1ye"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t7fi"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp2ot"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebi6n"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bvkk"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghq2a"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lro32"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7h84"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nuwp"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg5if"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o0pd"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37vmf"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0nsj"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0rs5"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unjdu"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xn8p"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v0wb"] +atlas = ExtResource("1_nw1ye") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n70uj"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgje3"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od7pt"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3x33"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60fk2"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boqyx"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3re37"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x7h1"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fo3g"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmlwb"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsay8"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kltg"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l7vc"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtyyy"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybmg1"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3igc"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pejxw"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmi1e"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbpik"] +atlas = ExtResource("1_nw1ye") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sxvr"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhdv6"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cam6d"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5euh"] +atlas = ExtResource("1_nw1ye") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmq6k"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_480xb"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni8xt"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prwdd"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6utvd"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k53w"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mkhk"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42oqy"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i27nj"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv2l8"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5tjw"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_memd6"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj81w"] +atlas = ExtResource("1_nw1ye") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8iai"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pfeu"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnbjb"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5m14"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cnio"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks8d7"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ykmv"] +atlas = ExtResource("1_nw1ye") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvgvo"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb7my"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj2fy"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6js8"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_linsm"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vr24"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppsr5"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6qin"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi3uc"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpm15"] +atlas = ExtResource("1_nw1ye") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t7fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp2ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebi6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bvkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghq2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lro32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7h84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nuwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg5if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o0pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37vmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0nsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0rs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unjdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xn8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v0wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n70uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgje3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od7pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3x33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60fk2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_boqyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3re37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x7h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fo3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmlwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsay8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kltg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l7vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtyyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybmg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3igc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pejxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmi1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbpik") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sxvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhdv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cam6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5euh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmq6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_480xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni8xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prwdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6utvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k53w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mkhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42oqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i27nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv2l8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5tjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_memd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj81w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8iai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pfeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnbjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5m14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cnio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks8d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ykmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvgvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb7my") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj2fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6js8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_linsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vr24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppsr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6qin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi3uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpm15") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general.tres new file mode 100644 index 0000000..c8634df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general.tres @@ -0,0 +1,735 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://lej16sledx8r"] + +[ext_resource type="Texture2D" uid="uid://n84di1tbxs80" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png" id="1_c1gpi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqpib"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye6b2"] +atlas = ExtResource("1_c1gpi") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e4hc"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekq2l"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6iq5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ke1"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuddr"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t5vu"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sfdm"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fp3r"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qweu"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijfw5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rexrc"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojkpm"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmbq4"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wa03"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7wq8"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6lt5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i34rc"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djl7k"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kg7m"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84nr4"] +atlas = ExtResource("1_c1gpi") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7juuj"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si1t4"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaw2y"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ogwt"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arv8k"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to0n6"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lcr"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbqpa"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dbky"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oorr0"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k21yq"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxrek"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k36kl"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kirbx"] +atlas = ExtResource("1_c1gpi") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vatgh"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v435d"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bibxi"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_robgi"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnava"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1bka"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f64f"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbdeh"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epo4d"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esifl"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1y5s"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uywf8"] +atlas = ExtResource("1_c1gpi") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xluun"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqniu"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8xmh"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x03xi"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8j7j"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awvbk"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yiyl"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f4ex"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shib2"] +atlas = ExtResource("1_c1gpi") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jspuf"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anbsd"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7udlt"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm876"] +atlas = ExtResource("1_c1gpi") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flydd"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c5wb"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilee5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q15wb"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dau31"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idt5m"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phpt6"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4jin"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtfts"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_772ef"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bouaw"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh3ik"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxgef"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3jew"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5ruw"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftxvi"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74hlu"] +atlas = ExtResource("1_c1gpi") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkjm5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oiva"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwu5u"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y37qd"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsmi3"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfrm4"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8rhh"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_581j5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fihth"] +atlas = ExtResource("1_c1gpi") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooccg"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpedg"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o010p"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2gwp"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cfpg"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx4j5"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5mj6"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kc16"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk8kb"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl1eh"] +atlas = ExtResource("1_c1gpi") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqpib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye6b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e4hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekq2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6iq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ke1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuddr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t5vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sfdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fp3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qweu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijfw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rexrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojkpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmbq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wa03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7wq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6lt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i34rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djl7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kg7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84nr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7juuj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_si1t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaw2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ogwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arv8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to0n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbqpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dbky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oorr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k21yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxrek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k36kl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kirbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vatgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v435d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bibxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_robgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnava") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1bka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f64f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbdeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epo4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esifl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1y5s") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uywf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xluun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqniu") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8xmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x03xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8j7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awvbk") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yiyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f4ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shib2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jspuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anbsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7udlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm876") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flydd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c5wb") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilee5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q15wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dau31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idt5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phpt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4jin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtfts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_772ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bouaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh3ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxgef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3jew") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5ruw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftxvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74hlu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkjm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oiva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwu5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y37qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsmi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfrm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8rhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_581j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fihth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooccg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpedg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o010p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2gwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cfpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx4j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5mj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kc16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk8kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl1eh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general_skinroguelegacy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general_skinroguelegacy.tres new file mode 100644 index 0000000..0c02b06 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_general_skinroguelegacy.tres @@ -0,0 +1,833 @@ +[gd_resource type="SpriteFrames" load_steps=113 format=3 uid="uid://ci2fl7is2e7p"] + +[ext_resource type="Texture2D" uid="uid://c7fsnx750xh5k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png" id="1_g1hrc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_du0b4"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8wbx"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7eq8"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuraq"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h7xo"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5ixj"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqfm"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c01tq"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ajsg"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw84o"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a6uk"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_armk7"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61elo"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8khhb"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiaks"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7csh"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6uo6"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpvvq"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxcxb"] +atlas = ExtResource("1_g1hrc") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gljbd"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb8bq"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhj6a"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv6t5"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6hmo"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfuai"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l02c"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14do3"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e688m"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wom3k"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkhkq"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms4hn"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7iev"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyw5c"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7o1o"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u1br"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm4mg"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evuj7"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxnbg"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lf7t"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aouri"] +atlas = ExtResource("1_g1hrc") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heskj"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kth8g"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c3ui"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr74g"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmair"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0vhd"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4veb"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yajhd"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amd01"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee5d1"] +atlas = ExtResource("1_g1hrc") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22nkl"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwi4a"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4n73"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv7um"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iref5"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7rwh"] +atlas = ExtResource("1_g1hrc") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs8s2"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u5si"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbu0y"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mf3t"] +atlas = ExtResource("1_g1hrc") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw66y"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6s0j"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouuff"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy0as"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84q1q"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la1u7"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvbr"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wee4"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lhje"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aq6w"] +atlas = ExtResource("1_g1hrc") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q0lp"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbdia"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu4e4"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn27n"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r62jp"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd84l"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn4r0"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvgu0"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb5xk"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehgrb"] +atlas = ExtResource("1_g1hrc") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g5sr"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yskx"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btk4i"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl0v8"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdc8d"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erehm"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7521a"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4dn"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odipy"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ontew"] +atlas = ExtResource("1_g1hrc") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or84h"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fv5u"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_simso"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is28b"] +atlas = ExtResource("1_g1hrc") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32t8p"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntju0"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jty2"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rflpu"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sytgj"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xunpy"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa0qp"] +atlas = ExtResource("1_g1hrc") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv3d2"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abhfn"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihvig"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibijb"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gdsc"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htoum"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hcrn"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2g10"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45yv6"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ohh"] +atlas = ExtResource("1_g1hrc") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_du0b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8wbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7eq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuraq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h7xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5ixj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c01tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ajsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw84o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a6uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_armk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61elo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8khhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiaks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7csh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6uo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpvvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxcxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gljbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb8bq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhj6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv6t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6hmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfuai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l02c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14do3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e688m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wom3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkhkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms4hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7iev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyw5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7o1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u1br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm4mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evuj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxnbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lf7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aouri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heskj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kth8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c3ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr74g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmair") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0vhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4veb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yajhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amd01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee5d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22nkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwi4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4n73") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv7um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iref5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7rwh") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs8s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u5si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbu0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mf3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw66y") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6s0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouuff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy0as") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_84q1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la1u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pvbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wee4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lhje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aq6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q0lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbdia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu4e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn27n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r62jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd84l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn4r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvgu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb5xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehgrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g5sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yskx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btk4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl0v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdc8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erehm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7521a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf4dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odipy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ontew") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_or84h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fv5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_simso") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_is28b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32t8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntju0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jty2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rflpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sytgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xunpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa0qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv3d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abhfn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihvig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibijb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gdsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htoum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hcrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2g10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45yv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ohh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_grandmasterzir.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_grandmasterzir.tres new file mode 100644 index 0000000..8c2769e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_grandmasterzir.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://by3to8n2exsts"] + +[ext_resource type="Texture2D" uid="uid://dklg588ix57a7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png" id="1_k1ytl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfw1r"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwmtd"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv48s"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbxts"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbiuq"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in48f"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkn2y"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vg7i"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33hop"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqq0c"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iuk6"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnmfl"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d501o"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib0ny"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4uot"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiyw7"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr4pp"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ylr"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_142m5"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpubg"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vcot"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ss4r"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngvdg"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aswt"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fftsd"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alycj"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6jx4"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5xr6"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_510bd"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbonc"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peqx8"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j71sw"] +atlas = ExtResource("1_k1ytl") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0tll"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u4v8"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mfgn"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d24e1"] +atlas = ExtResource("1_k1ytl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyr62"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgp4f"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdt0y"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfr4"] +atlas = ExtResource("1_k1ytl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2gus"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqt3c"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6cl3"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb1m1"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cb3a"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6xdr"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r555"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yv2v"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lduem"] +atlas = ExtResource("1_k1ytl") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1o5v"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2awj"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru1i4"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkw1r"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jngtg"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nyye"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v0gw"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmf3n"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njaqs"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqchl"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpxib"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tnpg"] +atlas = ExtResource("1_k1ytl") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfw1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwmtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv48s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbxts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbiuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in48f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkn2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vg7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33hop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqq0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iuk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnmfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d501o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib0ny") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4uot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiyw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr4pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ylr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_142m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpubg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vcot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ss4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngvdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aswt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fftsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alycj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6jx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5xr6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_510bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbonc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peqx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j71sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0tll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u4v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mfgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d24e1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyr62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgp4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdt0y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2gus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqt3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6cl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb1m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cb3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6xdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r555") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yv2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lduem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1o5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2awj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru1i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkw1r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jngtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nyye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v0gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmf3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njaqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqchl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpxib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tnpg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_groundbreaker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_groundbreaker.tres new file mode 100644 index 0000000..e201af0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_groundbreaker.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://csxf2ajmwd1s6"] + +[ext_resource type="Texture2D" uid="uid://df08o1rbevaq8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png" id="1_3fjt4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjh8f"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al5pj"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1833, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7x81"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eex6p"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5puq"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yf2s"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yww5q"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n7wy"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rpel"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1692, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qlu2"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrpol"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sirtv"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3by5w"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u61x3"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iafyn"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0d5p"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1551, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2toek"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjlab"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f71cr"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06e87"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1jir"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viyfb"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngipt"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1410, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhtyo"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym78g"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoj8f"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47grh"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qep0n"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr6qn"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3y8k"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmk50"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svk40"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5tao"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m5g5"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2pmy"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp6fr"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixia5"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt0vu"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs0p5"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p8uo"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc1g0"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jea7v"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37y2i"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35fpv"] +atlas = ExtResource("1_3fjt4") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmien"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fy0y"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q4kw"] +atlas = ExtResource("1_3fjt4") +region = Rect2(1833, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogoe7"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cvcf"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3eea"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cy8f"] +atlas = ExtResource("1_3fjt4") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xwsn"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptf5k"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrlbu"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jywhm"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_domck"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44idv"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wigkt"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfssq"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3cqd"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijqx3"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpaix"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fkc4"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1dws"] +atlas = ExtResource("1_3fjt4") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttui8"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3kw2"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma42v"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpch0"] +atlas = ExtResource("1_3fjt4") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa8e7"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvka3"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l3x2"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kku8f"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jys22"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sak7w"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx88j"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqqhi"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ippye"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hopi"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf150"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o04b0"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrnro"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_086g2"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd2op"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj5wh"] +atlas = ExtResource("1_3fjt4") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jb27"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_accft"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pcpd"] +atlas = ExtResource("1_3fjt4") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kpnn"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmopg"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpgge"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pep8"] +atlas = ExtResource("1_3fjt4") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sulr8"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar5fy"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y4su"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_behlj"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe36t"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyp7h"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mma08"] +atlas = ExtResource("1_3fjt4") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjh8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al5pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7x81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eex6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5puq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yf2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yww5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n7wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rpel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qlu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrpol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sirtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3by5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u61x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iafyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0d5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2toek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjlab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f71cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06e87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1jir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viyfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngipt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhtyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym78g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoj8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47grh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qep0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr6qn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3y8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmk50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svk40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5tao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m5g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2pmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp6fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixia5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt0vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs0p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p8uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc1g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jea7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37y2i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_35fpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmien") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fy0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q4kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogoe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cvcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3eea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cy8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xwsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptf5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrlbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jywhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_domck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44idv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wigkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfssq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3cqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijqx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpaix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fkc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1dws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttui8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3kw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma42v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpch0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa8e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvka3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l3x2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kku8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jys22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sak7w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx88j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqqhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ippye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hopi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf150") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o04b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrnro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_086g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd2op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj5wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jb27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_accft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pcpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kpnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmopg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpgge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pep8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sulr8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar5fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y4su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_behlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe36t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyp7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mma08") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_gryphinox.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_gryphinox.tres new file mode 100644 index 0000000..499ccfd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_gryphinox.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://ct6w856hx8bqj"] + +[ext_resource type="Texture2D" uid="uid://cbuk4xs6fgwny" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png" id="1_dpg6k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kri26"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m52x"] +atlas = ExtResource("1_dpg6k") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lst4m"] +atlas = ExtResource("1_dpg6k") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slmrt"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6uqy"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68hge"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0luax"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di6k0"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdqu6"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpdoc"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ohi7"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf4e6"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqc4o"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc28e"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhkhi"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50opb"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0yo8"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46yo3"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82ynt"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m6l0"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbrd1"] +atlas = ExtResource("1_dpg6k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii6vj"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtbcr"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmpi3"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdqyj"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5lsa"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymk73"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrq4s"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfhq3"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in3a7"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43qvg"] +atlas = ExtResource("1_dpg6k") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjvpt"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8dtu"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow5cl"] +atlas = ExtResource("1_dpg6k") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c577w"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qofx1"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdud"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm4sj"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loam2"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q87qf"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck1vu"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xow0"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ow7l"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vytc0"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nbyb"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_767m0"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peghs"] +atlas = ExtResource("1_dpg6k") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1jsm"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stl7u"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oc7j"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ani8x"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3c6x"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0uwg"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx8h3"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkhts"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgqn5"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7h08"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvki2"] +atlas = ExtResource("1_dpg6k") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1wdd"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6hiw"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frxvu"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4xgd"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cpht"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c40eg"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tddy"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycljo"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si4w6"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovyvw"] +atlas = ExtResource("1_dpg6k") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11sg3"] +atlas = ExtResource("1_dpg6k") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5caf"] +atlas = ExtResource("1_dpg6k") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnf3k"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyl1w"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg6rd"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mup7v"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keyob"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h47s2"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec27n"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjj4u"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emond"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3dei"] +atlas = ExtResource("1_dpg6k") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kri26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m52x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lst4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slmrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6uqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68hge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0luax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di6k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdqu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpdoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ohi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf4e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqc4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc28e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhkhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50opb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0yo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46yo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82ynt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m6l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbrd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii6vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtbcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmpi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdqyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5lsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymk73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrq4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfhq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in3a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43qvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjvpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8dtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow5cl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c577w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qofx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxdud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm4sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loam2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q87qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck1vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xow0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ow7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vytc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nbyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_767m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peghs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1jsm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_stl7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oc7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ani8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3c6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0uwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx8h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkhts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgqn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7h08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvki2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1wdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6hiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frxvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4xgd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cpht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c40eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tddy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycljo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si4w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovyvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11sg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5caf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnf3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyl1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg6rd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mup7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keyob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h47s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec27n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjj4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emond") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3dei") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_invincibuddy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_invincibuddy.tres new file mode 100644 index 0000000..57f98a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_invincibuddy.tres @@ -0,0 +1,834 @@ +[gd_resource type="SpriteFrames" load_steps=116 format=3 uid="uid://3bpqc7jejnad"] + +[ext_resource type="Texture2D" uid="uid://yq7w8lpa7gnt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png" id="1_qt3j7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ios2n"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy1o8"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6n54"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvyha"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kotdg"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk0qw"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pex2i"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttwdj"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2xda"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ads"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvcko"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j02it"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaovu"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5det6"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_livfw"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndsur"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fefto"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc3j3"] +atlas = ExtResource("1_qt3j7") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrgtx"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbj7c"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5ugn"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t5vo"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djj3w"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfqxk"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5iqd"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqa2"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bukp1"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i12k"] +atlas = ExtResource("1_qt3j7") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hvv4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0lu8"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb37k"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwbef"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q05ue"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sb8r"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c5i1"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omo5m"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eytwl"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ex5r"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lru3c"] +atlas = ExtResource("1_qt3j7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4pvb"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytgj6"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmuox"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7kgh"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvb0m"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4irfu"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phakb"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n01fk"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxoom"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pipfl"] +atlas = ExtResource("1_qt3j7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnjrh"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwi3q"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6udm"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8twc"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgf8m"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e2ly"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw26t"] +atlas = ExtResource("1_qt3j7") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrm2o"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ibt"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn5sv"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5yhi"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_binsa"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhiw4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhcr4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oau4c"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arhpb"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6kw1"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2dt4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al20f"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjdho"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anonj"] +atlas = ExtResource("1_qt3j7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb2qq"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh2dp"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruap8"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrwq4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wre7h"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxbuj"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ygxc"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0yxi"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o11di"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im1gm"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56jp2"] +atlas = ExtResource("1_qt3j7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6hw8"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgapq"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wily6"] +atlas = ExtResource("1_qt3j7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvieh"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m66cg"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x13i"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_creps"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of5mv"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prqxp"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w31my"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dor6p"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01dl4"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh0os"] +atlas = ExtResource("1_qt3j7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13fok"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krovg"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3trbm"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo7un"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yxqc"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r4mw"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcwa1"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu0qc"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb51n"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nupt"] +atlas = ExtResource("1_qt3j7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vw6b"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vej20"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0wfj"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44we6"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuvq8"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egid3"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16u2g"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcjjs"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skpng"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp5jh"] +atlas = ExtResource("1_qt3j7") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ios2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy1o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6n54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvyha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kotdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk0qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pex2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttwdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2xda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ads") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvcko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j02it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaovu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5det6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_livfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndsur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fefto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc3j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrgtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbj7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5ugn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t5vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djj3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfqxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5iqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bukp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i12k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hvv4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0lu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb37k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwbef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q05ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sb8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c5i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omo5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eytwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ex5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lru3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4pvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytgj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmuox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7kgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvb0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4irfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phakb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n01fk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxoom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pipfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnjrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwi3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6udm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8twc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgf8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e2ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw26t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrm2o") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ibt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn5sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5yhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_binsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhiw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhcr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oau4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arhpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6kw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2dt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al20f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjdho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anonj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb2qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh2dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruap8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrwq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wre7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxbuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ygxc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0yxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o11di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im1gm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56jp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6hw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgapq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wily6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvieh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m66cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x13i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_creps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of5mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prqxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w31my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dor6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01dl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh0os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13fok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krovg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3trbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo7un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yxqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r4mw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcwa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu0qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb51n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nupt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vw6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vej20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0wfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44we6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuvq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egid3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16u2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcjjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skpng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp5jh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffeguardian.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffeguardian.tres new file mode 100644 index 0000000..c2f700c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffeguardian.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://cewt4xid6bvmn"] + +[ext_resource type="Texture2D" uid="uid://dxaxn878g5kxr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png" id="1_islvs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfoi4"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66b6u"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4320y"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox5fs"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df8cb"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae8tb"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvfke"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg21v"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwiqp"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vylh"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ial3r"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy20q"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm21o"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgcck"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uonbr"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raofs"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb88e"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pb1l"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2pbd"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y814"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m8t8"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puab0"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bohy"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quvcq"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y565"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s2m5"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mm58"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl53k"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0myf"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu64r"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0xaq"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmgtl"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0rgf"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp5gx"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4iu8"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af04g"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8wst"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2kou"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8n8m"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkiax"] +atlas = ExtResource("1_islvs") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo60w"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ynvr"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnqlc"] +atlas = ExtResource("1_islvs") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh755"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04sli"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2c8b"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm8sp"] +atlas = ExtResource("1_islvs") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wxrs"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8hqo"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihxvr"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nl7g"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usxhl"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldw0b"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82nv2"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rfy5"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc5vf"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3egw"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnh6q"] +atlas = ExtResource("1_islvs") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l2kg"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht5eo"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swn58"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1kva"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30f05"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2xaj"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xwll"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3elj"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lksx"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyjvw"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhh5i"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bejhy"] +atlas = ExtResource("1_islvs") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfoi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66b6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4320y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox5fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df8cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae8tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvfke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg21v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwiqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vylh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ial3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy20q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm21o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgcck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uonbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raofs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb88e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pb1l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2pbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y814") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m8t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puab0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bohy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quvcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y565") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s2m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mm58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl53k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0myf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu64r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0xaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmgtl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0rgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp5gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4iu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af04g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8wst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2kou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8n8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkiax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo60w") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ynvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnqlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh755") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_04sli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2c8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm8sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8hqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihxvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nl7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usxhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldw0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82nv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rfy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc5vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3egw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnh6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l2kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht5eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swn58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1kva") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_30f05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2xaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xwll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3elj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lksx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyjvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhh5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bejhy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffemonument.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffemonument.tres new file mode 100644 index 0000000..ec6d0e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ironcliffemonument.tres @@ -0,0 +1,493 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://56xvo4y4jr"] + +[ext_resource type="Texture2D" uid="uid://bjeidr8jia0kt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png" id="1_8np8l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfaes"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rthwp"] +atlas = ExtResource("1_8np8l") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntpfg"] +atlas = ExtResource("1_8np8l") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idbwc"] +atlas = ExtResource("1_8np8l") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrt6j"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2o6b"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbpt"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vw8l"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trtye"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6nxp"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bux3i"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55qjt"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rm23"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ecm"] +atlas = ExtResource("1_8np8l") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12xl5"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1thow"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6cjm"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vyii"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gejac"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuqvd"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxmy0"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rydt"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7khg5"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pplod"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxacr"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w7lh"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj4fj"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7obys"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6c8r"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok3n5"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwcli"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y2hb"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vpw0"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nwp5"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83s81"] +atlas = ExtResource("1_8np8l") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uonru"] +atlas = ExtResource("1_8np8l") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpjor"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp83u"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk28t"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg8sj"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mx32"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0mq3"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edxp5"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6cgi"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3doc"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e44i3"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u06v"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy4s1"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc30l"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr4aa"] +atlas = ExtResource("1_8np8l") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqjiy"] +atlas = ExtResource("1_8np8l") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svkju"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7gn"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt7qa"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6570"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfs6v"] +atlas = ExtResource("1_8np8l") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bypg"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gajc3"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ss6y"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abhvm"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uqbc"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlics"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yc03"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nofcp"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py3om"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olpcj"] +atlas = ExtResource("1_8np8l") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfaes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rthwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntpfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idbwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrt6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2o6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vw8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trtye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6nxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bux3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55qjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rm23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ecm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12xl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1thow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6cjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vyii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gejac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuqvd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxmy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rydt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7khg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pplod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxacr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w7lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj4fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7obys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6c8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok3n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwcli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y2hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vpw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nwp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83s81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uonru") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpjor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp83u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk28t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg8sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mx32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0mq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edxp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6cgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3doc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e44i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u06v") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy4s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc30l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr4aa") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqjiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svkju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt7qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6570") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfs6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bypg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gajc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ss6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abhvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uqbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlics") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yc03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nofcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py3om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olpcj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kaisergladiator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kaisergladiator.tres new file mode 100644 index 0000000..1693752 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kaisergladiator.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://1vbtp4x4eedu"] + +[ext_resource type="Texture2D" uid="uid://dsu1jpf568e6a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png" id="1_h0e2n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdwaf"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mvxf"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iab0n"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yhrf"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tifo"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpyye"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jimp0"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjxxm"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52mrn"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wcod"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxj05"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trd4f"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en6es"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy222"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jepji"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m5ry"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_222s2"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7jle"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpo2g"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dkmy"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcm16"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2c8n"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofb76"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1wyw"] +atlas = ExtResource("1_h0e2n") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y84s"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b1qp"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0omc"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mda5g"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re416"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okt8n"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjr31"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu6kn"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuutt"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llpr5"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag0nm"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvhjo"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otet5"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufx3g"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw0kn"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2a8u"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x6ry"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uorc0"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i57ft"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyddg"] +atlas = ExtResource("1_h0e2n") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3n2n"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8vnj"] +atlas = ExtResource("1_h0e2n") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky6br"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etprw"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8mej"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3mj8"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71evo"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s403w"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ev3r"] +atlas = ExtResource("1_h0e2n") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3rj3"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f65a0"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ije73"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1mcp"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye8wn"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sjhx"] +atlas = ExtResource("1_h0e2n") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqm1h"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hfjo"] +atlas = ExtResource("1_h0e2n") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyhaf"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea3kk"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv3ki"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihv2k"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ls7o"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvo87"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igpi8"] +atlas = ExtResource("1_h0e2n") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7qc"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgp8j"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly8ex"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3taw"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt812"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv2ck"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cgpl"] +atlas = ExtResource("1_h0e2n") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd1ch"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v342w"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt0bd"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3h6x"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f4nr"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiktv"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb1e3"] +atlas = ExtResource("1_h0e2n") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdwaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mvxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iab0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yhrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tifo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpyye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jimp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjxxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52mrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wcod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxj05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trd4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en6es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy222") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jepji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m5ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_222s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7jle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpo2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dkmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcm16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2c8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofb76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1wyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y84s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b1qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0omc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mda5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okt8n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjr31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu6kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuutt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llpr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag0nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvhjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otet5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufx3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw0kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2a8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x6ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uorc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i57ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyddg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3n2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8vnj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky6br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etprw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8mej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3mj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71evo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s403w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ev3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3rj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f65a0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ije73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1mcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye8wn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sjhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqm1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hfjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyhaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea3kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv3ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihv2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ls7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvo87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igpi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgp8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly8ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3taw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt812") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv2ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cgpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd1ch") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v342w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt0bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3h6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f4nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiktv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb1e3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kingsguard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kingsguard.tres new file mode 100644 index 0000000..c52912f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_kingsguard.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://4721astbouyd"] + +[ext_resource type="Texture2D" uid="uid://dqs3pn8x8ecwi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png" id="1_m1clq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1mci"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj3ex"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hihhe"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv8yu"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amsnd"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk010"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqeff"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urpr5"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo7re"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1vr5"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hv7p"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pdyw"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4sb8"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ygas"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm42m"] +atlas = ExtResource("1_m1clq") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfb3r"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nddy4"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsml1"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jfou"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l785"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1kgd"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blwwm"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhhob"] +atlas = ExtResource("1_m1clq") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mhaf"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vd4i"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eede"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogfy4"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwgfo"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rh2b"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb4wq"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32itl"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpnus"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_445m7"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ou6t"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thd4x"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iarg"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4phlj"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf3wl"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u50ox"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo0gf"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey3tp"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rmsy"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8odbf"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfgjv"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uspt8"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rxf0"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k171t"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdv4b"] +atlas = ExtResource("1_m1clq") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fmtv"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfnrh"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apqxo"] +atlas = ExtResource("1_m1clq") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4pas"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsrvv"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvju5"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agfet"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u2ca"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpw26"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgkga"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4fcg"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qy7r"] +atlas = ExtResource("1_m1clq") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0a02"] +atlas = ExtResource("1_m1clq") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5iy1"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8na5m"] +atlas = ExtResource("1_m1clq") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo2do"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcs4v"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dyi7"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp6mw"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv76p"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6lv0"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap85x"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1twx4"] +atlas = ExtResource("1_m1clq") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v8b8"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y578g"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3xsj"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk6e6"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kmh5"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en0ei"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiesm"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w660l"] +atlas = ExtResource("1_m1clq") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpkmr"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mck8"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp30c"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gblrr"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q27rn"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn3xg"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v3he"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ji2m"] +atlas = ExtResource("1_m1clq") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgiv8"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af1lr"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhjjn"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbgv3"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x06i"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf8x5"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir0ed"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20fek"] +atlas = ExtResource("1_m1clq") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1mci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj3ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hihhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv8yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amsnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk010") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqeff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urpr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo7re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1vr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hv7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pdyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4sb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ygas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm42m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfb3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nddy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsml1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jfou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l785") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1kgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blwwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhhob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mhaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vd4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eede") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogfy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwgfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rh2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb4wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32itl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpnus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_445m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ou6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thd4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iarg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4phlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf3wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u50ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo0gf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey3tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rmsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8odbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfgjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uspt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rxf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k171t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdv4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fmtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfnrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apqxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4pas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsrvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvju5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agfet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u2ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpw26") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgkga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4fcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qy7r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0a02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5iy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8na5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo2do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcs4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dyi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp6mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv76p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6lv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap85x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1twx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v8b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y578g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3xsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk6e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kmh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en0ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiesm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w660l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mck8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp30c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gblrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q27rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn3xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v3he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ji2m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgiv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af1lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhjjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbgv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x06i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf8x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir0ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20fek") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_leovoyant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_leovoyant.tres new file mode 100644 index 0000000..41d8c30 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_leovoyant.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://cysp0tjr5dwnj"] + +[ext_resource type="Texture2D" uid="uid://bh1ltx3yimyoq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png" id="1_jua8l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_64j4v"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0vnk"] +atlas = ExtResource("1_jua8l") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5erv"] +atlas = ExtResource("1_jua8l") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5gpy"] +atlas = ExtResource("1_jua8l") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfaeb"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoejt"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yr24"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayiu6"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46hq5"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx2i1"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke4ms"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amw6k"] +atlas = ExtResource("1_jua8l") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcu6t"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrcww"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwxjk"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgod8"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdbiq"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3e5r"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cch06"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og7sg"] +atlas = ExtResource("1_jua8l") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ety66"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roe8t"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo17p"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riypv"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k6oj"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocfhu"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7hyo"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk7ym"] +atlas = ExtResource("1_jua8l") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl3pw"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iptgn"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnblb"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feisg"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt8yd"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5alw"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kr4n"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjkuo"] +atlas = ExtResource("1_jua8l") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul2c6"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2l3x"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emprn"] +atlas = ExtResource("1_jua8l") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ohk"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ney0e"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86wg4"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqepq"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0ugy"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrfqc"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v14ie"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5388"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy1oa"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3or7d"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmlww"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf3rj"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bajbg"] +atlas = ExtResource("1_jua8l") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj1mp"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yyut"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cviil"] +atlas = ExtResource("1_jua8l") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1sbm"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbuun"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbokh"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2x3h"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q5ul"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl31o"] +atlas = ExtResource("1_jua8l") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqqm8"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xpnp"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04xi6"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4otr"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ab3s"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu2h4"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6p8d"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vkrx"] +atlas = ExtResource("1_jua8l") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdoao"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmr2s"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qonk1"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1xl7"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swqen"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh821"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8uqd"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62y2w"] +atlas = ExtResource("1_jua8l") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64j4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0vnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5erv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5gpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfaeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoejt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yr24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayiu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46hq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx2i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke4ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amw6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcu6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrcww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwxjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgod8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdbiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3e5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cch06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og7sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ety66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roe8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo17p") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_riypv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k6oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocfhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7hyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk7ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl3pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iptgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnblb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feisg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt8yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5alw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kr4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjkuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul2c6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2l3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emprn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ohk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ney0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86wg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqepq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0ugy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrfqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v14ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5388") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy1oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3or7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmlww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf3rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bajbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj1mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yyut") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cviil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1sbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbuun") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbokh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2x3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q5ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl31o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqqm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xpnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04xi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4otr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ab3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu2h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6p8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vkrx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdoao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmr2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qonk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1xl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swqen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh821") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8uqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62y2w") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_mech.tres new file mode 100644 index 0000000..b654958 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_mech.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://dvmqivfiu5p6"] + +[ext_resource type="Texture2D" uid="uid://cxxq2kdxydmbd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png" id="1_nwsh5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ynn"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxi6i"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs8ks"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2m82"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvpkl"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpbuk"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4qlm"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rtwy"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geojk"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ecgm"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l83e"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg81g"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tal62"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvyp"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec7gr"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr8rc"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_borwk"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsg83"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahxf4"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8elfh"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa21v"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p0d1"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqo5k"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmxja"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuvai"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4emi"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ioqj"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjivw"] +atlas = ExtResource("1_nwsh5") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeut0"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cbhn"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82btx"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg7lq"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m56h8"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fvi7"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnbkx"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbfnd"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdrcp"] +atlas = ExtResource("1_nwsh5") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1si25"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7mj3"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w65m"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4h2t"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnur4"] +atlas = ExtResource("1_nwsh5") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hl3u"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m155"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfftx"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1eti"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yr55"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_far56"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eblc4"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlp4n"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clard"] +atlas = ExtResource("1_nwsh5") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uonrr"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onctd"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykhhc"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix8mx"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhpsc"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsgbd"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjwma"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxqyf"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ouc"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc2sf"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kebma"] +atlas = ExtResource("1_nwsh5") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28hp6"] +atlas = ExtResource("1_nwsh5") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn31o"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj6vj"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u2sc"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8tsw"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqwk8"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unsco"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbptx"] +atlas = ExtResource("1_nwsh5") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ky5"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x12p6"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joej5"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5rkd"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih2ru"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a1r8"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty4dt"] +atlas = ExtResource("1_nwsh5") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3gq5"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tidv"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs7y3"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0lpr"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbk0o"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16806"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ejym"] +atlas = ExtResource("1_nwsh5") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ynn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxi6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs8ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2m82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvpkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpbuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4qlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rtwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geojk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ecgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l83e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg81g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tal62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pvyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec7gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr8rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_borwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsg83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahxf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8elfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa21v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p0d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqo5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmxja") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuvai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4emi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ioqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjivw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeut0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cbhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82btx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg7lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m56h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fvi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnbkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbfnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdrcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1si25") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7mj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w65m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4h2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hl3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m155") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfftx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1eti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yr55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_far56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eblc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlp4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clard") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uonrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onctd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykhhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix8mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhpsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsgbd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjwma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxqyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ouc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc2sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kebma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28hp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn31o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj6vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u2sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8tsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqwk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unsco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbptx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ky5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x12p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joej5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5rkd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih2ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a1r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty4dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3gq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tidv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs7y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0lpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbk0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16806") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ejym") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_melee.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_melee.tres new file mode 100644 index 0000000..e62faa4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_melee.tres @@ -0,0 +1,414 @@ +[gd_resource type="SpriteFrames" load_steps=56 format=3 uid="uid://mmdstcuhtofy"] + +[ext_resource type="Texture2D" uid="uid://87vyxtbeg2uw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png" id="1_ex4ym"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dgn0"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qga6w"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mqu1"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw87a"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cp7g"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oot0i"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhg4e"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlrtq"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_binm4"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nahul"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rxcq"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq6ay"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8cd5"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiqop"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf3uh"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptd2q"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14irq"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsadw"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rym56"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tua0d"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojtk0"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iiuy"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4k2l"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3pqp"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ps7y"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0n8r"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djgog"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0tn1"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pidql"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d4my"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_506e7"] +atlas = ExtResource("1_ex4ym") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b72v"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch4c3"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbh07"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lrsx"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edtyr"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij0bn"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8pje"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biqi7"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4vof"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykj8a"] +atlas = ExtResource("1_ex4ym") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyl43"] +atlas = ExtResource("1_ex4ym") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeb0b"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ortwu"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31u6g"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b55in"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5j8i"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hb85"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57jvv"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01g7h"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5rtw"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7ich"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugc0k"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3gwn"] +atlas = ExtResource("1_ex4ym") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dgn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qga6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mqu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw87a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cp7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oot0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhg4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlrtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_binm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nahul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rxcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq6ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8cd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiqop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf3uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptd2q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_14irq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsadw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rym56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tua0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojtk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iiuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4k2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3pqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ps7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0n8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djgog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0tn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pidql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d4my") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_506e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b72v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch4c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbh07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lrsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edtyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij0bn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8pje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biqi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4vof") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykj8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyl43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeb0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ortwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31u6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b55in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5j8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hb85") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_57jvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01g7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5rtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7ich") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugc0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3gwn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper.tres new file mode 100644 index 0000000..8d5e890 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://swtjojkdvecp"] + +[ext_resource type="Texture2D" uid="uid://dggvx63i76g81" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png" id="1_2a0is"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3t06"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mall"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gy1o"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80qm6"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmems"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg1gb"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rspul"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyvvj"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vadib"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0qkm"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob1dq"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jkkj"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r083t"] +atlas = ExtResource("1_2a0is") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i05cx"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6l3v"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oprs0"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puera"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay6jx"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juopd"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sry8y"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v440y"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ufv3"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8g1g"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks6xw"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f25kk"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gisw0"] +atlas = ExtResource("1_2a0is") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rmgv"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bc2g"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1yai"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8c6d"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8aod"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3s8t"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8j6s"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3iav"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxf1c"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw1ag"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r73f"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1608"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgur1"] +atlas = ExtResource("1_2a0is") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt28b"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwqau"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql4ti"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvdq5"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pt4n"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46jk1"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t2q5"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax8u2"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i25k"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh5jy"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fshn"] +atlas = ExtResource("1_2a0is") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsj36"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyqo4"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xvbh"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n20m8"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6b6c"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jxt4"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iejf7"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_501gm"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqypb"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0ya2"] +atlas = ExtResource("1_2a0is") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqpxw"] +atlas = ExtResource("1_2a0is") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3fkn"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxrhc"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2c4a"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kapw2"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujcef"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0anki"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7psx8"] +atlas = ExtResource("1_2a0is") +region = Rect2(505, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3t06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mall") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gy1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80qm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmems") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg1gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rspul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyvvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vadib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0qkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob1dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jkkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r083t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i05cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6l3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oprs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puera") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay6jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juopd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sry8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v440y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ufv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8g1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks6xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f25kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gisw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rmgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bc2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1yai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8c6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8aod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3s8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8j6s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3iav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxf1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw1ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r73f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1608") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgur1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt28b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwqau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql4ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvdq5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pt4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46jk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t2q5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax8u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i25k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh5jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fshn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsj36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyqo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xvbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n20m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6b6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jxt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iejf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_501gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqypb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0ya2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqpxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3fkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxrhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2c4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kapw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujcef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0anki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7psx8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper2.tres new file mode 100644 index 0000000..829f7b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_peacekeeper2.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://ef5brk8pjomv"] + +[ext_resource type="Texture2D" uid="uid://cyqpl6fivjhh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png" id="1_08jy6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx2ma"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si6gy"] +atlas = ExtResource("1_08jy6") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1l12"] +atlas = ExtResource("1_08jy6") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kujhk"] +atlas = ExtResource("1_08jy6") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36o82"] +atlas = ExtResource("1_08jy6") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxsgq"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d67km"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pey1k"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd2hx"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oug8m"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4npo"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pabje"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asbis"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbgwr"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a87r0"] +atlas = ExtResource("1_08jy6") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdxj0"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llpud"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc7x3"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqpad"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkyqn"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8fgo"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rkk0"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djhl0"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eycfd"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4plc"] +atlas = ExtResource("1_08jy6") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edvax"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kitb"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asgbi"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qj0o"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66wmm"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkghc"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_086ym"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qojvv"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgdmr"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnpt0"] +atlas = ExtResource("1_08jy6") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbr04"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w8ne"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u5ss"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84xbf"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h00rg"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kfjj"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5lxu"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umv72"] +atlas = ExtResource("1_08jy6") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy4gu"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyohd"] +atlas = ExtResource("1_08jy6") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3dcs"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mct10"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weqe7"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4qvi"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_523a8"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_710q6"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi1vq"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x4hm"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bgs8"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ls21"] +atlas = ExtResource("1_08jy6") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu4vb"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emnob"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ymlq"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ci4"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pje2n"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxuvc"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed717"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqylt"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4swc"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgqoj"] +atlas = ExtResource("1_08jy6") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gerv"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw2j5"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufs4d"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hfk3"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qxs4"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8vbj"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywekd"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auyj4"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b507p"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwro4"] +atlas = ExtResource("1_08jy6") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwmte"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b6sd"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8rvl"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ipt8"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4v6t"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6ihm"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm66k"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aesdv"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqvsp"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqpmm"] +atlas = ExtResource("1_08jy6") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx2ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si6gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1l12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kujhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36o82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxsgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d67km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pey1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd2hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oug8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4npo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pabje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asbis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbgwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a87r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdxj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llpud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc7x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqpad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkyqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8fgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rkk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djhl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eycfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4plc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edvax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kitb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asgbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qj0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66wmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkghc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_086ym") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qojvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgdmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnpt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbr04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w8ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u5ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84xbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h00rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kfjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5lxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umv72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy4gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyohd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3dcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mct10") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_weqe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4qvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_523a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_710q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi1vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x4hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bgs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ls21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu4vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emnob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ymlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ci4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pje2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxuvc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed717") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqylt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4swc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgqoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gerv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw2j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufs4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hfk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qxs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8vbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywekd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auyj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b507p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwro4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwmte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b6sd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8rvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ipt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4v6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6ihm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm66k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aesdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqvsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqpmm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_radiantdragoon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_radiantdragoon.tres new file mode 100644 index 0000000..5bc7f19 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_radiantdragoon.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://cxn6x4ksg4kit"] + +[ext_resource type="Texture2D" uid="uid://b7riip0ybhkfr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png" id="1_jcd2p"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3kry"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1duhh"] +atlas = ExtResource("1_jcd2p") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycfwa"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcxcv"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3s8d"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_802wo"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_073t7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb1i5"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw7rq"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66akl"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfc4m"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66fvf"] +atlas = ExtResource("1_jcd2p") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoapm"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oq87"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6je3l"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdbka"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr2x6"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l73in"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0sna"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k558n"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcod7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjsjs"] +atlas = ExtResource("1_jcd2p") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmdi2"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i3ju"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfrb2"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onda1"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um7tx"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi6gx"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mqxr"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbfqn"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbnlb"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_556q4"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lntx7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhsg7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7omvv"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3576"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnffg"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lx7w"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iblve"] +atlas = ExtResource("1_jcd2p") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xm2s"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5kl1"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uru2g"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xte4j"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0bss"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er8w7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwlcj"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_darl5"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jasfl"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st3hb"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1hds"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruq16"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5et24"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okwj1"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh1eq"] +atlas = ExtResource("1_jcd2p") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwxsy"] +atlas = ExtResource("1_jcd2p") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2axi"] +atlas = ExtResource("1_jcd2p") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isrj7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ydh7"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmt82"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltjdw"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbg4l"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv6tk"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u32r"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q13s"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q63r4"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlil2"] +atlas = ExtResource("1_jcd2p") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3be55"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0oh0"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itnwo"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gcch"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6juia"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h72n"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jongd"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo5gr"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um7pj"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8g58"] +atlas = ExtResource("1_jcd2p") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3kry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1duhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycfwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcxcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3s8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_802wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_073t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb1i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw7rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66akl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfc4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66fvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoapm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oq87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6je3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdbka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr2x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l73in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0sna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k558n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcod7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjsjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmdi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i3ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfrb2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_onda1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um7tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi6gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mqxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbfqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbnlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_556q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lntx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhsg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7omvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3576") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnffg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lx7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iblve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xm2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5kl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uru2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xte4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0bss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er8w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwlcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_darl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jasfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st3hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1hds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruq16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5et24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okwj1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh1eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwxsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2axi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_isrj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ydh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmt82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltjdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbg4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv6tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u32r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q13s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q63r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlil2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3be55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0oh0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_itnwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gcch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6juia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h72n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jongd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo5gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um7pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8g58") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ranged.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ranged.tres new file mode 100644 index 0000000..81e23a3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_ranged.tres @@ -0,0 +1,489 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://cjrynooyfkgrk"] + +[ext_resource type="Texture2D" uid="uid://dlp07l66cxmtg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png" id="1_bexdb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnybd"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tm0k"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmd8w"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0uva"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbfis"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw5we"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cubbr"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w15ky"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v6uc"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi2oo"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acex8"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_defh4"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw6bj"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjmai"] +atlas = ExtResource("1_bexdb") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr8jg"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_527el"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr7hv"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k86d"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhhn5"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcq0l"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roc3v"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s415c"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebqx7"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbueb"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u76s"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dwo2"] +atlas = ExtResource("1_bexdb") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jytlu"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ecb2"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn7qd"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv3jk"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvesj"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo5n1"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy5ix"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5w4t"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l42ey"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5xb2"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrmar"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2q55"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw6cm"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77f6t"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68f1h"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll3om"] +atlas = ExtResource("1_bexdb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi1fx"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrsl1"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_752i3"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hif0"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfdfn"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrw6e"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyfim"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irxrh"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yss2"] +atlas = ExtResource("1_bexdb") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qes42"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5u1l"] +atlas = ExtResource("1_bexdb") +region = Rect2(33, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvdx4"] +atlas = ExtResource("1_bexdb") +region = Rect2(99, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u83si"] +atlas = ExtResource("1_bexdb") +region = Rect2(132, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nebl5"] +atlas = ExtResource("1_bexdb") +region = Rect2(66, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4lvc"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_723ts"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7oxl"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3lyx"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mwi7"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8yeh"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv0r4"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_211py"] +atlas = ExtResource("1_bexdb") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnybd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tm0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmd8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0uva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbfis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw5we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cubbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w15ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v6uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi2oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acex8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_defh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw6bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjmai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr8jg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_527el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr7hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k86d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhhn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcq0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roc3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s415c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebqx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbueb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u76s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dwo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jytlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ecb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn7qd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv3jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvesj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo5n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy5ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5w4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l42ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5xb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrmar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2q55") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw6cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77f6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68f1h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll3om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi1fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrsl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_752i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hif0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfdfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrw6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyfim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irxrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yss2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qes42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5u1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvdx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u83si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nebl5") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4lvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_723ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7oxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3lyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mwi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8yeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv0r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_211py") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_rightfulheir.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_rightfulheir.tres new file mode 100644 index 0000000..46a1407 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_rightfulheir.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://blyeiuq6kxr2b"] + +[ext_resource type="Texture2D" uid="uid://cvxme483rgmcy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png" id="1_0bmkp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_50e1w"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh32k"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qafpb"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxrru"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipgdo"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvff3"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2asw"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnvs8"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp4or"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a61gp"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yim0i"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxt6j"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07t52"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a47e"] +atlas = ExtResource("1_0bmkp") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5imd5"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4kix"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvfcf"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63gud"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnvfh"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve4d8"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es7f4"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucmvo"] +atlas = ExtResource("1_0bmkp") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ftm2"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t47g"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcc8v"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u8a1"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c21j"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bpdd"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moq0c"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgq0i"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnvr0"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp1ea"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnyuh"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo82d"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uecld"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2foqk"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1oxj"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj72p"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mudo0"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c33d"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjap8"] +atlas = ExtResource("1_0bmkp") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7oqa"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1j2y"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32i8k"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrhw0"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t5xf"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf2pg"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87f4r"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uudyb"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu6pp"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5omha"] +atlas = ExtResource("1_0bmkp") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8d86"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ppkl"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4on62"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqev3"] +atlas = ExtResource("1_0bmkp") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8rll"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n82jj"] +atlas = ExtResource("1_0bmkp") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh2yc"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_humki"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a65jb"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn7e6"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3lnp"] +atlas = ExtResource("1_0bmkp") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvhbj"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ley3j"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcy4v"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82j2f"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qne5w"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dkwa"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukad5"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exe4a"] +atlas = ExtResource("1_0bmkp") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c60qb"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2mqr"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o152r"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8cu0"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qg6e"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oleud"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x1gb"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m71r2"] +atlas = ExtResource("1_0bmkp") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_50e1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh32k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qafpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxrru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipgdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvff3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2asw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnvs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp4or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a61gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yim0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxt6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07t52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a47e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5imd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4kix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvfcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63gud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnvfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve4d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es7f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucmvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ftm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t47g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcc8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u8a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c21j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bpdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moq0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgq0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnvr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp1ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnyuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo82d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uecld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2foqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1oxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj72p") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mudo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c33d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjap8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7oqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1j2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32i8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrhw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t5xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf2pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87f4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uudyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu6pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5omha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8d86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ppkl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4on62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqev3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8rll") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n82jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh2yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_humki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a65jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn7e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3lnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvhbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ley3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcy4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82j2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qne5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dkwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukad5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exe4a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c60qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2mqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o152r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8cu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qg6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oleud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x1gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m71r2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_scintilla.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_scintilla.tres new file mode 100644 index 0000000..4b4a2d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_scintilla.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://cxverohjaci00"] + +[ext_resource type="Texture2D" uid="uid://b4hkti5sy6a8r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png" id="1_r2imb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_icmly"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mcj4"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c0k3"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlqg5"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5nk0"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdspg"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puhnd"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e63i"] +atlas = ExtResource("1_r2imb") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04kc1"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyvv3"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om1pi"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28cvt"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfrlk"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3yx7"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljixp"] +atlas = ExtResource("1_r2imb") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8o8c"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dg88"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex4qn"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r02eg"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71243"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7mld"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssar7"] +atlas = ExtResource("1_r2imb") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4renr"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgn6o"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8pym"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4fef"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks5yg"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjfgg"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mktcr"] +atlas = ExtResource("1_r2imb") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ji4q"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbilj"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilii8"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh2qa"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c57ok"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifwr8"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28mkl"] +atlas = ExtResource("1_r2imb") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd2fb"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5uvs"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6gi4"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j06ks"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7fvu"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uklfl"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ewim"] +atlas = ExtResource("1_r2imb") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c3sx"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afvcq"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h80l7"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4oxh"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsrji"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kho7y"] +atlas = ExtResource("1_r2imb") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbmdj"] +atlas = ExtResource("1_r2imb") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rph0n"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg82a"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjw4s"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu5la"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do1o3"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3xt5"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox0x1"] +atlas = ExtResource("1_r2imb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr7sb"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk2er"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqk2u"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaymp"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdo25"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4eg0"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byurg"] +atlas = ExtResource("1_r2imb") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbg4p"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgpmw"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pixuk"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibs5j"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u3s1"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrj6"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m565x"] +atlas = ExtResource("1_r2imb") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i6w8"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi4o2"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3nkw"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rvg8"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quuxe"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7m3g"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctttf"] +atlas = ExtResource("1_r2imb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqrwb"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwjty"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5om7c"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo45p"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glu27"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n57b"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8pw0"] +atlas = ExtResource("1_r2imb") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5inw"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsju3"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sacb"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o55nm"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7xt1"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xidam"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnlhf"] +atlas = ExtResource("1_r2imb") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2337o"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7jwx"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cybc7"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupj2"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3vbq"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jscgt"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jnsv"] +atlas = ExtResource("1_r2imb") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_icmly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mcj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c0k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlqg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5nk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdspg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puhnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e63i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04kc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyvv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om1pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28cvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfrlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3yx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljixp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8o8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dg88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex4qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r02eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71243") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7mld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4renr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgn6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8pym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4fef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks5yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjfgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mktcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ji4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbilj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh2qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c57ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifwr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28mkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd2fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5uvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6gi4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j06ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7fvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uklfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ewim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c3sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afvcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h80l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4oxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsrji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kho7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbmdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rph0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg82a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjw4s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do1o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3xt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox0x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr7sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk2er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqk2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaymp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdo25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4eg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byurg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbg4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgpmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pixuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibs5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u3s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljrj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m565x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i6w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi4o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3nkw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rvg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quuxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7m3g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctttf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqrwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwjty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5om7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo45p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glu27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n57b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8pw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5inw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsju3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sacb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o55nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7xt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xidam") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnlhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2337o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7jwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cybc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pupj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3vbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jscgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jnsv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_shieldforger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_shieldforger.tres new file mode 100644 index 0000000..2130488 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_shieldforger.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://bh1u4dubuwlmg"] + +[ext_resource type="Texture2D" uid="uid://btp545d6vcgq4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png" id="1_hej16"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipqjs"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuaik"] +atlas = ExtResource("1_hej16") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t7tt"] +atlas = ExtResource("1_hej16") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onrba"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jebpu"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtyag"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7isk"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bji76"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bornh"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbtng"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu0pp"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owdl6"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glgs8"] +atlas = ExtResource("1_hej16") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t14tv"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfa82"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc86y"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3xwa"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6dqt"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeyjq"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkys2"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq5qn"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2hju"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as5dh"] +atlas = ExtResource("1_hej16") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0af2"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmsk"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4viw"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5fqo"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grekp"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vspas"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28snc"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pjnl"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_421ql"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r35ml"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d7e7"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irekd"] +atlas = ExtResource("1_hej16") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_455cj"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81b42"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4nis"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rsr8"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7dqn"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15x44"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvh0x"] +atlas = ExtResource("1_hej16") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujp01"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujo0p"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ouq3"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7aje"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m0j3"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k44rm"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbu3d"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a84h4"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhevn"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lybr"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vey83"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfhmv"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ejex"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41f41"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o24mq"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxfn5"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q28ir"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iglnw"] +atlas = ExtResource("1_hej16") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttl71"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl2y0"] +atlas = ExtResource("1_hej16") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2n73"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vdsm"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a40t2"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtd27"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21kg8"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liyjj"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iua5n"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfe3t"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3itqy"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on6tg"] +atlas = ExtResource("1_hej16") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cldx3"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg2ia"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5w3g"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxh6l"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iwyn"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgmgi"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqa0a"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqq5e"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scwsd"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a48yc"] +atlas = ExtResource("1_hej16") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipqjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuaik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t7tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onrba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jebpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtyag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7isk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bji76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bornh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbtng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu0pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owdl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glgs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t14tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfa82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc86y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3xwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6dqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeyjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkys2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq5qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2hju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as5dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0af2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkmsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4viw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5fqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grekp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vspas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28snc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pjnl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_421ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r35ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d7e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irekd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_455cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81b42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4nis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rsr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7dqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15x44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvh0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujp01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujo0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ouq3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7aje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m0j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k44rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbu3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a84h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhevn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lybr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vey83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfhmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ejex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41f41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o24mq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxfn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q28ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iglnw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttl71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl2y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2n73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vdsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a40t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtd27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21kg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liyjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iua5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfe3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3itqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on6tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cldx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg2ia") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5w3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxh6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iwyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgmgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqa0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqq5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scwsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a48yc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silverguardsquire.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silverguardsquire.tres new file mode 100644 index 0000000..bbd0882 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silverguardsquire.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://cwatpdbiqjce6"] + +[ext_resource type="Texture2D" uid="uid://bkv20x50gjovx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png" id="1_a43qh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbjhy"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtktl"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxkml"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue8vj"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo80r"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut558"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s61k8"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv5xn"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhbws"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odt7e"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1445c"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiljf"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0d3i"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6d6r"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bn62"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14jy7"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3hph"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpehp"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7046"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw1pv"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h7xi"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dny56"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_einq3"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrrvr"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt3ik"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkxt4"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtm6x"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj3yb"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkhn1"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l222x"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w684i"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15uq6"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oixn8"] +atlas = ExtResource("1_a43qh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptbyw"] +atlas = ExtResource("1_a43qh") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqic2"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_383h3"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8p5q"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ns2"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33lk0"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3yg"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7df0b"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnha4"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guwi4"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltxtd"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywb0m"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jofrv"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feylo"] +atlas = ExtResource("1_a43qh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouq2k"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lru3"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh0gg"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4jgh"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luffb"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bss5v"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6nak"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o3sm"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0voo1"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7ttr"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s50mp"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jlpa"] +atlas = ExtResource("1_a43qh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbjhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtktl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxkml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue8vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo80r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut558") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s61k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv5xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhbws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odt7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1445c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiljf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0d3i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6d6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bn62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14jy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3hph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpehp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7046") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw1pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h7xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dny56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_einq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrrvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt3ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkxt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtm6x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj3yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkhn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l222x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w684i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15uq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oixn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptbyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqic2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_383h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8p5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ns2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33lk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7df0b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnha4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guwi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltxtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywb0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jofrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feylo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouq2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lru3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh0gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4jgh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_luffb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bss5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6nak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o3sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0voo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7ttr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s50mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jlpa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silvermanevanguard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silvermanevanguard.tres new file mode 100644 index 0000000..d2a1c1c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_silvermanevanguard.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://bw1ouuaj7g8o5"] + +[ext_resource type="Texture2D" uid="uid://d4hwe41gnrwhn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png" id="1_1vg4x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ho0"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu4mt"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is7nn"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er353"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmwmd"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xss4w"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1p56"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tv8h"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4owfq"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jprad"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwp86"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48kgx"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q8sp"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85lli"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uahj4"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5e5j"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dg7j"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56iat"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbfs2"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xni2h"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ift3b"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g363r"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_252a3"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aex6e"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf1hu"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aax83"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37haw"] +atlas = ExtResource("1_1vg4x") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0430"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnkkt"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4un7"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iws8o"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6lm3"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d86r"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4de3q"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm5hq"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ens"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcnri"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awr30"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ys6"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0kn4"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqk1r"] +atlas = ExtResource("1_1vg4x") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gxca"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_munwu"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he1ki"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guhcv"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jiip"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfkg1"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lh2t"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d5y1"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy1od"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhr3b"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w22n"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5g7o"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mte4q"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5neo"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_222qx"] +atlas = ExtResource("1_1vg4x") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25pap"] +atlas = ExtResource("1_1vg4x") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m54eb"] +atlas = ExtResource("1_1vg4x") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3db03"] +atlas = ExtResource("1_1vg4x") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltue0"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nus7e"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf83s"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ug8e"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1atmn"] +atlas = ExtResource("1_1vg4x") +region = Rect2(243, 567, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ho0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu4mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is7nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er353") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmwmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xss4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1p56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tv8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4owfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jprad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwp86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48kgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q8sp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_85lli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uahj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5e5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dg7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56iat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbfs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xni2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ift3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g363r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_252a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aex6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf1hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aax83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37haw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0430") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnkkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4un7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iws8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6lm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d86r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4de3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm5hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ens") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcnri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awr30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ys6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0kn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqk1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gxca") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_munwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he1ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guhcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jiip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfkg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lh2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d5y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy1od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhr3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w22n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5g7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mte4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5neo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_222qx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_25pap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m54eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3db03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltue0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nus7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf83s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ug8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1atmn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sinergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sinergyunit.tres new file mode 100644 index 0000000..9eec713 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sinergyunit.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bv8ncvonq1tdj"] + +[ext_resource type="Texture2D" uid="uid://dt18rpq5me3x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png" id="1_twbn4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o01j4"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufscs"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43pvj"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaa8g"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ealtq"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tm3q"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktso1"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qe2n"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fhpn"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb7wd"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2efy2"] +atlas = ExtResource("1_twbn4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2yu3"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb4uw"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohp7p"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stg02"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqs63"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fs87"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c25f7"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8nlv"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqy84"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4f88"] +atlas = ExtResource("1_twbn4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcx2i"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50kny"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fspm"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lel2"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkl12"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dj1h"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a16yc"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik7bo"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knafm"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6qkt"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnnf6"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4u1r"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuhbu"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clar7"] +atlas = ExtResource("1_twbn4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7sb5"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cpxn"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ytew"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aws0a"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwlp6"] +atlas = ExtResource("1_twbn4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2jm3"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7a4s"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffyd2"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbdl1"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40nt6"] +atlas = ExtResource("1_twbn4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yq46"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fctel"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkj4r"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diqax"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noroe"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l1nw"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl5ws"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ooo"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kknr"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tje67"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjcio"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wbb0"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rowwp"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jdu2"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70emb"] +atlas = ExtResource("1_twbn4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d1x0"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50o83"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l3op"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaevf"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gucqd"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n7xw"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cesu"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1753g"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pggt"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2baw7"] +atlas = ExtResource("1_twbn4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxlf2"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu4nc"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e63rg"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idv3a"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3g4a"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqiax"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8w7n"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16h2u"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyjsa"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iikhw"] +atlas = ExtResource("1_twbn4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o01j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufscs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43pvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaa8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ealtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tm3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktso1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qe2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fhpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb7wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2efy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2yu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb4uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohp7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stg02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqs63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fs87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c25f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8nlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqy84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4f88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcx2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50kny") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fspm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lel2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkl12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dj1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a16yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik7bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knafm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6qkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnnf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4u1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuhbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7sb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cpxn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ytew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aws0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwlp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2jm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7a4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffyd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbdl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40nt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yq46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fctel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkj4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diqax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noroe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l1nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl5ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ooo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kknr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tje67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjcio") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wbb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rowwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jdu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70emb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d1x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50o83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l3op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaevf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gucqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n7xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cesu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1753g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pggt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2baw7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxlf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu4nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e63rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idv3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3g4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqiax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8w7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16h2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyjsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iikhw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sister.tres new file mode 100644 index 0000000..70144a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sister.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://cuj27e8yuqo3v"] + +[ext_resource type="Texture2D" uid="uid://b4you4brvthnj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png" id="1_x5wd0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mg8i"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63anm"] +atlas = ExtResource("1_x5wd0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdtdm"] +atlas = ExtResource("1_x5wd0") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1ccc"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2ip0"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ak4p"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy3wo"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dxsh"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6pcy"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r48jr"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmgr3"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u5ns"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftka7"] +atlas = ExtResource("1_x5wd0") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l7pa"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpbsg"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w01kh"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bmfa"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh4gu"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5xfm"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxb30"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqiwl"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82plx"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5x1i"] +atlas = ExtResource("1_x5wd0") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cipx"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbee1"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbgtl"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1e6p"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_armd7"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cou50"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wgdk"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx22p"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly7n5"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv876"] +atlas = ExtResource("1_x5wd0") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d6lu"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soar6"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t6aw"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8idiv"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6tmr"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh81t"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwvm0"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_220dr"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwfp6"] +atlas = ExtResource("1_x5wd0") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r25fb"] +atlas = ExtResource("1_x5wd0") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aldtm"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhp6k"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_habts"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veygg"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebl56"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpnf8"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvk4d"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fca3u"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7hxt"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro1fv"] +atlas = ExtResource("1_x5wd0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qeeo"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvrxn"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h1d3"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn3fn"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bix6"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuygf"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t7pk"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vwy6"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv760"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgnvq"] +atlas = ExtResource("1_x5wd0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc6qk"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osxpa"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwf54"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn5em"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcqes"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4gxo"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa8y5"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnxfs"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkib2"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmrb1"] +atlas = ExtResource("1_x5wd0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbrgg"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3bun"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h2x8"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj1wc"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdcxi"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hibj6"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68gok"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umq7x"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg1tg"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecv3t"] +atlas = ExtResource("1_x5wd0") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mg8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63anm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdtdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1ccc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2ip0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ak4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dxsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6pcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r48jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmgr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u5ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftka7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l7pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpbsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w01kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bmfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh4gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5xfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxb30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqiwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82plx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5x1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cipx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbee1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbgtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1e6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_armd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cou50") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wgdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx22p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly7n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv876") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d6lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soar6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t6aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8idiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6tmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh81t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwvm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_220dr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwfp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r25fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aldtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhp6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_habts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veygg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebl56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpnf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvk4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fca3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7hxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro1fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qeeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvrxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h1d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn3fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bix6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuygf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t7pk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vwy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv760") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgnvq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc6qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osxpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwf54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn5em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcqes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4gxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa8y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnxfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkib2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmrb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbrgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3bun") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h2x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj1wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdcxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hibj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68gok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umq7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg1tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecv3t") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_slo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_slo.tres new file mode 100644 index 0000000..afbb437 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_slo.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://cvokfs3omoiom"] + +[ext_resource type="Texture2D" uid="uid://r8p124wilvos" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png" id="1_yal8s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yb82"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kdnk"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsq07"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwy5f"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3h75"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2vs7"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eso5"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxtrk"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p1uq"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mwaj"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8emy"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8h4n"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd3tu"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tvwn"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgqpb"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r3nu"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcx1r"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k148o"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqul"] +atlas = ExtResource("1_yal8s") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7sgu"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcfiq"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o84yh"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq1pl"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1vy6"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i8a3"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qap88"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyjwu"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hseqj"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmnfm"] +atlas = ExtResource("1_yal8s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkcm3"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktgqg"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0daek"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmd2b"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqs84"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8sky"] +atlas = ExtResource("1_yal8s") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp37q"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6rwk"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq2ql"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dptfx"] +atlas = ExtResource("1_yal8s") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8iwg"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esql7"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsp2s"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k4di"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lftx2"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icbxn"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4oci"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7j6l"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peecl"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc8p0"] +atlas = ExtResource("1_yal8s") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnlqr"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yjq4"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0yj7"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uff10"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gihv"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7grp"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adhty"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oad35"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw15t"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u5eb"] +atlas = ExtResource("1_yal8s") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djd0t"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7060"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maeii"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dujmf"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64na7"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lp0i"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m26eb"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq72m"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kckxx"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgsn1"] +atlas = ExtResource("1_yal8s") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yb82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kdnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsq07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwy5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3h75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2vs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eso5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxtrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p1uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mwaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8emy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8h4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd3tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tvwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgqpb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r3nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcx1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k148o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7sgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcfiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o84yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq1pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1vy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i8a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qap88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyjwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hseqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmnfm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkcm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktgqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0daek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmd2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqs84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8sky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp37q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6rwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq2ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dptfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8iwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esql7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsp2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k4di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lftx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icbxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4oci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7j6l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_peecl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc8p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnlqr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yjq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0yj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uff10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gihv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7grp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adhty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oad35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw15t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u5eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djd0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7060") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maeii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dujmf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64na7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lp0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m26eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq72m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kckxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgsn1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solarius.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solarius.tres new file mode 100644 index 0000000..bf04900 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solarius.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://2gittsaoiq0t"] + +[ext_resource type="Texture2D" uid="uid://f6sm207uk44" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png" id="1_6vhi5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttq61"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwf7g"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8vrx"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t481p"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhg2g"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdab6"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wxew"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynw77"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjvfj"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gumct"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qafk"] +atlas = ExtResource("1_6vhi5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwcuo"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8kbt"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoexv"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0shb"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3s3x"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ltit"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ir5c"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdw3t"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu7ua"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s24fn"] +atlas = ExtResource("1_6vhi5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5gkh"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl1hl"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prr75"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gevo4"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_267bt"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18i5o"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wuik"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxxlg"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3seqj"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cj0x"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba2dl"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xny6"] +atlas = ExtResource("1_6vhi5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry46y"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y20nj"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygq2x"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3pqh"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2dsf"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyb5b"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krlxl"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6sac"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2qv4"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbspd"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kodil"] +atlas = ExtResource("1_6vhi5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ornb"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1ieu"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf0r4"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id2wh"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7am4y"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1ikf"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddevd"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u7d7"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpiyy"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0smel"] +atlas = ExtResource("1_6vhi5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkb48"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcftm"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdfa1"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ngfb"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08ic0"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5ak7"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er32f"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n37aq"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep553"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j40h"] +atlas = ExtResource("1_6vhi5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r10ob"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op63d"] +atlas = ExtResource("1_6vhi5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye02n"] +atlas = ExtResource("1_6vhi5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lftqo"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq3sl"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkepk"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heg6k"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2l2r"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afyfp"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdsq2"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reyc6"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5v27"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ybgj"] +atlas = ExtResource("1_6vhi5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed4st"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wcsj"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mne"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yages"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qedkh"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in6xd"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2l68"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7idf2"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jfvb"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uyhy"] +atlas = ExtResource("1_6vhi5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttq61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwf7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8vrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t481p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhg2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdab6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wxew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynw77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjvfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gumct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qafk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwcuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8kbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoexv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0shb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3s3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ltit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ir5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdw3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu7ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s24fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5gkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl1hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prr75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gevo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_267bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18i5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wuik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxxlg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3seqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cj0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba2dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xny6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry46y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y20nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygq2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3pqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2dsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyb5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krlxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6sac") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2qv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbspd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kodil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ornb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1ieu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf0r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id2wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7am4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1ikf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddevd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u7d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpiyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0smel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkb48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcftm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdfa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ngfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08ic0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5ak7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er32f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n37aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep553") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j40h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r10ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op63d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye02n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lftqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq3sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkepk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heg6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2l2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afyfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdsq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reyc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5v27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ybgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed4st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wcsj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yages") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qedkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in6xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2l68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7idf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jfvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uyhy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solpontiff.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solpontiff.tres new file mode 100644 index 0000000..2e13cc6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_solpontiff.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://dw4bq6ai08e8q"] + +[ext_resource type="Texture2D" uid="uid://git0a3cytvld" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png" id="1_xn0j2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ons4"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drl5s"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcq2b"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyq8p"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltfxk"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2kp8"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlbuj"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctukd"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6oxd"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k52v3"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3qom"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obnqa"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyaxn"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc44o"] +atlas = ExtResource("1_xn0j2") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v36ho"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv3no"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxh3v"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqyib"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rivcc"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glu76"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ccme"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqpou"] +atlas = ExtResource("1_xn0j2") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v81dd"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui8sq"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4ggq"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wi74"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uir3a"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qbse"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be8gl"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6rab"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0knlj"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ufi"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft3tg"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuiiq"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awk1p"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbo0m"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g13j"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee7h4"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jic25"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryi1r"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmg2d"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf5uf"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l83bq"] +atlas = ExtResource("1_xn0j2") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frh12"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0333q"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n45p2"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sjjc"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dt4u"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nxic"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8va7"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qso7"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc3kk"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5cy"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4yb5"] +atlas = ExtResource("1_xn0j2") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo3xp"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvcfb"] +atlas = ExtResource("1_xn0j2") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e287t"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0yco"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5exm5"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu70w"] +atlas = ExtResource("1_xn0j2") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bjpj"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eplrw"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kots"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgilp"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebofg"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoqse"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq0fu"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inoir"] +atlas = ExtResource("1_xn0j2") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4mr4"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t5kc"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ujwr"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp88p"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74u6v"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76o72"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrvse"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaqsa"] +atlas = ExtResource("1_xn0j2") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ons4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drl5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcq2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyq8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltfxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2kp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlbuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctukd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6oxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k52v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3qom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obnqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyaxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc44o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v36ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv3no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxh3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqyib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rivcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glu76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ccme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqpou") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v81dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui8sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4ggq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wi74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uir3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qbse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be8gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6rab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0knlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ufi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft3tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuiiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awk1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbo0m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g13j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee7h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jic25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryi1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmg2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf5uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l83bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frh12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0333q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n45p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sjjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dt4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nxic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8va7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qso7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc3kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5cy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4yb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo3xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvcfb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e287t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0yco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5exm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu70w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bjpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eplrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kots") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgilp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebofg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoqse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq0fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inoir") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4mr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t5kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ujwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp88p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74u6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76o72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrvse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaqsa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_special.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_special.tres new file mode 100644 index 0000000..d512b70 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_special.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://d3p8mk8u1c202"] + +[ext_resource type="Texture2D" uid="uid://c1bwcqltkobd4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png" id="1_pkd6b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6org"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6ty2"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67r4a"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqco4"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24urm"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr2k4"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw3y5"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys1wd"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txx1x"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1l8a"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_642gn"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m71yq"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5408l"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk6q0"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usiol"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vicrp"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb133"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3axq"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lyib"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_micuj"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2k5j"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjvw8"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ibul"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1kdr"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emmry"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ls85"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diy8k"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfmxq"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt2m7"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av5tc"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3mby"] +atlas = ExtResource("1_pkd6b") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce6pd"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60q52"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jknv"] +atlas = ExtResource("1_pkd6b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnyk1"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi7yr"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5nht"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ygtv"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0hu"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krrry"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn22v"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2bu3"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bam3c"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4vgh"] +atlas = ExtResource("1_pkd6b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4wj4"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoak3"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shbs1"] +atlas = ExtResource("1_pkd6b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lto76"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0yi5"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppdbp"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i6nu"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e0o8"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ev8v"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhepu"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3703"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8waek"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8evf"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44qbk"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcy5e"] +atlas = ExtResource("1_pkd6b") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6org") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6ty2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67r4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqco4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24urm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr2k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw3y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys1wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txx1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1l8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_642gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m71yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5408l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk6q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usiol") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vicrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb133") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3axq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lyib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_micuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2k5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjvw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ibul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1kdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emmry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ls85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diy8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfmxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt2m7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_av5tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3mby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce6pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60q52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jknv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnyk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi7yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5nht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ygtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krrry") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn22v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2bu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bam3c") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4vgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4wj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoak3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shbs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lto76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0yi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppdbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i6nu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e0o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ev8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhepu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3703") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8waek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8evf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44qbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcy5e") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_spellbladeadept.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_spellbladeadept.tres new file mode 100644 index 0000000..eed41ba --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_spellbladeadept.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://cuut0bteig210"] + +[ext_resource type="Texture2D" uid="uid://rsnn0sibvkx6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png" id="1_0s0oo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qir2g"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odspn"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drl1f"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ksxj"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlp8u"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juvvk"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v613p"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qsgh"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4hdu"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5onju"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybueh"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pds6f"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0puh"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40qjs"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0utyi"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugiqq"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abuwf"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j86yi"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g33th"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erkyo"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hg2d"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uysxx"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yse7"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quo53"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xfr0"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kik7g"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21e8d"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_javnd"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meqke"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58jqs"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn3uh"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5x4r"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eayd0"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwdrg"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ik1b"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_025gr"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i52jt"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m35ut"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ys23"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym2wg"] +atlas = ExtResource("1_0s0oo") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptfh0"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x7xg"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxeiu"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5v4y"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6qle"] +atlas = ExtResource("1_0s0oo") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfvjy"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e2jm"] +atlas = ExtResource("1_0s0oo") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o77up"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2c80"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inm1g"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi0tc"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gisao"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q2me"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x2yo"] +atlas = ExtResource("1_0s0oo") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4y4l"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxaqf"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngfj2"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hei2"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyb6d"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oge1i"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37gvf"] +atlas = ExtResource("1_0s0oo") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oj5q"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3u3x"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcggj"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrwx1"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npvym"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyh3t"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lxru"] +atlas = ExtResource("1_0s0oo") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug4ca"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc3lt"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utoom"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tglu2"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnk0g"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plqca"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pskdu"] +atlas = ExtResource("1_0s0oo") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3egq5"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6bly"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w416"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sau85"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju2s8"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa3dc"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or2y2"] +atlas = ExtResource("1_0s0oo") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnv48"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8am0"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk3c3"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fkwd"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hf2g"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tml1i"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xejxr"] +atlas = ExtResource("1_0s0oo") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qir2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odspn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drl1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ksxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlp8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juvvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v613p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qsgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4hdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5onju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybueh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pds6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0puh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40qjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0utyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugiqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abuwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j86yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g33th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erkyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hg2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uysxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yse7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quo53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xfr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kik7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21e8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_javnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meqke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58jqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn3uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5x4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eayd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwdrg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ik1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_025gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i52jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m35ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ys23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym2wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptfh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x7xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxeiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5v4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6qle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfvjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e2jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o77up") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2c80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inm1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi0tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gisao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q2me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x2yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4y4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxaqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngfj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hei2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyb6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oge1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37gvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oj5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3u3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcggj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrwx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npvym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyh3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lxru") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug4ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc3lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utoom") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tglu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnk0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plqca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pskdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3egq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6bly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sau85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju2s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa3dc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_or2y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnv48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8am0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk3c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fkwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hf2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tml1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xejxr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreaker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreaker.tres new file mode 100644 index 0000000..a05b032 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreaker.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://dgo8v4m6xr7u1"] + +[ext_resource type="Texture2D" uid="uid://drm1l1wd0qkor" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png" id="1_bkdlr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6ewv"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg6y1"] +atlas = ExtResource("1_bkdlr") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55wah"] +atlas = ExtResource("1_bkdlr") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3ju5"] +atlas = ExtResource("1_bkdlr") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myjas"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp7y5"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v34lv"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly73b"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmy73"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74s1v"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnkem"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y058a"] +atlas = ExtResource("1_bkdlr") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rl7c"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c8ay"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nfy7"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltah4"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyk4p"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atstn"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tt2o"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps7p3"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85sva"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfqug"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hu03"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nequm"] +atlas = ExtResource("1_bkdlr") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8xv6"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gsq5"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of8is"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26bcm"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbktp"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls1mn"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puyx6"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og0bu"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdscm"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ojx3"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecwo4"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da1nj"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fx6a"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bolmd"] +atlas = ExtResource("1_bkdlr") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_881lu"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d05rj"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn0f5"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0tbo"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r67j"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8p8a"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68fy7"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4aug"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moux1"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rls6"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5g28"] +atlas = ExtResource("1_bkdlr") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgees"] +atlas = ExtResource("1_bkdlr") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb5yd"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oe0d"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlbjw"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_islsm"] +atlas = ExtResource("1_bkdlr") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt3pn"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk5yq"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x5rt"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v75o2"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioy7b"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he8q5"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmaii"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbmnx"] +atlas = ExtResource("1_bkdlr") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btuno"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyk4y"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvf6q"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwr54"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1ecm"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke8ys"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nrj6"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1d1i"] +atlas = ExtResource("1_bkdlr") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6ewv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg6y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55wah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3ju5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myjas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp7y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v34lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly73b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmy73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74s1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnkem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y058a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rl7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c8ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nfy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltah4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyk4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atstn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tt2o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps7p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85sva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfqug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hu03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nequm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8xv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gsq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of8is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26bcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbktp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls1mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puyx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og0bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdscm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ojx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecwo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da1nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fx6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bolmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_881lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d05rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn0f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0tbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r67j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8p8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68fy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4aug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moux1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rls6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5g28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgees") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb5yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oe0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlbjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_islsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt3pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk5yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x5rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v75o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioy7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he8q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmaii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbmnx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_btuno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyk4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvf6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwr54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1ecm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke8ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nrj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1d1i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreakguardian.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreakguardian.tres new file mode 100644 index 0000000..8cbfb96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunbreakguardian.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://ccgtmx3hgcnl0"] + +[ext_resource type="Texture2D" uid="uid://f2iukch42tyb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png" id="1_rd6l1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad6cl"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md88s"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lby1s"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlpn3"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0114"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aofx3"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hkf5"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmcu"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50yxe"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w02wx"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hsnx"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5v7w"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyu5j"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3435a"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2p0c"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mado1"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmr4y"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hprsu"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxbuj"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdyus"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j5jd"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_657xc"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4sqf"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm60c"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6xxy"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwe3l"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ykm2"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbujb"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06led"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l10qo"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqv6t"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2gam"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl80j"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e33lr"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmwrr"] +atlas = ExtResource("1_rd6l1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aur84"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvr63"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krjh8"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q15kx"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaybc"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_784jf"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfydq"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30rod"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rs1a"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qgnx"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kong0"] +atlas = ExtResource("1_rd6l1") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwwve"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfwbw"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v282a"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwgxm"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m65q"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohghb"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eison"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8vvh"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3aq4"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxigf"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgcka"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlsab"] +atlas = ExtResource("1_rd6l1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d858s"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ku7"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daq8f"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsx48"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a07bt"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srquo"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqnx"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwoi7"] +atlas = ExtResource("1_rd6l1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrl0e"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp76o"] +atlas = ExtResource("1_rd6l1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0orqg"] +atlas = ExtResource("1_rd6l1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ntbg"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1tcl"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pib2"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckup4"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61ve1"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0b2n"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2n27"] +atlas = ExtResource("1_rd6l1") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3jxr"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2nll"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckkyq"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0wrc"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2im4"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkder"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b4dk"] +atlas = ExtResource("1_rd6l1") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62etk"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4k1x"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vryms"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_datom"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grqob"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi18m"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0s50"] +atlas = ExtResource("1_rd6l1") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad6cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md88s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lby1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlpn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0114") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aofx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hkf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50yxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w02wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hsnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5v7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyu5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3435a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2p0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mado1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmr4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hprsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxbuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdyus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j5jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_657xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4sqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm60c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6xxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwe3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ykm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbujb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_06led") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l10qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqv6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2gam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl80j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e33lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmwrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aur84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvr63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krjh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q15kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaybc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_784jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfydq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_30rod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rs1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qgnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kong0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwwve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfwbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v282a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwgxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m65q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohghb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eison") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8vvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3aq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxigf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgcka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlsab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d858s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ku7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daq8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsx48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a07bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srquo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwoi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrl0e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp76o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0orqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ntbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1tcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pib2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckup4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61ve1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0b2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2n27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3jxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2nll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckkyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0wrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2im4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkder") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b4dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62etk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4k1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vryms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_datom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grqob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi18m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0s50") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunforgelancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunforgelancer.tres new file mode 100644 index 0000000..a23a272 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunforgelancer.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://hasrqo6uvqvo"] + +[ext_resource type="Texture2D" uid="uid://d2g0g76qcad35" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png" id="1_3dhla"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxxb"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dcam"] +atlas = ExtResource("1_3dhla") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_intys"] +atlas = ExtResource("1_3dhla") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhrv5"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vurt"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i7hk"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo1nv"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rfno"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps11r"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctj32"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bfer"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leify"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv0eh"] +atlas = ExtResource("1_3dhla") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekt7v"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgasg"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slvjo"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p4pv"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i71j"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owlni"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a2xm"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts1me"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikekn"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltkul"] +atlas = ExtResource("1_3dhla") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jdq1"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vumur"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we0bl"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g0xk"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_785ht"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeync"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wknaq"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtv6w"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_266dr"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbp0i"] +atlas = ExtResource("1_3dhla") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl6bn"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnl0h"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_026nt"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hicqu"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thl7m"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfc5w"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljxg1"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip5at"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yee4"] +atlas = ExtResource("1_3dhla") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixrb8"] +atlas = ExtResource("1_3dhla") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjxev"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw6hw"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkynk"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhpa1"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lejvj"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owc0e"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xleov"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2bqw"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c2x8"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ecb1"] +atlas = ExtResource("1_3dhla") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h03dg"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f45be"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owdse"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaupm"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mww5n"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbhjq"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so08a"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uvuh"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfrof"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcucc"] +atlas = ExtResource("1_3dhla") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j18fq"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqpb1"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf4hk"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nihi"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn88q"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owepk"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ojxp"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugg8o"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3inv"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg3k7"] +atlas = ExtResource("1_3dhla") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te3ka"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdlwh"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgymt"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7qh4"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28t5w"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inf0b"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axygk"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckccl"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boac8"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkllt"] +atlas = ExtResource("1_3dhla") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_duxxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dcam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_intys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhrv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vurt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i7hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo1nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rfno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps11r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctj32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bfer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leify") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv0eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekt7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgasg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slvjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p4pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i71j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owlni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a2xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts1me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikekn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltkul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jdq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vumur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we0bl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g0xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_785ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeync") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wknaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtv6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_266dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbp0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl6bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnl0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_026nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hicqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thl7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfc5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljxg1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip5at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yee4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixrb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjxev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw6hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkynk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhpa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lejvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owc0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xleov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2bqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c2x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ecb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h03dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f45be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owdse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaupm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mww5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbhjq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so08a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uvuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfrof") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcucc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j18fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqpb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf4hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nihi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn88q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owepk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ojxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugg8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3inv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg3k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te3ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdlwh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgymt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7qh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28t5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inf0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axygk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckccl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boac8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkllt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunriser.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunriser.tres new file mode 100644 index 0000000..28000fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunriser.tres @@ -0,0 +1,428 @@ +[gd_resource type="SpriteFrames" load_steps=58 format=3 uid="uid://cc34oi30yauvh"] + +[ext_resource type="Texture2D" uid="uid://cfrpy811la6h1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png" id="1_0q251"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y46b5"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mjno"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01p77"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nimw"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6n38"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueo44"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81dis"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlqsg"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciwhg"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o430q"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loj83"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oowk"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd0vf"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uedwm"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjsym"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaeek"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk0ga"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8alm7"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ah0u"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13k2l"] +atlas = ExtResource("1_0q251") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiakt"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj07a"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdghx"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r050"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ambli"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl0hs"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hasr8"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klgf0"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eltkv"] +atlas = ExtResource("1_0q251") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db7o6"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y1wy"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1aeq"] +atlas = ExtResource("1_0q251") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q83i1"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsfvl"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe0d4"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ogg"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22xyk"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22git"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ppb"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqb10"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgfqb"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puknd"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0ox7"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5cep"] +atlas = ExtResource("1_0q251") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey58v"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q632"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajt31"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te71j"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7vq5"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8qfs"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grut1"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evfxb"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8085o"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hx1q"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puixp"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg3la"] +atlas = ExtResource("1_0q251") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y46b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mjno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01p77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nimw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6n38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueo44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81dis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlqsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciwhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o430q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loj83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oowk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd0vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uedwm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjsym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaeek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk0ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8alm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ah0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13k2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiakt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj07a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdghx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r050") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ambli") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl0hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hasr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klgf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eltkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db7o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y1wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1aeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q83i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsfvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe0d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ogg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_22xyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22git") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ppb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqb10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgfqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puknd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0ox7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5cep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey58v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q632") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajt31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te71j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7vq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8qfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grut1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evfxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8085o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hx1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puixp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg3la") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonemaiden.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonemaiden.tres new file mode 100644 index 0000000..e2e29de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonemaiden.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://du0fol55oj2y1"] + +[ext_resource type="Texture2D" uid="uid://xvnwvwvthqeu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png" id="1_ghsrd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0y5e"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yinb6"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01l4q"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5blng"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_257lh"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omsk0"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27ae5"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hu2v"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koytx"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h5mr"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccrx2"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2kot"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebg31"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtlcr"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akod8"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jrsw"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06i5b"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p43t3"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8nvs"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qukic"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41woq"] +atlas = ExtResource("1_ghsrd") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqc6k"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndr4n"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu6l6"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxqpt"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wdu3"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26di7"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jn1s"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b474c"] +atlas = ExtResource("1_ghsrd") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fq2v"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5isk3"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifubb"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g7po"] +atlas = ExtResource("1_ghsrd") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to5o2"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lop2e"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c01u"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rncjs"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwuc6"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrhs0"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjtif"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymu6"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52pbu"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k8f8"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0gph"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t41qe"] +atlas = ExtResource("1_ghsrd") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt0t6"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl2k3"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gicll"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb5d5"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3s6i"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bd5p"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjkk3"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twn68"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khkg1"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht4eh"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg262"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6j3u"] +atlas = ExtResource("1_ghsrd") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0y5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yinb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01l4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5blng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_257lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omsk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27ae5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hu2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koytx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h5mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccrx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2kot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebg31") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtlcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akod8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jrsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06i5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p43t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8nvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qukic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41woq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqc6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndr4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu6l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxqpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wdu3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_26di7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jn1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b474c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fq2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5isk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifubb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g7po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to5o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lop2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c01u") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rncjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwuc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrhs0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjtif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52pbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k8f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0gph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t41qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt0t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl2k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gicll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb5d5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3s6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bd5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjkk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twn68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khkg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht4eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg262") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6j3u") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonetemplar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonetemplar.tres new file mode 100644 index 0000000..537e08f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunstonetemplar.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://djl0rtqx1siml"] + +[ext_resource type="Texture2D" uid="uid://dyghy8or6bus0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png" id="1_bhemo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_40sps"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocqi7"] +atlas = ExtResource("1_bhemo") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5owx"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8umo"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihxci"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc0vw"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3luu"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oygk3"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2opx"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp5l2"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jju0b"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls1kq"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ffb"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m27jw"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahacn"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0if32"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oj55"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgt8p"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex236"] +atlas = ExtResource("1_bhemo") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi0t8"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oblc"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjg4w"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmbyr"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i2xj"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0fcc"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cosyg"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eupnd"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_silnp"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1ans"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wlx6"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v4td"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s75v"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgurn"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtsjs"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isdjn"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvkfn"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l62nw"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns5mo"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnmvd"] +atlas = ExtResource("1_bhemo") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbswx"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coitj"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twnbd"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc3vr"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qerky"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gin2"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23x36"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42bbh"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xj8a"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1ryx"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfrse"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8q7x"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n1u0"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsla"] +atlas = ExtResource("1_bhemo") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e30il"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arywt"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijprj"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp7wi"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crk18"] +atlas = ExtResource("1_bhemo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqwai"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_revgk"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwd1a"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wukl"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x1as"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t38n"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2jnd"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1bmu"] +atlas = ExtResource("1_bhemo") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_40sps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocqi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5owx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8umo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihxci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc0vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3luu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oygk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2opx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp5l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jju0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls1kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ffb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m27jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahacn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0if32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oj55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgt8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex236") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi0t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oblc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjg4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmbyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i2xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0fcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cosyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eupnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_silnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1ans") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wlx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v4td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s75v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgurn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtsjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isdjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvkfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l62nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns5mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnmvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbswx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coitj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twnbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc3vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qerky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gin2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23x36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42bbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xj8a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1ryx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfrse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8q7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n1u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acsla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e30il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arywt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijprj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp7wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crk18") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqwai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_revgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwd1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wukl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x1as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t38n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2jnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1bmu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunwisp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunwisp.tres new file mode 100644 index 0000000..713823f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_sunwisp.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://dlo2pfiskpkcr"] + +[ext_resource type="Texture2D" uid="uid://cwh7k5xa51snu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png" id="1_ein07"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_306i8"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imr6m"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow6s0"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx2w6"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k121a"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlptw"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13wha"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uw3j"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma03e"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m18s"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gtgm"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjder"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3qk2"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t4rs"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gmfg"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48fi0"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ms5"] +atlas = ExtResource("1_ein07") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_013kl"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71x0r"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2pbq"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x5bm"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orq3n"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrjr1"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ay2"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w54k6"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck4j7"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsdjx"] +atlas = ExtResource("1_ein07") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbv5t"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84ook"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piown"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng1dw"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ewvl"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27rrn"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvl7m"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn7aj"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bghdv"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6mjv"] +atlas = ExtResource("1_ein07") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbapn"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3mhw"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyet5"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvmv"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idetu"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulrxl"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm7d4"] +atlas = ExtResource("1_ein07") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3mey"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3jqd"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv45e"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qssi"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boamh"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slhit"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dil6"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgj8a"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvl08"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li8ux"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo8vl"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5oxx"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14kxa"] +atlas = ExtResource("1_ein07") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uc2m"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80yae"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2licu"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx7ui"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq70d"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b013d"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5b5l"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g67al"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr3m3"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl1np"] +atlas = ExtResource("1_ein07") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehjxx"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm65s"] +atlas = ExtResource("1_ein07") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgb8t"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k50e"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf0n6"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hss0o"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sby8s"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n30vp"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wugm"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkch1"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h5uk"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml0jo"] +atlas = ExtResource("1_ein07") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l4xw"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t34wj"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf5nk"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t24h4"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nea62"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay1f1"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkb7x"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp6pa"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf8ip"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_504d3"] +atlas = ExtResource("1_ein07") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_306i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imr6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow6s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx2w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k121a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlptw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13wha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uw3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma03e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m18s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gtgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjder") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3qk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t4rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gmfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48fi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ms5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_013kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71x0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2pbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x5bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orq3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrjr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ay2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w54k6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck4j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsdjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbv5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84ook") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piown") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng1dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ewvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27rrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvl7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn7aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bghdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6mjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbapn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3mhw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyet5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idetu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulrxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm7d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3mey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3jqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv45e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qssi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boamh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slhit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dil6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgj8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvl08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li8ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo8vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5oxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14kxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uc2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80yae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2licu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx7ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq70d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b013d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5b5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g67al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr3m3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl1np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehjxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm65s") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgb8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k50e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf0n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hss0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sby8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n30vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wugm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkch1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h5uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml0jo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l4xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t34wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf5nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t24h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nea62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay1f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkb7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp6pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf8ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_504d3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_support.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_support.tres new file mode 100644 index 0000000..6791fa4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_support.tres @@ -0,0 +1,365 @@ +[gd_resource type="SpriteFrames" load_steps=49 format=3 uid="uid://wfuc3d8yickf"] + +[ext_resource type="Texture2D" uid="uid://4mx7aw0m55tn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png" id="1_hrep3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbgtm"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjhqj"] +atlas = ExtResource("1_hrep3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvbad"] +atlas = ExtResource("1_hrep3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7juc"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uuio"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf6at"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1lpg"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0aac"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fhvt"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_262lv"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reib8"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jexkx"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ths8m"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga1rl"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ttp"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arla8"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jo28"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gls55"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klomu"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cbu6"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmhyf"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oboil"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87opl"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqi64"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11l8p"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gv53"] +atlas = ExtResource("1_hrep3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wiqe"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipw1q"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57fjf"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elybl"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slah6"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfmy1"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n50pm"] +atlas = ExtResource("1_hrep3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78fk1"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luwhi"] +atlas = ExtResource("1_hrep3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp38k"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snmy3"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ipvm"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5dvu"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1nbj"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2n3g"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvgvt"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pth1b"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlqrp"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si0c6"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsd7a"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glwtr"] +atlas = ExtResource("1_hrep3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbgtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjhqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvbad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7juc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uuio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf6at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1lpg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0aac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fhvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_262lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reib8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jexkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ths8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga1rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ttp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arla8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jo28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gls55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klomu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cbu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmhyf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oboil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87opl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqi64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11l8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gv53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wiqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipw1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57fjf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_elybl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slah6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfmy1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n50pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78fk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luwhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp38k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snmy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ipvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5dvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1nbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2n3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvgvt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pth1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlqrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si0c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsd7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glwtr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tank.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tank.tres new file mode 100644 index 0000000..c222009 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tank.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://cgqgm558f6kcn"] + +[ext_resource type="Texture2D" uid="uid://c6x6oay31gfuu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png" id="1_kyy1a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8syj"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey8b4"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85xa7"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocepy"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nedaj"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i4v5"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvdhy"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cckbb"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx72l"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofcmk"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h82nm"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg4mo"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5mjp"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiyk8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7tf4"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oncpo"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k7rx"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mt8h"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgic8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd6wh"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o6dc"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3rfr"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kvlg"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hognp"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suqhf"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa6rt"] +atlas = ExtResource("1_kyy1a") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo6v8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jscwr"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxv4x"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsmpa"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4v2m"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k26pb"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77blm"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ptdn"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g36p8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jg3s"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rknt"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd71v"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqs12"] +atlas = ExtResource("1_kyy1a") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmryi"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dirr4"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5uvc"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amkwh"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmaio"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2masf"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urrnt"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1imkf"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aewyo"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvg0e"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f7gh"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmcib"] +atlas = ExtResource("1_kyy1a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxllg"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw4bh"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjryb"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c3t5"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqkil"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rob3"] +atlas = ExtResource("1_kyy1a") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl60b"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhlbj"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6kq8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5jhg"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiuc2"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l4wv"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bggx"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f4o8"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spiia"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtixn"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdpcx"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0dd7"] +atlas = ExtResource("1_kyy1a") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8syj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey8b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85xa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocepy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nedaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i4v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvdhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cckbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx72l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofcmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h82nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg4mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5mjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiyk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7tf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oncpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k7rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mt8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgic8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd6wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o6dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3rfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kvlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hognp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suqhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa6rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo6v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jscwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxv4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsmpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4v2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k26pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77blm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ptdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g36p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jg3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rknt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd71v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqs12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dirr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5uvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amkwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmaio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2masf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_urrnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1imkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aewyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvg0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f7gh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmcib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxllg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw4bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjryb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c3t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqkil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rob3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl60b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhlbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6kq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5jhg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiuc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f4o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spiia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtixn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdpcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0dd7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tier2general.tres new file mode 100644 index 0000000..482f899 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_tier2general.tres @@ -0,0 +1,931 @@ +[gd_resource type="SpriteFrames" load_steps=127 format=3 uid="uid://vx5ygtbaw1l1"] + +[ext_resource type="Texture2D" uid="uid://c6boavvm3w0e3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png" id="1_lms10"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jo01"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppbh5"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2gra"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd5yq"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfjvh"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saytb"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pors"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar62r"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfgb3"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm1xp"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wvqn"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh017"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uulx"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ln08"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg2j4"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p24tb"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2cx3"] +atlas = ExtResource("1_lms10") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0od6"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jchsf"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41hh7"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcac5"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0md5"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pri7c"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iit0b"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o4ck"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2kc4"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2jg8"] +atlas = ExtResource("1_lms10") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hinaa"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xglf3"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mndee"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ivl"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1xac"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfw5m"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncwpo"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bwhi"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8gs2"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcveu"] +atlas = ExtResource("1_lms10") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0eif"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dupsg"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb6lw"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gsox"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ig1f"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb3nh"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2a33"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drldj"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fur70"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08ctt"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp6t4"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8gqy"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiw00"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaiod"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj0rt"] +atlas = ExtResource("1_lms10") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdiku"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nohbq"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjwh8"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aywsb"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctfk6"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k001j"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc337"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3miah"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg2r8"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fvbh"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc1xk"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogwv3"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k1aa"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3nqo"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psymn"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce5dv"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5glg"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5id2"] +atlas = ExtResource("1_lms10") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hipc0"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx2f7"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkxrv"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cawkf"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fna8n"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4kly"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hr72"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7l6n"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajo6g"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gl4x"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brooy"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7lxm"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc21b"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agw56"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bii6n"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax8ge"] +atlas = ExtResource("1_lms10") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4qlf"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_img3l"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wq4c"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj8py"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3521"] +atlas = ExtResource("1_lms10") +region = Rect2(1111, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tba2p"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hhm1"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ufu"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p1bv"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08n37"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tssmg"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47va1"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph5sb"] +atlas = ExtResource("1_lms10") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcr4b"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udwxt"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vywge"] +atlas = ExtResource("1_lms10") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37mx2"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ujfg"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngwh"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f8sf"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d52x8"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_423bp"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdpa5"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5y60"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qr07"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgwwc"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf07a"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5opr"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c5w1"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nevv1"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkfx2"] +atlas = ExtResource("1_lms10") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgx1u"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tefli"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwtdf"] +atlas = ExtResource("1_lms10") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g30hb"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xyqs"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xotu"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db3kw"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kttjq"] +atlas = ExtResource("1_lms10") +region = Rect2(707, 505, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jo01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppbh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2gra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd5yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfjvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saytb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pors") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar62r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfgb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm1xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wvqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh017") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uulx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ln08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg2j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p24tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2cx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0od6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jchsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41hh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcac5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0md5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pri7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iit0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o4ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2kc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2jg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hinaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xglf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mndee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ivl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1xac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfw5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncwpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bwhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8gs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcveu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0eif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dupsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb6lw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gsox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ig1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb3nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2a33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fur70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08ctt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp6t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8gqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiw00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaiod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj0rt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdiku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nohbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjwh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aywsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctfk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k001j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc337") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3miah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg2r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fvbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc1xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogwv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k1aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3nqo") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_psymn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce5dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5glg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5id2") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hipc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx2f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkxrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cawkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fna8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4kly") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hr72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7l6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajo6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gl4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brooy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7lxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc21b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agw56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bii6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax8ge") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4qlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_img3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wq4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj8py") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3521") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tba2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hhm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ufu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p1bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08n37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tssmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47va1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph5sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcr4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udwxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vywge") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37mx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ujfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngwh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f8sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d52x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_423bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdpa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5y60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qr07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgwwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf07a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5opr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c5w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nevv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkfx2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgx1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tefli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwtdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g30hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xyqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xotu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db3kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kttjq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_warblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_warblade.tres new file mode 100644 index 0000000..2bb1138 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_warblade.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://eslomkuxciux"] + +[ext_resource type="Texture2D" uid="uid://cu22j8nuryf1f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png" id="1_8sbvu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dnbd"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujt5c"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsiss"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0xxq"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmvdv"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn4jq"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qt0y"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20tlm"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlh8c"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44io8"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elj3n"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1x76"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fyte"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwgg0"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk63o"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7rxh"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04fbw"] +atlas = ExtResource("1_8sbvu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyulf"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcbs2"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd0t4"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gr62"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sn1e"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyvyn"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggq1y"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12efl"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds12g"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7abl1"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6miyx"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjqsd"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt6re"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfv8g"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlljn"] +atlas = ExtResource("1_8sbvu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2moe"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfu2p"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy21e"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdqp7"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2j0n"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c58l"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqu0j"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6fm0"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr4va"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_070s8"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hfqg"] +atlas = ExtResource("1_8sbvu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40vsr"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqfwh"] +atlas = ExtResource("1_8sbvu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00yig"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnq3d"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cigk1"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdtyu"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwcf2"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkt6m"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7fyf"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x8n0"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r561a"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbq5q"] +atlas = ExtResource("1_8sbvu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_talws"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y15bj"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt84h"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3exjv"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t3ba"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s1rv"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkwuo"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aggx5"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuux2"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4iab"] +atlas = ExtResource("1_8sbvu") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dnbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujt5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsiss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0xxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmvdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn4jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qt0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20tlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlh8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44io8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elj3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1x76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fyte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwgg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk63o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7rxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04fbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcbs2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd0t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gr62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sn1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyvyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggq1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12efl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds12g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7abl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6miyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjqsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt6re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfv8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlljn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2moe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfu2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy21e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdqp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2j0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c58l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqu0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6fm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr4va") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_070s8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hfqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40vsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqfwh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_00yig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnq3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cigk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdtyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwcf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkt6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7fyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x8n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r561a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbq5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_talws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y15bj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt84h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3exjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t3ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s1rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkwuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aggx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuux2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4iab") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_windbladecommander.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_windbladecommander.tres new file mode 100644 index 0000000..4b42489 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_windbladecommander.tres @@ -0,0 +1,421 @@ +[gd_resource type="SpriteFrames" load_steps=57 format=3 uid="uid://b1murtfvmlxud"] + +[ext_resource type="Texture2D" uid="uid://d0ti5pbxd3rlb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png" id="1_ra8fb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_la0bc"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut2ba"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hjlv"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng2o3"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exxux"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhmvq"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j838g"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ywl0"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vblit"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_366sw"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdwcm"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0so"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6w5t"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwmh2"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw2j3"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykm8r"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud6qj"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nahxj"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk6ed"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jna4x"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w47yo"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od2sm"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34xcw"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d1tn"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnyy7"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh2hn"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiefs"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aocx"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1187"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eij86"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80db6"] +atlas = ExtResource("1_ra8fb") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kafj6"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83oey"] +atlas = ExtResource("1_ra8fb") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d8k8"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqbqr"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grxyn"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n82jh"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56een"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_381ax"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnp5j"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8qyn"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7jm2"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvwgw"] +atlas = ExtResource("1_ra8fb") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oveds"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ucj"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huvf3"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv7ul"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kgm3"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu6fp"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jk25"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2fgs"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwcmb"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7pqm"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xnxi"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyr1s"] +atlas = ExtResource("1_ra8fb") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_la0bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut2ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hjlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng2o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exxux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhmvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j838g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ywl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vblit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_366sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdwcm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig0so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6w5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwmh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw2j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykm8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud6qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nahxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk6ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jna4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w47yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od2sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34xcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d1tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnyy7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh2hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiefs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1187") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eij86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80db6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kafj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83oey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d8k8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqbqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grxyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n82jh") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56een") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_381ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnp5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8qyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7jm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvwgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oveds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ucj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huvf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv7ul") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kgm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu6fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2fgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwcmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7pqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xnxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyr1s") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_xylestormblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_xylestormblade.tres new file mode 100644 index 0000000..0e693ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f1_xylestormblade.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://d0mmhirvmwscc"] + +[ext_resource type="Texture2D" uid="uid://jpxf1327nued" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png" id="1_dknr7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl4jg"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy1qs"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0100"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju1vx"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojyiq"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jl21"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s61gx"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1m12"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgghc"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv8gs"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufp50"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ch3f"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk2c0"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raap6"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd1rd"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm3md"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pcy3"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0y5x"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anbc7"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27fof"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvmti"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ivc0"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qnra"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxxhd"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_254ra"] +atlas = ExtResource("1_dknr7") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdvar"] +atlas = ExtResource("1_dknr7") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqgta"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i7fj"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjhyt"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysx00"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6piac"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lisjf"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcd6v"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbee7"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u27w0"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpayt"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmeg2"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wftb4"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m7ef"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38o5f"] +atlas = ExtResource("1_dknr7") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7q3s"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwjmj"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b5dt"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl4r3"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihd4h"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr2hn"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dhgm"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqgqq"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfhgi"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f4kj"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdhxf"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27gjq"] +atlas = ExtResource("1_dknr7") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl4jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy1qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0100") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju1vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojyiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jl21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s61gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1m12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgghc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv8gs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufp50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ch3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk2c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raap6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd1rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm3md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pcy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0y5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anbc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27fof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvmti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ivc0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qnra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxxhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_254ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdvar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqgta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i7fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjhyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysx00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6piac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lisjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcd6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbee7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u27w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpayt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmeg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wftb4") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m7ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38o5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7q3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwjmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b5dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl4r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihd4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr2hn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dhgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqgqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfhgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f4kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdhxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27gjq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_3rdgeneral.tres new file mode 100644 index 0000000..9dc9193 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_3rdgeneral.tres @@ -0,0 +1,777 @@ +[gd_resource type="SpriteFrames" load_steps=105 format=3 uid="uid://brtnw54376acd"] + +[ext_resource type="Texture2D" uid="uid://cgei2fffotixt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png" id="1_legsg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjmp5"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5krck"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d245"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5i70"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt1qs"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii561"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1arli"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxgnm"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gut2l"] +atlas = ExtResource("1_legsg") +region = Rect2(1134, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1vhi"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k47xs"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8hwt"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbwog"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi80f"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku8qe"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68hq6"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcktw"] +atlas = ExtResource("1_legsg") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2w1d"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qqyj"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cdol"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuh1i"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t5e4"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ule73"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsmwk"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02nrb"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg8n5"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcn67"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i3yq"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh4ee"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2te0"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24rqc"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh8m1"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koml0"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kocv5"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp13y"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6v6h"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne32b"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu2yr"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xvx4"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7t1n"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sba4l"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0y84"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnknw"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dpp7"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqid2"] +atlas = ExtResource("1_legsg") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4clt3"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8vbw"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqbtb"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uopmi"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p27kw"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aykdo"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b6a8"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkdl4"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud3ko"] +atlas = ExtResource("1_legsg") +region = Rect2(1260, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pikej"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiblg"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ukd"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x4fs"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dl4k"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heqrp"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbn3u"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dy2c"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l64p0"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xadyw"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6w28"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4rr5"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opktj"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc7gx"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uujsj"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6doaj"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ot78"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1jv4"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reyn6"] +atlas = ExtResource("1_legsg") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wje2g"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahsq4"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j756g"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8f60"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej8ph"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24gc5"] +atlas = ExtResource("1_legsg") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00upt"] +atlas = ExtResource("1_legsg") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0twj"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnqeg"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jyem"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wai31"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e1ex"] +atlas = ExtResource("1_legsg") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfm8b"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_542cv"] +atlas = ExtResource("1_legsg") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsdho"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j8v1"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl7se"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3re0t"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwlvp"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwala"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uffja"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqsul"] +atlas = ExtResource("1_legsg") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td2f6"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kkkk"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mjj3"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7d2b"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl56a"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaae8"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ncs6"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfac1"] +atlas = ExtResource("1_legsg") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjmp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5krck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d245") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5i70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt1qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii561") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1arli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxgnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gut2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1vhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k47xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8hwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbwog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi80f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku8qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68hq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2w1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qqyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cdol") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuh1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t5e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ule73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsmwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02nrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg8n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcn67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i3yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh4ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2te0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24rqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh8m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koml0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kocv5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp13y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6v6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne32b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu2yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xvx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7t1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sba4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0y84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnknw") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dpp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqid2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4clt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8vbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqbtb") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uopmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p27kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aykdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b6a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkdl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud3ko") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pikej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiblg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ukd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x4fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dl4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heqrp") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbn3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dy2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l64p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xadyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6w28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4rr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opktj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc7gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uujsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6doaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ot78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1jv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reyn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wje2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahsq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j756g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8f60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej8ph") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24gc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00upt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0twj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnqeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jyem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wai31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e1ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfm8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_542cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsdho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j8v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl7se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3re0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwlvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwala") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uffja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqsul") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_td2f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kkkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mjj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7d2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl56a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaae8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ncs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfac1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ace.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ace.tres new file mode 100644 index 0000000..feaad2d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ace.tres @@ -0,0 +1,881 @@ +[gd_resource type="SpriteFrames" load_steps=122 format=3 uid="uid://c0a8bcn8afg1u"] + +[ext_resource type="Texture2D" uid="uid://l7n0xlkkc24a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png" id="1_ahtxe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h45td"] +atlas = ExtResource("1_ahtxe") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqoj4"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7id5"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buld7"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpe2k"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af57x"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06mwc"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2j1f"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6glex"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqbt8"] +atlas = ExtResource("1_ahtxe") +region = Rect2(818, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkyb1"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf5of"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_788rp"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n050n"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o62w"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2366"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa78j"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpsti"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym6yy"] +atlas = ExtResource("1_ahtxe") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25p6j"] +atlas = ExtResource("1_ahtxe") +region = Rect2(717, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7v36"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lixo0"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28fhc"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol4x3"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_575j1"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpywo"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhup0"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc88i"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jcxt"] +atlas = ExtResource("1_ahtxe") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q251q"] +atlas = ExtResource("1_ahtxe") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wftc1"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f467p"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp4nx"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq18c"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0no3"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my8ww"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34vgl"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0nie"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjgmj"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wq0r"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bdf3"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ody6t"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rr2t"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41plc"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sysj0"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2hr8"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t6wu"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bwko"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdg3v"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72t2l"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt1f4"] +atlas = ExtResource("1_ahtxe") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08int"] +atlas = ExtResource("1_ahtxe") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yt8u"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41dyr"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fvmg"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bck"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t088"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ocdg"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n55l2"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr08l"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg2i6"] +atlas = ExtResource("1_ahtxe") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2tkn"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2b5r"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkqf8"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmydv"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dc1w"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mgvq"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py8ap"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1hc"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqnrp"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdrr2"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqiyt"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uvt7"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3bbc"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ny04"] +atlas = ExtResource("1_ahtxe") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ihu3"] +atlas = ExtResource("1_ahtxe") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwbf8"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihmxd"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stis6"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6md3"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc2jr"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d3ov"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlisb"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xwcv"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo0pe"] +atlas = ExtResource("1_ahtxe") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipay5"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyc34"] +atlas = ExtResource("1_ahtxe") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvlc6"] +atlas = ExtResource("1_ahtxe") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d141d"] +atlas = ExtResource("1_ahtxe") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk02n"] +atlas = ExtResource("1_ahtxe") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drg8k"] +atlas = ExtResource("1_ahtxe") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p261g"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sspa"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4trq5"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drpuf"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la8mu"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh6xr"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq84u"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp5mq"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dx2e"] +atlas = ExtResource("1_ahtxe") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgoua"] +atlas = ExtResource("1_ahtxe") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk56h"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mgxt"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lf07"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfvr0"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bulf"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efncn"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_087lg"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkmob"] +atlas = ExtResource("1_ahtxe") +region = Rect2(101, 123, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubsuo"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 82, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5lyk"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 41, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aano7"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 0, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjhqt"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16g6k"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17crx"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ul88"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uoma"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncm24"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kfrl"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws50m"] +atlas = ExtResource("1_ahtxe") +region = Rect2(0, 123, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h45td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqoj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7id5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buld7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpe2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af57x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06mwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2j1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6glex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqbt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkyb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf5of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_788rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n050n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o62w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2366") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa78j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpsti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym6yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25p6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7v36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lixo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28fhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol4x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_575j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpywo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhup0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc88i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jcxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q251q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wftc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f467p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp4nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq18c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0no3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my8ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34vgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0nie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjgmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wq0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bdf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ody6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rr2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41plc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sysj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2hr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t6wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bwko") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdg3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72t2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt1f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08int") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yt8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41dyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fvmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48bck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t088") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ocdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n55l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr08l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg2i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2tkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2b5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkqf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmydv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dc1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mgvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py8ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqnrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdrr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqiyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uvt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3bbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ny04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ihu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwbf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihmxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stis6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6md3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc2jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d3ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlisb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xwcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo0pe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipay5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyc34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvlc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d141d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk02n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drg8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p261g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sspa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4trq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drpuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la8mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh6xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq84u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp5mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dx2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgoua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk56h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mgxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lf07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfvr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efncn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_087lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkmob") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubsuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5lyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aano7") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjhqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16g6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17crx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ul88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uoma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncm24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kfrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws50m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneral.tres new file mode 100644 index 0000000..41f0d72 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneral.tres @@ -0,0 +1,763 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://c5qao31iyju4o"] + +[ext_resource type="Texture2D" uid="uid://c4r62sw2b624" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png" id="1_utcir"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5x14"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydov5"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yse2a"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prpsr"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mhqy"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyt6f"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soxh4"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45xyd"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gnou"] +atlas = ExtResource("1_utcir") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dsuo"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tytcl"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwb5o"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xb75"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymhqe"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjdre"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrlvn"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdp8m"] +atlas = ExtResource("1_utcir") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e478k"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8bf7"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyt04"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7j8t"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s5mi"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6qx1"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccavg"] +atlas = ExtResource("1_utcir") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smaif"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0igl"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hqri"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg10o"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gepvj"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fwsb"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csefd"] +atlas = ExtResource("1_utcir") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oe2t"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgo1p"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qjqf"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gibd"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2e0t"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igwbn"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph0g3"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvtsp"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c434i"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fwir"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8g7a"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j365t"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocnak"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4wvq"] +atlas = ExtResource("1_utcir") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vosi8"] +atlas = ExtResource("1_utcir") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv3h6"] +atlas = ExtResource("1_utcir") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82pg4"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l57a"] +atlas = ExtResource("1_utcir") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sksvl"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2unoo"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80o0l"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgql8"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0i3d"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkf7p"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x5lh"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hvwk"] +atlas = ExtResource("1_utcir") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8p3n"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8e7h"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acc12"] +atlas = ExtResource("1_utcir") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8mnu"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3df2v"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djs4w"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7q7r"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgfdh"] +atlas = ExtResource("1_utcir") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw0ld"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74k4s"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3abba"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaad2"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ger42"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy0ae"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqn03"] +atlas = ExtResource("1_utcir") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwgqq"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0m7v"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bue6u"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omfds"] +atlas = ExtResource("1_utcir") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rchi4"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rehl"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_566k2"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrvrk"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlr8v"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kdku"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j1xv"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2bc5"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4i7"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jcne"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t2n2"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvqyq"] +atlas = ExtResource("1_utcir") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3umij"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8ih7"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ob4l"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohif5"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrkox"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05y14"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo5sp"] +atlas = ExtResource("1_utcir") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3xte"] +atlas = ExtResource("1_utcir") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcqrx"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ehfp"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4q02"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b7vc"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m84cy"] +atlas = ExtResource("1_utcir") +region = Rect2(262, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5x14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydov5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yse2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prpsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mhqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyt6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soxh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45xyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gnou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dsuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tytcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwb5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xb75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymhqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjdre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrlvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdp8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e478k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8bf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyt04") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7j8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s5mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6qx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccavg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smaif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0igl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hqri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg10o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gepvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fwsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csefd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oe2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgo1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qjqf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gibd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2e0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igwbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph0g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvtsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c434i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fwir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8g7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j365t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocnak") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4wvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vosi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv3h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82pg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l57a") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sksvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2unoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80o0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgql8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0i3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkf7p") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x5lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hvwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8p3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8e7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acc12") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8mnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3df2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djs4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7q7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgfdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw0ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74k4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3abba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaad2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ger42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy0ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqn03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwgqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0m7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bue6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omfds") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rchi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rehl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_566k2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrvrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlr8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kdku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j1xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2bc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jcne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t2n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvqyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3umij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8ih7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ob4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohif5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrkox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05y14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo5sp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3xte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcqrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ehfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4q02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b7vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m84cy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneraltier2.tres new file mode 100644 index 0000000..792ab0c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_altgeneraltier2.tres @@ -0,0 +1,833 @@ +[gd_resource type="SpriteFrames" load_steps=113 format=3 uid="uid://xw6gt3hdmh0x"] + +[ext_resource type="Texture2D" uid="uid://bet44hmv3kw2r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png" id="1_t63m3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ey27"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u253q"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ob5f"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha3l3"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m56b8"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyh1t"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb621"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hrdx"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaohm"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bihew"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7he4l"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h34wm"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsixr"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iobc0"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uof21"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2r8n"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72l8m"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtp3d"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn6as"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50j2w"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uinh"] +atlas = ExtResource("1_t63m3") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe6bk"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akwe7"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71qly"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh3to"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq8fe"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf1cb"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3dgk"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6avn"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_802em"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8q4h"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyend"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hhit"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gohlm"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybb76"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeie2"] +atlas = ExtResource("1_t63m3") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvghe"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx87x"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05jnp"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqigl"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7wo1"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w150"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lst0a"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e60jv"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ymg"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o8sc"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqkb2"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dbu5"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la273"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cdbx"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u2ch"] +atlas = ExtResource("1_t63m3") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h0s0"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6inc4"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ahu4"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h87vk"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s5xh"] +atlas = ExtResource("1_t63m3") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdbp2"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy70g"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10nii"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi77l"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adpk4"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r8oq"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n2ob"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amv4s"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vqc0"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq7sp"] +atlas = ExtResource("1_t63m3") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx0lr"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lxyc"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omce8"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keq16"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g7yf"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqyq"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1iq4"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8di4"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvnmc"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spx3m"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbty7"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wwu2"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2mgw"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u48o8"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrr0v"] +atlas = ExtResource("1_t63m3") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yhrn"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aieln"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_043bi"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1vt8"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pot13"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgov0"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ij7"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doxi0"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5nb3"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nki4n"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hsix"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67n8m"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j5xy"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfge1"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dp72"] +atlas = ExtResource("1_t63m3") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qretm"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omx2y"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07y83"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1s2w"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i5pi"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gsva"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vrrc"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2wyt"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhi5r"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6oy7"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt35w"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3roqg"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gur51"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvai6"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdji5"] +atlas = ExtResource("1_t63m3") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ey27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u253q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ob5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha3l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m56b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyh1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb621") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hrdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaohm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bihew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7he4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h34wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsixr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iobc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uof21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2r8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72l8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtp3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn6as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50j2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uinh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe6bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akwe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71qly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh3to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq8fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf1cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3dgk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6avn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_802em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8q4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyend") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hhit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gohlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybb76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeie2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvghe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx87x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05jnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqigl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7wo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w150") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lst0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e60jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o8sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqkb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dbu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la273") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cdbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u2ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h0s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6inc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ahu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h87vk") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s5xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdbp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy70g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10nii") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi77l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adpk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r8oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n2ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amv4s") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vqc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq7sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx0lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lxyc") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_omce8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keq16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g7yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1iq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8di4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvnmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spx3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbty7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wwu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2mgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u48o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrr0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yhrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aieln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_043bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1vt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pot13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgov0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ij7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doxi0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5nb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nki4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hsix") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_67n8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j5xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfge1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dp72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qretm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omx2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07y83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1s2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i5pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gsva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vrrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2wyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhi5r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6oy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt35w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3roqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gur51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvai6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdji5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildcommon.tres new file mode 100644 index 0000000..960f404 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildcommon.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://coslcf2c6qcuc"] + +[ext_resource type="Texture2D" uid="uid://bkwpgrinyjnke" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png" id="1_r4pux"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hutu1"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmcv5"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uabyj"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrr1r"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48uxq"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rsn0"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrvlo"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc3nb"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb4ps"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x3bl"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7nfx"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81dpq"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8npd"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvq6v"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xc5j"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uhgq"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb146"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdd4i"] +atlas = ExtResource("1_r4pux") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddyf3"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pluoo"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkvrj"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2rxl"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu4ao"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lecy"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqlb4"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rklkc"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jnku"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t23na"] +atlas = ExtResource("1_r4pux") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ihc"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kdp4"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivfpa"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0yu7"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfekq"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pw63"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4che8"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vklao"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iudo5"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgfnr"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl8ep"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hxc0"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs4lr"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stl2b"] +atlas = ExtResource("1_r4pux") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alphh"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfuw1"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fohm"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dva"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57rvy"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbiao"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k41gx"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7j60"] +atlas = ExtResource("1_r4pux") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgt0d"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gr8h"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofglu"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y34k8"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pndqp"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4wii"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhjyn"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nel72"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gcrq"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpdbm"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_085xg"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47lgc"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c74j"] +atlas = ExtResource("1_r4pux") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0e2l"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcp16"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mvw4"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te6b4"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y563x"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8ad2"] +atlas = ExtResource("1_r4pux") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrkbs"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c8qj"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x56bn"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8cfu"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfvvh"] +atlas = ExtResource("1_r4pux") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efhd6"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5whra"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8vpp"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwxw7"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5irvp"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy8xb"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyao7"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4uqp"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okjwt"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0atjg"] +atlas = ExtResource("1_r4pux") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxfpa"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yxur"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xfyj"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2wy5"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4c8c"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aajil"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7d2c"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vejjo"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvodo"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bthbu"] +atlas = ExtResource("1_r4pux") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hutu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmcv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uabyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrr1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48uxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rsn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrvlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc3nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb4ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x3bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7nfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81dpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8npd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvq6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xc5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uhgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb146") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdd4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddyf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pluoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkvrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2rxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu4ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lecy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqlb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rklkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jnku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t23na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ihc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kdp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivfpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0yu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfekq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pw63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4che8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vklao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iudo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgfnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl8ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hxc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs4lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stl2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alphh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfuw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fohm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57rvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbiao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k41gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7j60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgt0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gr8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofglu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y34k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pndqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4wii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhjyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nel72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gcrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpdbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_085xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47lgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c74j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0e2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcp16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mvw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te6b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y563x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8ad2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrkbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c8qj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x56bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8cfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfvvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efhd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5whra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8vpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwxw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5irvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy8xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyao7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4uqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okjwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0atjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxfpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yxur") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xfyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2wy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4c8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aajil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7d2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vejjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvodo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bthbu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildlegendary.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildlegendary.tres new file mode 100644 index 0000000..cc92679 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildlegendary.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://c4yqdxmh8uiw7"] + +[ext_resource type="Texture2D" uid="uid://b543kiq7svwmd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png" id="1_13dgx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyqc0"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t00j"] +atlas = ExtResource("1_13dgx") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htkth"] +atlas = ExtResource("1_13dgx") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nh3u"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bucgy"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmkcy"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anecs"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pged"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7yyu"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfwje"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4ftu"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkmb6"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g3gk"] +atlas = ExtResource("1_13dgx") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0stx0"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gblyy"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pda30"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvwaj"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaexb"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuuuo"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmsnc"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evpjp"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc0m7"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofpd0"] +atlas = ExtResource("1_13dgx") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g30ts"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbac7"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0lhr"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj6ch"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06808"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamso"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtffe"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07u7v"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc1cu"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p4be"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwrfj"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmrpq"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5cy6"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r225r"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ktw"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmruq"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m815"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp0ex"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf1uv"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d1o1"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drff4"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d636o"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npglm"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny1gq"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbfwc"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdfu1"] +atlas = ExtResource("1_13dgx") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kj1h"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5crn"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1eqk"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_347qc"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irpgi"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4lyv"] +atlas = ExtResource("1_13dgx") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8dbo"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbowh"] +atlas = ExtResource("1_13dgx") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfcvh"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj86l"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40m3f"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxl7a"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcamj"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leoln"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k51hy"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpsix"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5eox0"] +atlas = ExtResource("1_13dgx") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxnyl"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f27et"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwx5n"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sis88"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwlps"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hgee"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frar5"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h54eq"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xh8w"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_durjm"] +atlas = ExtResource("1_13dgx") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbe8g"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb61q"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yus6"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3oy0"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbnma"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khs3e"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xtoj"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljxcs"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcj87"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7m1y"] +atlas = ExtResource("1_13dgx") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyqc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t00j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htkth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nh3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bucgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmkcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anecs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pged") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7yyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfwje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4ftu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkmb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g3gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0stx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gblyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pda30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvwaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaexb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuuuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmsnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evpjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc0m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofpd0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g30ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbac7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0lhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj6ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06808") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xamso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtffe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07u7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc1cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p4be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwrfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmrpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5cy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r225r") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmruq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m815") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp0ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf1uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d1o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drff4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d636o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npglm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny1gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbfwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdfu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kj1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5crn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1eqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_347qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irpgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4lyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8dbo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbowh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfcvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj86l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_40m3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxl7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcamj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leoln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k51hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpsix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5eox0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxnyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f27et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwx5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sis88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwlps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hgee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frar5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h54eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xh8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_durjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbe8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb61q") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yus6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3oy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbnma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khs3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xtoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljxcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcj87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7m1y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildminion.tres new file mode 100644 index 0000000..f7f6227 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://c6np8tpmeandr"] + +[ext_resource type="Texture2D" uid="uid://b60bvokl6aiik" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png" id="1_nhhty"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8aww"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mprac"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vay3x"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beeeu"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lkhr"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2vqx"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwu40"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0nm8"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ropf2"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cux61"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1588"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dawgn"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14dkg"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r67ui"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym81c"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0yf1"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x77j8"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjd4j"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgxmu"] +atlas = ExtResource("1_nhhty") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4k8v"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdphu"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p6ao"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6dqj"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rpdo"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6cy5"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhu2m"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fltr7"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gdf8"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nu20"] +atlas = ExtResource("1_nhhty") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coha5"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h20jj"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcuxg"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pudei"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eooy1"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgi7p"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c02nd"] +atlas = ExtResource("1_nhhty") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ps2"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2pje"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j1kb"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x20md"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1mkx"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1bqi"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l1ul"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tol1t"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4ufg"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q28dp"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15dxf"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuqf7"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m00ou"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtwby"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hftul"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733w8"] +atlas = ExtResource("1_nhhty") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa8qb"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mptc"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu42v"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05ujh"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5j88"] +atlas = ExtResource("1_nhhty") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic7fu"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vjct"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d33xr"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lgb7"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6pjg"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh0qk"] +atlas = ExtResource("1_nhhty") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmw2s"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv8oo"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ank"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm5ub"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42621"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30b4g"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcym8"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1asb"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x87b0"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neddp"] +atlas = ExtResource("1_nhhty") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8aww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mprac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vay3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beeeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lkhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2vqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwu40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0nm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ropf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cux61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1588") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dawgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14dkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r67ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym81c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0yf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x77j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjd4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgxmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4k8v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdphu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p6ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6dqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rpdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6cy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhu2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fltr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gdf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nu20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coha5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h20jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcuxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pudei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eooy1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgi7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c02nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ps2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2pje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j1kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x20md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1mkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1bqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l1ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tol1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4ufg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q28dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15dxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuqf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m00ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtwby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hftul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_733w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa8qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mptc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu42v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05ujh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5j88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic7fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vjct") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d33xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lgb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6pjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh0qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmw2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv8oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ank") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm5ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42621") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30b4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcym8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1asb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x87b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neddp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caligrapher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caligrapher.tres new file mode 100644 index 0000000..b557110 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caligrapher.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://b8ypob0cyp62g"] + +[ext_resource type="Texture2D" uid="uid://bh5javmyusdh1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png" id="1_vr1fm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0or6h"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8dwy"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivs5c"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5nbf"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psldg"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiddu"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlsqg"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrcwu"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpwy8"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4nv3"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w7ha"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsrhi"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs6jr"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnc6v"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a52jf"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_834nn"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrl8h"] +atlas = ExtResource("1_vr1fm") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1c2n"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1u3m"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y42ak"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vopjc"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gagsn"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oalee"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp1ic"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7k8v"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpir1"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tync"] +atlas = ExtResource("1_vr1fm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0ihx"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvk6i"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgpvk"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tltpn"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6jst"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah3v6"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4llhv"] +atlas = ExtResource("1_vr1fm") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpe6o"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2usg"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgh8g"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee8fo"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34p12"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5l1n"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_174oc"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q12ib"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3td7"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1bl"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jolcd"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jlld"] +atlas = ExtResource("1_vr1fm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwckd"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuhdm"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my6yx"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw3fr"] +atlas = ExtResource("1_vr1fm") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i5n5"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fdlw"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arvte"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7me0g"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyimr"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkpnx"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1om0"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j45t"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5vx5"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f2ks"] +atlas = ExtResource("1_vr1fm") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuiqi"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej5dr"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w260k"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncyjs"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npdy8"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gnai"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdiwk"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km38k"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6kk7"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc5ir"] +atlas = ExtResource("1_vr1fm") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0or6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8dwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivs5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5nbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psldg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiddu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlsqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrcwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpwy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4nv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w7ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsrhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs6jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnc6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a52jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_834nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrl8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1c2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1u3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y42ak") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vopjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gagsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oalee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp1ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7k8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpir1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tync") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0ihx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvk6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgpvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tltpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6jst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah3v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4llhv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpe6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2usg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgh8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee8fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34p12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5l1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_174oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q12ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3td7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug1bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jolcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jlld") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwckd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuhdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my6yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw3fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i5n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fdlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arvte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7me0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyimr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkpnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1om0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j45t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5vx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f2ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuiqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej5dr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w260k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncyjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npdy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gnai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdiwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km38k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6kk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc5ir") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caster.tres new file mode 100644 index 0000000..19e705b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_caster.tres @@ -0,0 +1,447 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://duopdq01cfo1o"] + +[ext_resource type="Texture2D" uid="uid://cr852q0q3oe6f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png" id="1_tvjyh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_656tx"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh703"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55qsf"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jxp8"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bej1j"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu8pf"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsxpt"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0ohh"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap0wy"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht200"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enkwv"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acytx"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q115y"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0munn"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxftv"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04uiq"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxtut"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmcwf"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd6wx"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t47pp"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w43h0"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrrpq"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vef3r"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgbp1"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qngpo"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uknwv"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfhr4"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xakbp"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d8jf"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w260v"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtkxo"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy05l"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51556"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqg0s"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13t44"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3kmd"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wlag"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o25od"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_455a1"] +atlas = ExtResource("1_tvjyh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5adux"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq2jl"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntok5"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stpt8"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga1wp"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avaj2"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jpuh"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybjug"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 972, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk8mw"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 981, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7a5"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 990, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sftq"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 999, 8, 8) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13808"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24mhn"] +atlas = ExtResource("1_tvjyh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcsoj"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0u6n"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njtas"] +atlas = ExtResource("1_tvjyh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n8l1"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4hhn"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q142y"] +atlas = ExtResource("1_tvjyh") +region = Rect2(243, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_656tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh703") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55qsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jxp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bej1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu8pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsxpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0ohh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap0wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht200") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_enkwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acytx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q115y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0munn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxftv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04uiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxtut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmcwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd6wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t47pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w43h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrrpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vef3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgbp1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qngpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uknwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfhr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xakbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d8jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w260v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtkxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy05l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51556") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqg0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13t44") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3kmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wlag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o25od") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_455a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5adux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq2jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntok5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stpt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga1wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avaj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jpuh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybjug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk8mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sftq") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_13808") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24mhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcsoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0u6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njtas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n8l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4hhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q142y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_chakriavatar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_chakriavatar.tres new file mode 100644 index 0000000..71c6cc9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_chakriavatar.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://df1b2h841n2ur"] + +[ext_resource type="Texture2D" uid="uid://dfh4oxbwd2g10" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png" id="1_85xcn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck5pb"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2xdi"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujsmh"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4b7q"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei38t"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5stg"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3hlm"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw5iv"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8ge6"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqjgb"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2hg8"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6pu0"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7lth"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alyfl"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehcka"] +atlas = ExtResource("1_85xcn") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfl46"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hmjp"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1llwe"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eblfs"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wnep"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqwcd"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87cjv"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6nsk"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v61na"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqxme"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lykh8"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjd2k"] +atlas = ExtResource("1_85xcn") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x0em"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyanw"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s14ux"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6df45"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3303"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id41v"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w30un"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgtta"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgwpm"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73lp4"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8amc5"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4iic"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edat1"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfd56"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg2rn"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7saf"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ireo2"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg5ds"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shubj"] +atlas = ExtResource("1_85xcn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b72hk"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoc06"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqlq0"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic2qc"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7wo0"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gc6w"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fbae"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtmty"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eev2t"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t38qr"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yoc3"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo4c8"] +atlas = ExtResource("1_85xcn") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7rtd"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hrbv"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ignsi"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fafdo"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auee5"] +atlas = ExtResource("1_85xcn") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqbmq"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxcx5"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcuvk"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phkel"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g3jo"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n46sk"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xg5o"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmrj6"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu1fq"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nr0x"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcu40"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7bb7"] +atlas = ExtResource("1_85xcn") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck5pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2xdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujsmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4b7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei38t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5stg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3hlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw5iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8ge6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqjgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2hg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6pu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7lth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alyfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehcka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfl46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hmjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1llwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eblfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wnep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqwcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87cjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6nsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v61na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqxme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lykh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjd2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x0em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyanw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s14ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6df45") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3303") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id41v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w30un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgtta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgwpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73lp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8amc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4iic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edat1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfd56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg2rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7saf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ireo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg5ds") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_shubj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b72hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoc06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqlq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic2qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7wo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gc6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fbae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtmty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eev2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t38qr") +}], +"loop": true, +"name": &"die", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yoc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo4c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7rtd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hrbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ignsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fafdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auee5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqbmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxcx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcuvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phkel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g3jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n46sk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xg5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmrj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu1fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nr0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcu40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7bb7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_deathphantom.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_deathphantom.tres new file mode 100644 index 0000000..be56f6f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_deathphantom.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://kjg8vew3cnis"] + +[ext_resource type="Texture2D" uid="uid://dv7gnty4855hh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png" id="1_37d2q"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa6xj"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn38p"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4fpk"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pu62"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44crd"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmfak"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol23a"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sn16"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkw4a"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqabm"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxwue"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkvhb"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h0bt"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcbc2"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl7m8"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ute1"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5ssn"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvgjk"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsm3j"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiyfc"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcsbv"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgqw"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4adpj"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdw4f"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vikf"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gysp4"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omeo1"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8pwo"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7iai"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxvg"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c702d"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7wqk"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p3rd"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eucu"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qnhe"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06u1y"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r32p"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4jaq"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ky3k"] +atlas = ExtResource("1_37d2q") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sexc6"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nblu0"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u33u"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kck38"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hba0g"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp1db"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u30oi"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_143da"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djgbm"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eukn"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhvr4"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r16dm"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svguj"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqilc"] +atlas = ExtResource("1_37d2q") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n34ki"] +atlas = ExtResource("1_37d2q") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leavt"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45t01"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek0x7"] +atlas = ExtResource("1_37d2q") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8ayh"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v00p1"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo3kh"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da5fj"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3vmn"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbipq"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcie0"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdehv"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l81i"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv7it"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u325l"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in0r4"] +atlas = ExtResource("1_37d2q") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa6xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn38p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4fpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pu62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44crd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmfak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol23a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sn16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkw4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqabm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxwue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkvhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h0bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcbc2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl7m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ute1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5ssn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvgjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsm3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiyfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcsbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4adpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdw4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vikf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gysp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omeo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8pwo") +}], +"loop": true, +"name": &"breath", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7iai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c702d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7wqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p3rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eucu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qnhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06u1y") +}], +"loop": true, +"name": &"crawl", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r32p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4jaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ky3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sexc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nblu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u33u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kck38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hba0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp1db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u30oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_143da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djgbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eukn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhvr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r16dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svguj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqilc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n34ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leavt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_45t01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek0x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8ayh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v00p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo3kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da5fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3vmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbipq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcie0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdehv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l81i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv7it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u325l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in0r4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_demononi.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_demononi.tres new file mode 100644 index 0000000..afbcbd1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_demononi.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://bl3llh3rpidcu"] + +[ext_resource type="Texture2D" uid="uid://cgd521nda1uti" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png" id="1_ks6ls"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxaee"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26ouw"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jowg5"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8e0r"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y250e"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d5op"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxgxg"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtdlh"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bl44"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ygjt"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd53u"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mclv"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1pre"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8gjv"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg2qj"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou4en"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo78g"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h5i6"] +atlas = ExtResource("1_ks6ls") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ta37"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h01h"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4ll5"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go0li"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ifb1"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhyop"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti0mo"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wrme"] +atlas = ExtResource("1_ks6ls") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ynj"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oitgx"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2yrx"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50n33"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1frb6"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5onj"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p31oi"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbsvf"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnld1"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lbtc"] +atlas = ExtResource("1_ks6ls") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig62r"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yidf"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi8wo"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_figdr"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x03qr"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mlnu"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2alfg"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t22h"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiw7c"] +atlas = ExtResource("1_ks6ls") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut0wl"] +atlas = ExtResource("1_ks6ls") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5v1h"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llfh4"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oj6c"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aphuy"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8lo5"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdy6n"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0fvs"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwanl"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7s0f"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2xkw"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2hbq"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dls3o"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jd2b"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7q4f"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ujk7"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnom2"] +atlas = ExtResource("1_ks6ls") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmgfo"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe13p"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcjd4"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1jnl"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b7i4"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db4f1"] +atlas = ExtResource("1_ks6ls") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy24k"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2td7"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jply"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcdyn"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bthqa"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufww3"] +atlas = ExtResource("1_ks6ls") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5okj"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1vem"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlrk7"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_744mq"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi64i"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4apv"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnk8n"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0jky"] +atlas = ExtResource("1_ks6ls") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai84b"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ygaj"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_258bu"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4v3u"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8pab"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0dxe"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hhwk"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg16y"] +atlas = ExtResource("1_ks6ls") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxaee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26ouw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jowg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8e0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y250e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d5op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxgxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtdlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bl44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ygjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd53u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mclv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1pre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8gjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg2qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou4en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo78g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h5i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ta37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h01h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4ll5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go0li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ifb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhyop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti0mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wrme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ynj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oitgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2yrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50n33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1frb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5onj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p31oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbsvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnld1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lbtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig62r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yidf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi8wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_figdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x03qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mlnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2alfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t22h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiw7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut0wl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5v1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llfh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oj6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aphuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8lo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdy6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0fvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwanl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7s0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2xkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2hbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dls3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jd2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7q4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ujk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnom2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmgfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe13p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcjd4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1jnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b7i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db4f1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy24k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2td7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jply") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcdyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bthqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufww3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5okj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1vem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlrk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_744mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi64i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4apv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnk8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0jky") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai84b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ygaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_258bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4v3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8pab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0dxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hhwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg16y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eclipseasura.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eclipseasura.tres new file mode 100644 index 0000000..6e0746a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eclipseasura.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://ce55ud64l4270"] + +[ext_resource type="Texture2D" uid="uid://bp2qr64npatho" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png" id="1_uiw87"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v83tv"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k8et"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1bg7"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8787"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phile"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrt33"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo84b"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlmfi"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ctu"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hdqs"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plcyh"] +atlas = ExtResource("1_uiw87") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r13dc"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f4c4"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w11y"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48af7"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj627"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xurc"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgsbs"] +atlas = ExtResource("1_uiw87") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4pmq"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs5wf"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70abn"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x10r"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_152hd"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57huu"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sot0a"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6fbw"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfjwt"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1wje"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot1vq"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_napr2"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7iuw"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wffm5"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgnk3"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bru66"] +atlas = ExtResource("1_uiw87") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0wlj"] +atlas = ExtResource("1_uiw87") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vxtp"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vg5h"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt7e2"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5riiw"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt3ta"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ekhf"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5yub"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0micy"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxlcf"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp546"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwtgs"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ippab"] +atlas = ExtResource("1_uiw87") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvwsc"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vowr3"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmct7"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ykru"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5whj"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cevj"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg4qu"] +atlas = ExtResource("1_uiw87") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsfy"] +atlas = ExtResource("1_uiw87") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_623td"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aenw"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os1b8"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea8bq"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kun5k"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyr6k"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajgvi"] +atlas = ExtResource("1_uiw87") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n1wq"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn5cy"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhthk"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5t3o"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgwdf"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40kns"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdh7g"] +atlas = ExtResource("1_uiw87") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfrx7"] +atlas = ExtResource("1_uiw87") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54fgn"] +atlas = ExtResource("1_uiw87") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxebu"] +atlas = ExtResource("1_uiw87") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp8xp"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osy62"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ytka"] +atlas = ExtResource("1_uiw87") +region = Rect2(1048, 524, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v83tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k8et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1bg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8787") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phile") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrt33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo84b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlmfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ctu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hdqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plcyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r13dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f4c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w11y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48af7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj627") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xurc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgsbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4pmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs5wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70abn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x10r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_152hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57huu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sot0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6fbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfjwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1wje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot1vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_napr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7iuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wffm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgnk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bru66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0wlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vxtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vg5h") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt7e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5riiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt3ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ekhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5yub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0micy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxlcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp546") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwtgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ippab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvwsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vowr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmct7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ykru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5whj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cevj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg4qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_623td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aenw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os1b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea8bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kun5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyr6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajgvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n1wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn5cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhthk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5t3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgwdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40kns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdh7g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfrx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54fgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxebu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp8xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osy62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ytka") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eternitypainter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eternitypainter.tres new file mode 100644 index 0000000..7027fdc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_eternitypainter.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://b5ne6pkku41x"] + +[ext_resource type="Texture2D" uid="uid://dxy8aw11oyxgy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png" id="1_dl245"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_02gfr"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80oso"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r88bk"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v45n1"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh3ad"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl8j8"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5opk"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytcqf"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shios"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa4vo"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb8vn"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75xre"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxpq"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqesn"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tueku"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecck6"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edmy7"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t63q4"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enkpt"] +atlas = ExtResource("1_dl245") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocths"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko1n3"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_124il"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n6bf"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds33p"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlx74"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksc0j"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58h38"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctcuh"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28ncf"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b8jh"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olti0"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50cme"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bib55"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxgon"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxxtx"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yt42"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12s5k"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgxme"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nna4y"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ur1d"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24kp8"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmnjv"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbb7k"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddob6"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2i87"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1ff7"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scvtw"] +atlas = ExtResource("1_dl245") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl2xp"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpvgg"] +atlas = ExtResource("1_dl245") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtrjo"] +atlas = ExtResource("1_dl245") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ha1r"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33lx0"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bl4y"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7q8i"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbknw"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1wp7"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bind0"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2m8y"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeyhv"] +atlas = ExtResource("1_dl245") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3cq2"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4uyd"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x487"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7o6i"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gj0k"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nrvc"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeu83"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhboy"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdym4"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiipf"] +atlas = ExtResource("1_dl245") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_02gfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80oso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r88bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v45n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh3ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl8j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5opk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytcqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shios") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa4vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb8vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75xre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqesn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tueku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecck6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edmy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t63q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enkpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocths") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko1n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_124il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n6bf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds33p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlx74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksc0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58h38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctcuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28ncf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b8jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olti0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50cme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bib55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxgon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxxtx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yt42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12s5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgxme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nna4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ur1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24kp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmnjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbb7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddob6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2i87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1ff7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_scvtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl2xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpvgg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtrjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ha1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33lx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bl4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7q8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbknw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1wp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bind0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2m8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeyhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3cq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4uyd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x487") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7o6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gj0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nrvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeu83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhboy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdym4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiipf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_firewyrm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_firewyrm.tres new file mode 100644 index 0000000..057aad2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_firewyrm.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://g36uxhcwtm82"] + +[ext_resource type="Texture2D" uid="uid://dktwjlkbg02w3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png" id="1_rlqf5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa0m3"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfkvg"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fkue"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxrus"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wisqd"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03gm4"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jjrs"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2g3f"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6r75"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8dq6"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyu4u"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is7gm"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up01s"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00rao"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx1ko"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxwha"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vonhf"] +atlas = ExtResource("1_rlqf5") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osr4f"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjlf4"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfnap"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3qlj"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qnm3"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cphq6"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uapsl"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er1gg"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nffok"] +atlas = ExtResource("1_rlqf5") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n18ak"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3qew"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gjul"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x4tm"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5iws"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k43rm"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0xlx"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3htc1"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qumq"] +atlas = ExtResource("1_rlqf5") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcne0"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuiye"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfpsl"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07x6r"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltnnf"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj8x1"] +atlas = ExtResource("1_rlqf5") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jywx"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npp6m"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agesm"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em3jy"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh6sh"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsgqi"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r50rh"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxxte"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxvev"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nacdg"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oash"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2o18"] +atlas = ExtResource("1_rlqf5") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4gbs"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwayl"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib6tq"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rfft"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41b0y"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwxpo"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xygxs"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoyqr"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b5af"] +atlas = ExtResource("1_rlqf5") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mchk4"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bhm3"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owpgx"] +atlas = ExtResource("1_rlqf5") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjjfw"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ce4v"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbydb"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov6p4"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh1xj"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjtwi"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tvfw"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujd4x"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f563b"] +atlas = ExtResource("1_rlqf5") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eirv8"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f211d"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l6r0"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it0v6"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfbqg"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yokhq"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0q2"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i15ue"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nma27"] +atlas = ExtResource("1_rlqf5") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa0m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfkvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fkue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxrus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wisqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03gm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jjrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2g3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6r75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8dq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyu4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is7gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up01s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00rao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx1ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxwha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vonhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osr4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjlf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfnap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3qlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qnm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cphq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uapsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er1gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nffok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n18ak") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3qew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gjul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x4tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5iws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k43rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0xlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3htc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qumq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcne0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuiye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfpsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07x6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltnnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj8x1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jywx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npp6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agesm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em3jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh6sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsgqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r50rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxxte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxvev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nacdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oash") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2o18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4gbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwayl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib6tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rfft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41b0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwxpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xygxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoyqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b5af") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mchk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bhm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owpgx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjjfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ce4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbydb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov6p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh1xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjtwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tvfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujd4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f563b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eirv8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f211d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l6r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it0v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfbqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yokhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu0q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i15ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nma27") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_flareslinger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_flareslinger.tres new file mode 100644 index 0000000..a528a8a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_flareslinger.tres @@ -0,0 +1,636 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://bnxdoliup40w0"] + +[ext_resource type="Texture2D" uid="uid://c57fwjpgs3d4n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png" id="1_5yls8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_60r06"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dh1n"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udg3l"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nte6p"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pit01"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb8yc"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qanpu"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtfxn"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr3gm"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayi4t"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvh6o"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4c5a"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sclx5"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_733db"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haavu"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yksh"] +atlas = ExtResource("1_5yls8") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amawq"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlh3w"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hp7a"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aksw8"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n308m"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vewd4"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb1x4"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rxjb"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tcs1"] +atlas = ExtResource("1_5yls8") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apa5c"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwlvg"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykral"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfbps"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b6wo"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdp2q"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iv8b"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjwhs"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gku3"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyrkx"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkjhh"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnuta"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x7g3"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eirs"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw08p"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i17yw"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oftja"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr7io"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wp2h"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c5v7"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l508d"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlc8c"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7w34"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwj3l"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdd5m"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2iq1"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hblab"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgji0"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdb4e"] +atlas = ExtResource("1_5yls8") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g2xy"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj5xk"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjsdk"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rr4l"] +atlas = ExtResource("1_5yls8") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64pwm"] +atlas = ExtResource("1_5yls8") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4mr2"] +atlas = ExtResource("1_5yls8") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hij5k"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52cmn"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq2s2"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri3hs"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdixq"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft0yf"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuadu"] +atlas = ExtResource("1_5yls8") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miksg"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj05e"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7cj0"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu81c"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxh5x"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1huaq"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vj17"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc0vu"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prcdn"] +atlas = ExtResource("1_5yls8") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7d2p"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir3x3"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0fo4"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov4h7"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bcot"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4nv2"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edntm"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qugjw"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7xnh"] +atlas = ExtResource("1_5yls8") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_60r06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dh1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udg3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nte6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pit01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb8yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qanpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtfxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr3gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayi4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvh6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4c5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sclx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_733db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haavu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yksh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amawq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlh3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hp7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aksw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n308m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vewd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb1x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rxjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tcs1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_apa5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwlvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykral") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfbps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b6wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdp2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iv8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjwhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gku3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyrkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkjhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnuta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x7g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eirs") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw08p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i17yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oftja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr7io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wp2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c5v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l508d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlc8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7w34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwj3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdd5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2iq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hblab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgji0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdb4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g2xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj5xk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjsdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rr4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64pwm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4mr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hij5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52cmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq2s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri3hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdixq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft0yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuadu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miksg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj05e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7cj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu81c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxh5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1huaq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vj17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc0vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prcdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7d2p") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir3x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0fo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov4h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bcot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4nv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edntm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qugjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7xnh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general.tres new file mode 100644 index 0000000..3cb45db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general.tres @@ -0,0 +1,819 @@ +[gd_resource type="SpriteFrames" load_steps=111 format=3 uid="uid://3banapfa21q3"] + +[ext_resource type="Texture2D" uid="uid://ca8oyb3l3ux0o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png" id="1_41qy5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbkax"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a0fo"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4xo2"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rgyj"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy1rq"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn5cs"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3swiw"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3wjc"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xwck"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drwpl"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bklea"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7nk1"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62b1l"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubrhd"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb2q7"] +atlas = ExtResource("1_41qy5") +region = Rect2(648, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qm24"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b866a"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdo6n"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8700"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6d18"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3by6t"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubmof"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0qap"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upftg"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs3bf"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghtrl"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjst2"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ocic"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7cdm"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l767g"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh3ji"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrymr"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxqif"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi3i0"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssjea"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3je8w"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmek2"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ec1"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq5qv"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwu7w"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tycrk"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyqyi"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2j0b"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j5ja"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x86hv"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ofod"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e7m1"] +atlas = ExtResource("1_41qy5") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr3jq"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25j8b"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv03t"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3o3e"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwb6e"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe3vs"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qxxy"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74p0r"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5us3"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxc76"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_453rw"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8igvu"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb2ar"] +atlas = ExtResource("1_41qy5") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5ef4"] +atlas = ExtResource("1_41qy5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dlnq"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwpv1"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd4g3"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uih1"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh711"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnhmf"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yteab"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b780"] +atlas = ExtResource("1_41qy5") +region = Rect2(567, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i64x"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy067"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcit0"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar32r"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l4r2"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hh80"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hfaa"] +atlas = ExtResource("1_41qy5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3l7l"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3li1"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwpjc"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_852yq"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_345q4"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je8o6"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wujh"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vpou"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p70il"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7u13"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dycpw"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jild"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn524"] +atlas = ExtResource("1_41qy5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh3fo"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbsph"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o5sc"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x17v1"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rie11"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6osby"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41d8a"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8325p"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qox4"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4s5g"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebc6o"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60nlk"] +atlas = ExtResource("1_41qy5") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7gjh"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wle4v"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp750"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqh66"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihxl3"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poa7y"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebonw"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chc0h"] +atlas = ExtResource("1_41qy5") +region = Rect2(243, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbkax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a0fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4xo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rgyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy1rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn5cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3swiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3wjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xwck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drwpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bklea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7nk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62b1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubrhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb2q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qm24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b866a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdo6n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8700") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6d18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3by6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubmof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0qap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upftg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs3bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghtrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjst2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ocic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7cdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l767g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh3ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrymr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxqif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi3i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssjea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3je8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmek2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ec1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq5qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwu7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tycrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyqyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2j0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j5ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x86hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ofod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e7m1") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr3jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25j8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv03t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3o3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwb6e") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe3vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qxxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74p0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5us3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxc76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_453rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8igvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb2ar") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5ef4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dlnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwpv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd4g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uih1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh711") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnhmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yteab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b780") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i64x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy067") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcit0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar32r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l4r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hh80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hfaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3l7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3li1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwpjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_852yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_345q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je8o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wujh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vpou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p70il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7u13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dycpw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jild") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn524") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh3fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbsph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o5sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x17v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rie11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6osby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41d8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8325p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qox4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4s5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebc6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60nlk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7gjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wle4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp750") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqh66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihxl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poa7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebonw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chc0h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general_skindogehai.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general_skindogehai.tres new file mode 100644 index 0000000..d6481ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_general_skindogehai.tres @@ -0,0 +1,735 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://xvm28k2tikmi"] + +[ext_resource type="Texture2D" uid="uid://bn3dxbs7qthll" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png" id="1_1li8o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_21t32"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvqe7"] +atlas = ExtResource("1_1li8o") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1gf6"] +atlas = ExtResource("1_1li8o") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wevb"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63tqx"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ajst"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbmbx"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2jro"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha5kn"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwkyu"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8wir"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdei4"] +atlas = ExtResource("1_1li8o") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_383bl"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa60t"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3047k"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4peb"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bypao"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uugws"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j18nl"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6xo0"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w61nu"] +atlas = ExtResource("1_1li8o") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexb7"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3ubl"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk5qh"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2q1l"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jkwu"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbr1"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c57mr"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1agf"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5wj4"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of107"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbhes"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gne8l"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v72wl"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk62i"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wuih"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxvyn"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyh6n"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0ppo"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60was"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2jt1"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru82p"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riksg"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yo41"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4c2q"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veywm"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja2ic"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ut7"] +atlas = ExtResource("1_1li8o") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snnes"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of2oi"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmjkt"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktjwh"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7rgv"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvojd"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d41sc"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fp13"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuh4w"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sfky"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qwad"] +atlas = ExtResource("1_1li8o") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmdtr"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0ow2"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yovl"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70x7g"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pe8d"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ibr"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vno72"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj2nu"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iltd0"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hryrl"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u1xl"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apxxi"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8h04"] +atlas = ExtResource("1_1li8o") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_637vg"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yulcd"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us04s"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om7cg"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4qjr"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju0rh"] +atlas = ExtResource("1_1li8o") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rux8l"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8mg4"] +atlas = ExtResource("1_1li8o") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emiw6"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xovo3"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na1ie"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwbby"] +atlas = ExtResource("1_1li8o") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loqlf"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v71a4"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ag4v"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt4k6"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs4dm"] +atlas = ExtResource("1_1li8o") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8be5d"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slxcd"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ynif"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20h2n"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kefat"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5osbe"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18x24"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_717k8"] +atlas = ExtResource("1_1li8o") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_21t32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvqe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1gf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wevb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63tqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ajst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbmbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2jro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha5kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwkyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8wir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdei4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_383bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa60t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3047k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4peb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bypao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uugws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j18nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6xo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w61nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexb7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3ubl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk5qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2q1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jkwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c57mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1agf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5wj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of107") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbhes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gne8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v72wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk62i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wuih") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxvyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyh6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0ppo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60was") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2jt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru82p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riksg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yo41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4c2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veywm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja2ic") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ut7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snnes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of2oi") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmjkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktjwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7rgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d41sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fp13") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuh4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sfky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qwad") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmdtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0ow2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yovl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70x7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pe8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ibr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vno72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj2nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iltd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hryrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u1xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apxxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8h04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_637vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yulcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us04s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om7cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4qjr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju0rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rux8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8mg4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emiw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xovo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na1ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwbby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loqlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v71a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ag4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt4k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs4dm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8be5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slxcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ynif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20h2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kefat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5osbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18x24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_717k8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_geomancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_geomancer.tres new file mode 100644 index 0000000..88924e1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_geomancer.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://f0b07fqa643s"] + +[ext_resource type="Texture2D" uid="uid://dbkwpfpeo3jwk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png" id="1_c1751"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_150ct"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uphcg"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd4yb"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dju"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skt7a"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4mir"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaex3"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18wy8"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm6rn"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4n0l"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xgxs"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frolm"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yixl"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yihhn"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eowyd"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxl1t"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kiv5"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4b2l"] +atlas = ExtResource("1_c1751") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnv3q"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnkk0"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bpdq"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqx2b"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojotv"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg3hd"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ar1"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f6im"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inc7f"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycedb"] +atlas = ExtResource("1_c1751") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm2du"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dfr6"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtyx8"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsa1c"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8usa"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyrdh"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1le6e"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayu7q"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gqqh"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0r57"] +atlas = ExtResource("1_c1751") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqb4u"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ye3"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6155"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8l6r"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qoae"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hskgj"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8t1b"] +atlas = ExtResource("1_c1751") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6udo"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0pqd"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qv1i"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5868c"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqknv"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dmks"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cjxh"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixnh3"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgn3j"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvuh6"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m283k"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bnj2"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pivje"] +atlas = ExtResource("1_c1751") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2avs"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cnqm"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciq7p"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fje3b"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b6au"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwiau"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f50p3"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxb41"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oawq"] +atlas = ExtResource("1_c1751") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x54v6"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec5b3"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh03d"] +atlas = ExtResource("1_c1751") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7ef"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djbvw"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoh5g"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rredk"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk5b1"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rodlf"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gudel"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wc2w"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pawka"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojasv"] +atlas = ExtResource("1_c1751") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvfnp"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fes2p"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1y6w"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skakw"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj5ab"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pwi6"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3fca"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clsyu"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx4xc"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72r3b"] +atlas = ExtResource("1_c1751") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_150ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uphcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd4yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skt7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4mir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaex3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18wy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm6rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4n0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xgxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frolm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yixl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yihhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eowyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxl1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kiv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4b2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnv3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnkk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bpdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqx2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojotv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg3hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ar1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f6im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inc7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycedb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm2du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dfr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtyx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsa1c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8usa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyrdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1le6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayu7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gqqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0r57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqb4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ye3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6155") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8l6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qoae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hskgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8t1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6udo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0pqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qv1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5868c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqknv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dmks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cjxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixnh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgn3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvuh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m283k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bnj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pivje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2avs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cnqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciq7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fje3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b6au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwiau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f50p3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxb41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oawq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x54v6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec5b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh03d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djbvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoh5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rredk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk5b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rodlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gudel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wc2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pawka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojasv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvfnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fes2p") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1y6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skakw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj5ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pwi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3fca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clsyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx4xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72r3b") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_godpalmblacktiger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_godpalmblacktiger.tres new file mode 100644 index 0000000..8374583 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_godpalmblacktiger.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://db54jmvniev27"] + +[ext_resource type="Texture2D" uid="uid://55lq5uvyu1d8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png" id="1_8gl6i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_brfq4"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aevs"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilcur"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8qw7"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0506n"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utmf4"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0onp"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3lgi"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73li8"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8qgs"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nudij"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ionhs"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxpla"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t76dq"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rowq"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prgh6"] +atlas = ExtResource("1_8gl6i") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxig1"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6w51"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53qki"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yynbl"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6t4c"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3biiv"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhifr"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0l4g"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24v7f"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohru7"] +atlas = ExtResource("1_8gl6i") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4yan"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciasv"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hlbn"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0p03"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya362"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps5np"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg15y"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iecpb"] +atlas = ExtResource("1_8gl6i") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n3j2"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30rxk"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k8yp"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1a7m"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l7l2"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weksh"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ornsf"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fu2d"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yveom"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11caf"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6upyl"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gtw3"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8o7g"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccmfo"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mottb"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d62tq"] +atlas = ExtResource("1_8gl6i") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvmbk"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qa6j"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6croj"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq7qq"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ols2c"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oean"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20cwv"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygffx"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqxeg"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp3rh"] +atlas = ExtResource("1_8gl6i") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p8xd"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fblk"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhtgy"] +atlas = ExtResource("1_8gl6i") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d52rf"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3paqv"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ycys"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43mba"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3poqg"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aag0b"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2xak"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ytx"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3fox"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwipl"] +atlas = ExtResource("1_8gl6i") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c07bo"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4mqw"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lclwg"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p02bl"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em66h"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv2pr"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8kmr"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01dx2"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6760"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1xtj"] +atlas = ExtResource("1_8gl6i") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_src4y"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp2ax"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7woy"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu58i"] +atlas = ExtResource("1_8gl6i") +region = Rect2(404, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_brfq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aevs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilcur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8qw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0506n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utmf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0onp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3lgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73li8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8qgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nudij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ionhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxpla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t76dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rowq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prgh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxig1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6w51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53qki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yynbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6t4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3biiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhifr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0l4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24v7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohru7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4yan") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciasv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hlbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0p03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya362") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps5np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg15y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iecpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n3j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30rxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k8yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1a7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l7l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weksh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ornsf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fu2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yveom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11caf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6upyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gtw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8o7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccmfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mottb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d62tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvmbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qa6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6croj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq7qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ols2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oean") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20cwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygffx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqxeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp3rh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p8xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fblk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhtgy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d52rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3paqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ycys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43mba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3poqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aag0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2xak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3ytx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3fox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwipl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c07bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4mqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lclwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p02bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em66h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv2pr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8kmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01dx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6760") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1xtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_src4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp2ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7woy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu58i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_grandmasterzendo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_grandmasterzendo.tres new file mode 100644 index 0000000..5eb1f1e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_grandmasterzendo.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://byimrbq5pelil"] + +[ext_resource type="Texture2D" uid="uid://cusrqdkhif83l" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png" id="1_p4xlp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5t2q"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn8sg"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtvnd"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0gyf"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ysx"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mube"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pri00"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osywr"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhguk"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isjjf"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmw1e"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxclv"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qpfj"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m144f"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xre8r"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbrl"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0re2"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd44v"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c40oh"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsvq8"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxnjc"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au7y3"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lde0r"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl6kl"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aife0"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mmyk"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7by7u"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q50ij"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fsfu"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33oif"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ke5"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds43k"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip8ln"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goppi"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iww3h"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plv56"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgmd5"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r610"] +atlas = ExtResource("1_p4xlp") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3emw2"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ielt3"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlbnf"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haftn"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0vlu"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbfwi"] +atlas = ExtResource("1_p4xlp") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aclne"] +atlas = ExtResource("1_p4xlp") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78ij0"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf0qt"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6qwu"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xwux"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lhit"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w236"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1qra"] +atlas = ExtResource("1_p4xlp") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cbot"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xai7"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4wy5"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w5ki"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok5wn"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57l6j"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfnb6"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nf3o"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geu5n"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqvfl"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gknk"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wgyx"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qsjy"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxjyc"] +atlas = ExtResource("1_p4xlp") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixdyd"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxp7w"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sd5x"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eijnv"] +atlas = ExtResource("1_p4xlp") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2qw8"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1ynp"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p0il"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytrfi"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coyob"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xoq2"] +atlas = ExtResource("1_p4xlp") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glpaq"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfdyb"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jk6m"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bygc0"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o315v"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsnoh"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sk60"] +atlas = ExtResource("1_p4xlp") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gieso"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exmoe"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxah1"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgy4e"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54qjs"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ryqr"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7oel"] +atlas = ExtResource("1_p4xlp") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5t2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn8sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtvnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0gyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ysx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mube") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pri00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osywr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhguk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isjjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmw1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxclv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qpfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m144f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xre8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fbrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0re2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd44v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c40oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsvq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxnjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au7y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lde0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl6kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aife0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mmyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7by7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q50ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fsfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33oif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ke5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds43k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip8ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goppi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iww3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plv56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgmd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r610") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3emw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ielt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlbnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haftn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0vlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbfwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aclne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78ij0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf0qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6qwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xwux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lhit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w236") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1qra") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cbot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xai7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4wy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w5ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok5wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57l6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfnb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nf3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geu5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqvfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gknk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wgyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qsjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxjyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixdyd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxp7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sd5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eijnv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2qw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1ynp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p0il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytrfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coyob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xoq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glpaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfdyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jk6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bygc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o315v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsnoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sk60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gieso") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_exmoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxah1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgy4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54qjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ryqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7oel") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_hammonnladeseeker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_hammonnladeseeker.tres new file mode 100644 index 0000000..4ac87e7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_hammonnladeseeker.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://bwueuc5p2il3l"] + +[ext_resource type="Texture2D" uid="uid://ba48ngndl7tgf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png" id="1_foa3n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7al0h"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvgug"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anywi"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12w8p"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1disx"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptkkq"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ynvc"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yifr"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bonkr"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4vgd"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ceht"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kijxf"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga71t"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci2wu"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kqt1"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu2k5"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oswo"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muq0q"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57m76"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm68p"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdtby"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpg5m"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haedb"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hojvd"] +atlas = ExtResource("1_foa3n") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfcj5"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtxx"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo361"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khj01"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1p46"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un2eh"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u7m2"] +atlas = ExtResource("1_foa3n") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc7xc"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2sje"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5olhl"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kuio"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1age"] +atlas = ExtResource("1_foa3n") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egerj"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xu7a"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87oy4"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na3wv"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvqwi"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1urk"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rtb5"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0ohc"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0k5d"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_labsf"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcigj"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pihp"] +atlas = ExtResource("1_foa3n") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c81nu"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlf0m"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d5ld"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cmwb"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt6yh"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_losyi"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ntmy"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syldr"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8mso"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh72j"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56sey"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euk4p"] +atlas = ExtResource("1_foa3n") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7al0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvgug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anywi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12w8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1disx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptkkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ynvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yifr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bonkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4vgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ceht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kijxf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga71t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci2wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kqt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu2k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oswo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muq0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57m76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm68p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdtby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpg5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haedb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hojvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfcj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtxx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo361") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khj01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1p46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un2eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u7m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc7xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2sje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5olhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kuio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1age") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egerj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xu7a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_87oy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na3wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvqwi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1urk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rtb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0ohc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0k5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_labsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcigj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pihp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c81nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlf0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d5ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cmwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt6yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_losyi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ntmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syldr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8mso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh72j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56sey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euk4p") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_heartofthesonghai.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_heartofthesonghai.tres new file mode 100644 index 0000000..7056003 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_heartofthesonghai.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://c6csaq7qdj815"] + +[ext_resource type="Texture2D" uid="uid://wbpiwyks1r7f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png" id="1_7s43v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3rgr"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1avi"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smai6"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r465"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyk4n"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb57s"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc1su"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmdg3"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8lif"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6crrq"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe1iu"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unxf3"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbo74"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5084s"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pam7f"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyoyo"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7a23"] +atlas = ExtResource("1_7s43v") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsw72"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxrk4"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43je2"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opr3d"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnilr"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib6kb"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqo6j"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yll5u"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkvm5"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx7i8"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p7t6"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4llen"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2fdc"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rll44"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpqxc"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l46vk"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwr1s"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgi1u"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0nh7"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x161"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbhmi"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5brs"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pct3p"] +atlas = ExtResource("1_7s43v") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpy8y"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwj6u"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41hlo"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axlll"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgx6j"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bft4"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocrgu"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_786iu"] +atlas = ExtResource("1_7s43v") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfoef"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rn4s"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgkbt"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ompix"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx3i1"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkvg7"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d5wl"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgssg"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsf6o"] +atlas = ExtResource("1_7s43v") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uio8i"] +atlas = ExtResource("1_7s43v") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npsjm"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iniuq"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsk5d"] +atlas = ExtResource("1_7s43v") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xngq1"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65l22"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjjqr"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lb7k"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2o0m"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfgmb"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl3o6"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q20pn"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65uue"] +atlas = ExtResource("1_7s43v") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvdi"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_febki"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nfhi"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rsf1"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypkk2"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6vkl"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4p3v"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ovj"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chq5g"] +atlas = ExtResource("1_7s43v") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3rgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1avi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smai6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r465") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyk4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb57s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc1su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmdg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8lif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6crrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe1iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unxf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbo74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5084s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pam7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyoyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7a23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsw72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxrk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43je2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opr3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnilr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib6kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqo6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yll5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkvm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx7i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p7t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4llen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2fdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rll44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpqxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l46vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwr1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgi1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0nh7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x161") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbhmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5brs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pct3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpy8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwj6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41hlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axlll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgx6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bft4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocrgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_786iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfoef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rn4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgkbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ompix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx3i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkvg7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d5wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgssg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsf6o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uio8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npsjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iniuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsk5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xngq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65l22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjjqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lb7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2o0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfgmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl3o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q20pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65uue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wvdi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_febki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nfhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rsf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypkk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6vkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4p3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ovj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chq5g") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_katara.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_katara.tres new file mode 100644 index 0000000..3debbb8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_katara.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cq0t8x8j76unq"] + +[ext_resource type="Texture2D" uid="uid://o5nnool3bh0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png" id="1_psb5i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwt7o"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl348"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_152l0"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y537j"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foxij"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tisb0"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awqoy"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqdj1"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4p1l"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8g78"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hajr1"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ql8"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb85t"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qet5i"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e0r1"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfumj"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iul1e"] +atlas = ExtResource("1_psb5i") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv7b3"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x8pg"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3qr0"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q6n3"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s64ff"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s00o8"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dtoi"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ks2"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7hyw"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhkbb"] +atlas = ExtResource("1_psb5i") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_074ei"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prwav"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2u37"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6im2"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm3st"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvgcu"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir23w"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buca6"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyaa0"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2e53"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ajwx"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfa6c"] +atlas = ExtResource("1_psb5i") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc6iq"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k3n2"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejyji"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ko0"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1eh8"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo5dg"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_splma"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72pto"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ra2a"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spw7e"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7m75"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r13nf"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbikg"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca3b4"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5i72"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieequ"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hwjm"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci7gf"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahrab"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uojk0"] +atlas = ExtResource("1_psb5i") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2drrk"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2bt0"] +atlas = ExtResource("1_psb5i") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jonta"] +atlas = ExtResource("1_psb5i") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onkag"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ephej"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my1xt"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxalr"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2hd3"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl0p4"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dbne"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4utbn"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2q5k"] +atlas = ExtResource("1_psb5i") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7intc"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykebl"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfrqh"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxn3r"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddxrm"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vi6b"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4yyc"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ev5"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_604mf"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72aa4"] +atlas = ExtResource("1_psb5i") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwt7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl348") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_152l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y537j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foxij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tisb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awqoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqdj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4p1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8g78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hajr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ql8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb85t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qet5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e0r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfumj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iul1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv7b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x8pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3qr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q6n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s64ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s00o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dtoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ks2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7hyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhkbb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_074ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prwav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2u37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6im2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm3st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvgcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir23w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buca6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyaa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2e53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ajwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfa6c") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc6iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k3n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejyji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ko0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1eh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo5dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_splma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72pto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ra2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spw7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7m75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r13nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbikg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca3b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5i72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieequ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hwjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci7gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahrab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uojk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2drrk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2bt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jonta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onkag") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ephej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my1xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxalr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2hd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl0p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dbne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4utbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2q5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7intc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykebl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfrqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxn3r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddxrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vi6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4yyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ev5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_604mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72aa4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_keshraifanblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_keshraifanblade.tres new file mode 100644 index 0000000..03f8894 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_keshraifanblade.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://dfju18485omjo"] + +[ext_resource type="Texture2D" uid="uid://dqor3s23fa1e6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png" id="1_ttdlj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfgf7"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yfnh"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e774"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuich"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hocse"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bof1"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpvqo"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0srdq"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej4mi"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx3r5"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiyvw"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6htpw"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypedx"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0vj3"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvlt1"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwica"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa777"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqfl6"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cnx8"] +atlas = ExtResource("1_ttdlj") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpxeo"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee4st"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqua0"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpa5b"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fba2g"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wn7h"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmv8o"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pmef"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5trw"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqxwb"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg4xk"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6pgv"] +atlas = ExtResource("1_ttdlj") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e13nl"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ofdw"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bshkc"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7bse"] +atlas = ExtResource("1_ttdlj") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01lom"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5gxh"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12e23"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alvos"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0x6a"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17e8o"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4j8q"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inwdd"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vujdj"] +atlas = ExtResource("1_ttdlj") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4isuu"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvqrq"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmwt7"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acqjk"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sdqc"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7ban"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vveqe"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_led26"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0vwi"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnmcn"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs4aj"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6ory"] +atlas = ExtResource("1_ttdlj") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aov2b"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqg3b"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq45n"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g1sr"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pkpx"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqlie"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi1vi"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y402"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogr1n"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tmdp"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prpb8"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ao1h"] +atlas = ExtResource("1_ttdlj") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfgf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yfnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e774") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuich") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hocse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bof1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpvqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0srdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej4mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx3r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiyvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6htpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypedx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0vj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvlt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwica") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa777") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqfl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cnx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpxeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee4st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpa5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fba2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wn7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmv8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pmef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5trw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqxwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg4xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6pgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e13nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ofdw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bshkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7bse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01lom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5gxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12e23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alvos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0x6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17e8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4j8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inwdd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vujdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4isuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvqrq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmwt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acqjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sdqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7ban") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vveqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_led26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0vwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnmcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs4aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6ory") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aov2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqg3b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq45n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g1sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pkpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqlie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi1vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y402") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogr1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tmdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prpb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ao1h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kibeholder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kibeholder.tres new file mode 100644 index 0000000..25ae414 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kibeholder.tres @@ -0,0 +1,622 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://b8lnbuyrllqs7"] + +[ext_resource type="Texture2D" uid="uid://dwu0i3dewdba7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png" id="1_6gl30"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxlcl"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jabx"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tqae"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2okl"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtr4o"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oigx4"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylk2i"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmybg"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d06nc"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqf2s"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uojw"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4w8j"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2wfo"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0jc7"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykgsb"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n41n6"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xxdy"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2rqh"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_177ip"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce1w2"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efgfi"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi1tx"] +atlas = ExtResource("1_6gl30") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vx0c"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j40n5"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsy5g"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_outho"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_720kk"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diop1"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwt3l"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4520"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6rgc"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xet1x"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq5w3"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy62u"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlerf"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpwnq"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87t2i"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ual3"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7ddi"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymes1"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bpbh"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17p2v"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ionw"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u5he"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k2sj"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt4ff"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k1g6"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gneqo"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqmlr"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfk1y"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moq3o"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhmke"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31xxa"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46w2v"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2rtc"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grqro"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54svv"] +atlas = ExtResource("1_6gl30") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq8ap"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7s0j"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek4ok"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c31an"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbyab"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bla1e"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tejsj"] +atlas = ExtResource("1_6gl30") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evnd5"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skxfy"] +atlas = ExtResource("1_6gl30") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itaiw"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24ud7"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vrg2"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28paj"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msdxd"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36inc"] +atlas = ExtResource("1_6gl30") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jowj"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 909, 78, 21) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl661"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 931, 78, 21) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wni3v"] +atlas = ExtResource("1_6gl30") +region = Rect2(606, 953, 78, 21) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkcbt"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1leo0"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc4cd"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koaj5"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxbya"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8abxb"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwnjb"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvicw"] +atlas = ExtResource("1_6gl30") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxlcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jabx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tqae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2okl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtr4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oigx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylk2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmybg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d06nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqf2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uojw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4w8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2wfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0jc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykgsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n41n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xxdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2rqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_177ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce1w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efgfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi1tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vx0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j40n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsy5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_outho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_720kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diop1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwt3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4520") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6rgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xet1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq5w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy62u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlerf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpwnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87t2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ual3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7ddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymes1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bpbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17p2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ionw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u5he") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k2sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt4ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k1g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gneqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqmlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfk1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moq3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhmke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31xxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46w2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2rtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grqro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54svv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq8ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7s0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek4ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c31an") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbyab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bla1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tejsj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evnd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skxfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itaiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24ud7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vrg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28paj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msdxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36inc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jowj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl661") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wni3v") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkcbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1leo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc4cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koaj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxbya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8abxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwnjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvicw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kindling.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kindling.tres new file mode 100644 index 0000000..eec3edb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_kindling.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bgc7lkeu471q1"] + +[ext_resource type="Texture2D" uid="uid://5n2cr6tey8px" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png" id="1_8tvh2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr8fi"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7rku"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqqbc"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tojyt"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ab3"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqxbr"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4c0y"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r3go"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76p53"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv45k"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1w5m"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41lha"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddw3c"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsyic"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8f5v"] +atlas = ExtResource("1_8tvh2") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn4cc"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k07f8"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io1d6"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0miks"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81v07"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yshfp"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2swol"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv1cg"] +atlas = ExtResource("1_8tvh2") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afwr4"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejyln"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob06y"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjgpl"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajq7c"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b8wb"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjrlr"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mopt"] +atlas = ExtResource("1_8tvh2") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3qb2"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ye7u"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvp41"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y3l4"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn5o2"] +atlas = ExtResource("1_8tvh2") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6cjv"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rato"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3amx0"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60mck"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q5f7"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jutgj"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4024s"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owty7"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqfs4"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m2co"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo4dl"] +atlas = ExtResource("1_8tvh2") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e7cb"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f71g"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgaur"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b5n1"] +atlas = ExtResource("1_8tvh2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvlof"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snasr"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54y3i"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukws2"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytr3"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tdqk"] +atlas = ExtResource("1_8tvh2") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8dn"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5ple"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uamdp"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoayj"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgcti"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laaoa"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isk17"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm20p"] +atlas = ExtResource("1_8tvh2") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adqfi"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8vgy"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ur15"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n227a"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu508"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ixbt"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vmp3"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tolkn"] +atlas = ExtResource("1_8tvh2") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr8fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7rku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqqbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tojyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ab3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqxbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4c0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76p53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv45k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1w5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41lha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddw3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsyic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8f5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn4cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k07f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io1d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0miks") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_81v07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yshfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2swol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv1cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afwr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejyln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob06y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjgpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajq7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b8wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjrlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mopt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3qb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ye7u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvp41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y3l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn5o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6cjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rato") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3amx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60mck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q5f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jutgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4024s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owty7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqfs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m2co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo4dl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e7cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f71g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgaur") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b5n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvlof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snasr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54y3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukws2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tdqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5ple") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uamdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoayj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgcti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laaoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isk17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm20p") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_adqfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8vgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ur15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n227a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu508") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ixbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vmp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tolkn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_lanternfox.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_lanternfox.tres new file mode 100644 index 0000000..31ee05a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_lanternfox.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://cec83g1g8krq"] + +[ext_resource type="Texture2D" uid="uid://dj3khjnv2xskw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png" id="1_1lq0d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf3rq"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5mg"] +atlas = ExtResource("1_1lq0d") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsvti"] +atlas = ExtResource("1_1lq0d") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qr3v"] +atlas = ExtResource("1_1lq0d") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4ehb"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coemv"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko462"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guepf"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woxuo"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2lgh"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s18ew"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_401qw"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sply"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ympm"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emqki"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gmey"] +atlas = ExtResource("1_1lq0d") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5koxm"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqdne"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0apyg"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avxby"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwesl"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h08xd"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdn88"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bq21"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txunw"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f40f2"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_056t2"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioppk"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kie3"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ada3"] +atlas = ExtResource("1_1lq0d") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_467mp"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j8em"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3f1m"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5btjg"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg4rp"] +atlas = ExtResource("1_1lq0d") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au8nk"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c1hl"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6d20"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yqlg"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0kal"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eufds"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b02kn"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0vti"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qytjs"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66xln"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuic4"] +atlas = ExtResource("1_1lq0d") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7h54"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puvk0"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n6jj"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb5s2"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htkqt"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52cs1"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4via"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2igw"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7brp"] +atlas = ExtResource("1_1lq0d") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voglp"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6130p"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85087"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cxqn"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s2g5"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuf06"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a2os"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7hqh"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avrqm"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb2hb"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qx87"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_107iv"] +atlas = ExtResource("1_1lq0d") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf3rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsvti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qr3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4ehb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coemv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko462") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guepf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woxuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2lgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s18ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_401qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sply") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ympm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emqki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gmey") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5koxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqdne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0apyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avxby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwesl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h08xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdn88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bq21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txunw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f40f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_056t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioppk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kie3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ada3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_467mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j8em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3f1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5btjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg4rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au8nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c1hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6d20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yqlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0kal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eufds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b02kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0vti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qytjs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_66xln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuic4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7h54") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_puvk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n6jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb5s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htkqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52cs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4via") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2igw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7brp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voglp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6130p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85087") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cxqn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s2g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuf06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a2os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7hqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avrqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb2hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qx87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_107iv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mage4winds.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mage4winds.tres new file mode 100644 index 0000000..c265fff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mage4winds.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://c5sly5v7ogwmy"] + +[ext_resource type="Texture2D" uid="uid://hp0cr3u74laj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png" id="1_4m3fx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqffx"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7fxd"] +atlas = ExtResource("1_4m3fx") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6f3o"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gfe5"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yadv"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd2ku"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix3yi"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnrel"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a03jm"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ookh2"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4d3e"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qahpr"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt2bi"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ys2"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oiq3"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2kxd"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdul"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pmgj"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lmf8"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxa1x"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxv3e"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agd52"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bfum"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ubm"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4h10"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwfry"] +atlas = ExtResource("1_4m3fx") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3vyn"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0lqb"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq2xp"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhrxn"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pt27"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0pjd"] +atlas = ExtResource("1_4m3fx") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omjs5"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh5js"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62f31"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed0gl"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcn1c"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_663im"] +atlas = ExtResource("1_4m3fx") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ormf3"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psc8m"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooyuy"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iog8l"] +atlas = ExtResource("1_4m3fx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otfyw"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_268pd"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfol4"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ibe7"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygw33"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrp6b"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ju0q"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f2xa"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joo2i"] +atlas = ExtResource("1_4m3fx") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv1qw"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0tbr"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co7ig"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tc7s"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sr4g"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rhyj"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb84u"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_253dx"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2qxf"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agln4"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjfqq"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0ila"] +atlas = ExtResource("1_4m3fx") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqffx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7fxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6f3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gfe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yadv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd2ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix3yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnrel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a03jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ookh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4d3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qahpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt2bi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ys2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oiq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2kxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pmgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lmf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxa1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxv3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agd52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bfum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ubm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4h10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwfry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3vyn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0lqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq2xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhrxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pt27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0pjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omjs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh5js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62f31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed0gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcn1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_663im") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ormf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psc8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooyuy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iog8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otfyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_268pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfol4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ibe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygw33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrp6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ju0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f2xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joo2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv1qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0tbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co7ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tc7s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sr4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rhyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb84u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_253dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2qxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agln4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjfqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0ila") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_masteroftaikwai.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_masteroftaikwai.tres new file mode 100644 index 0000000..a04674c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_masteroftaikwai.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://cuaivdw2fg4dt"] + +[ext_resource type="Texture2D" uid="uid://hkf3m1ywoojm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png" id="1_eq8i2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpfwx"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyvhk"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts8dj"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47iqw"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uumll"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quojd"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8xss"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvuo6"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ims0"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfwcp"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkeus"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6q4j"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llwc2"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub8ie"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb1y3"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hrbm"] +atlas = ExtResource("1_eq8i2") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00kky"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwm2p"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2dmq"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oytm7"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68tcd"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_850bw"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an5vc"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eins7"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4itkr"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f72p"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otm0a"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7coc"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkwv6"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s220o"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64hf1"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esgvv"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7ad4"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj6x7"] +atlas = ExtResource("1_eq8i2") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vku2y"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v25ka"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl51b"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foj51"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfoqu"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oba10"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63die"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sryw4"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiyrk"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4866v"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a3t2"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo0tg"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwn2n"] +atlas = ExtResource("1_eq8i2") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41xbn"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8if6y"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rslnc"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svjt4"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leekc"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8jr5"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twslq"] +atlas = ExtResource("1_eq8i2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en345"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skfpx"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d61n"] +atlas = ExtResource("1_eq8i2") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nppgx"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4kxi"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgreq"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8684"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atas0"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik43x"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmmn8"] +atlas = ExtResource("1_eq8i2") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sftgh"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh052"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6l2r"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1qoq"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m57xn"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj2rv"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md11m"] +atlas = ExtResource("1_eq8i2") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4n4v"] +atlas = ExtResource("1_eq8i2") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epkxf"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndnuw"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt7pm"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kjn7"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk3e4"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s4pb"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b86sx"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5p75"] +atlas = ExtResource("1_eq8i2") +region = Rect2(1179, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpfwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyvhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts8dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47iqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uumll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8xss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvuo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ims0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfwcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkeus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6q4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llwc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub8ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb1y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hrbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00kky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwm2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2dmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oytm7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_68tcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_850bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an5vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eins7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4itkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f72p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otm0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7coc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkwv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s220o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64hf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esgvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7ad4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj6x7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vku2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v25ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl51b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foj51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfoqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oba10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63die") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sryw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiyrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4866v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a3t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo0tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwn2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41xbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8if6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rslnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svjt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leekc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8jr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twslq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_en345") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skfpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d61n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nppgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4kxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgreq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8684") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atas0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik43x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmmn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sftgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh052") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6l2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1qoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m57xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj2rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md11m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4n4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epkxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt7pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kjn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk3e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s4pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b86sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5p75") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mech.tres new file mode 100644 index 0000000..684738f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_mech.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://jjnyeja0mhf"] + +[ext_resource type="Texture2D" uid="uid://n052s0uvsmjw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png" id="1_dpin1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bspcc"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5c8s"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_henes"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb2jj"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn3ru"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrsmk"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aml04"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ij1t"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udsqk"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peurw"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqc0b"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxc04"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki0g2"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4jab"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xjq8"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11pbf"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sac6p"] +atlas = ExtResource("1_dpin1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h63h6"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jjvj"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt6dp"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v8jh"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yqqg"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d01qm"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpx8i"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72mfh"] +atlas = ExtResource("1_dpin1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c2qe"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b055m"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_damut"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg7xi"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou1em"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqfxi"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maaci"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2t4b"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppmdy"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdaih"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nunqa"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a06q"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuvem"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d64ln"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwswq"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbytq"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8etrx"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvsn3"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha5ve"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5upr"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o21vg"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8l7a"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wols6"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxhvl"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nk7i"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f17y5"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kt14"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7h1e"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfqao"] +atlas = ExtResource("1_dpin1") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrhp5"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghqvr"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2j8y"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6t5g"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd43i"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whba8"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq8xf"] +atlas = ExtResource("1_dpin1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0w7b"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8n3e"] +atlas = ExtResource("1_dpin1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwsa0"] +atlas = ExtResource("1_dpin1") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ok1"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lebk"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c274"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a87e6"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkdrj"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghg8c"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofjg3"] +atlas = ExtResource("1_dpin1") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u08yf"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76ug6"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uooh2"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxefp"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdea5"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifp6h"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8qcf"] +atlas = ExtResource("1_dpin1") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il2q2"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwngg"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wfy5"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giwhw"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nal3"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo145"] +atlas = ExtResource("1_dpin1") +region = Rect2(393, 131, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bspcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5c8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_henes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb2jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn3ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrsmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aml04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ij1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udsqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peurw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqc0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxc04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki0g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4jab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xjq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11pbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sac6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h63h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jjvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt6dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v8jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yqqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d01qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpx8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72mfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c2qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b055m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_damut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg7xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou1em") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqfxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maaci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2t4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppmdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdaih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nunqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a06q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuvem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d64ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwswq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbytq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8etrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvsn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha5ve") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5upr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o21vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8l7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wols6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxhvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nk7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f17y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kt14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7h1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfqao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrhp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghqvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2j8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6t5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd43i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whba8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq8xf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0w7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8n3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwsa0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ok1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lebk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c274") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a87e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkdrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghg8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofjg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u08yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76ug6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uooh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxefp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdea5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifp6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8qcf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_il2q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwngg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wfy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giwhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nal3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo145") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_melee.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_melee.tres new file mode 100644 index 0000000..0107f9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_melee.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://dpdyymxjdgduk"] + +[ext_resource type="Texture2D" uid="uid://ds43p7xks6cnn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png" id="1_ywbn3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s1ix"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x4ex"] +atlas = ExtResource("1_ywbn3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chbe1"] +atlas = ExtResource("1_ywbn3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gygr"] +atlas = ExtResource("1_ywbn3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_perjh"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gg2u"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7df73"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upa2j"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm5g2"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyai8"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmfck"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx0yq"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvcqy"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62v3a"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65bdi"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opfnk"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2q03"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjg2f"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xv3j"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5mq5"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvehp"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhiqw"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc02j"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8nk0"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01d7x"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnjsx"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbvbc"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpqv7"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is0hn"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_746cc"] +atlas = ExtResource("1_ywbn3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqkp0"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyfhl"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35acd"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwd6l"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fb47"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ctbr"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qju81"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vryhj"] +atlas = ExtResource("1_ywbn3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjpsw"] +atlas = ExtResource("1_ywbn3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rhlr"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7rpn"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egko4"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcvpg"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eqes"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw683"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_236x0"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcq22"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m25cj"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_005ir"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aogh"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_430t2"] +atlas = ExtResource("1_ywbn3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s1ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x4ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chbe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gygr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_perjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gg2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7df73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upa2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm5g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyai8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmfck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx0yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvcqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62v3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65bdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opfnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2q03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjg2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xv3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5mq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvehp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhiqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc02j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8nk0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01d7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnjsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbvbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpqv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is0hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_746cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqkp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyfhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35acd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwd6l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fb47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ctbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qju81") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vryhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjpsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rhlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7rpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egko4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcvpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eqes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw683") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_236x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcq22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m25cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_005ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aogh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_430t2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ogremonk02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ogremonk02.tres new file mode 100644 index 0000000..c4bdc42 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ogremonk02.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://dwyoxjdwugrdw"] + +[ext_resource type="Texture2D" uid="uid://dcctcoakkuutf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png" id="1_fet6x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6daw"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kiic"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3t21"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynhlo"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bppla"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew3n0"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s75k"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkkqv"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s13m0"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tj80"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dd5g"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncvuf"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtxjm"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmpbp"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m0qy"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtpgo"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hutbh"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0alm"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hmq6"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8q3i"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awnfg"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgugt"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jui1i"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p450"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evutp"] +atlas = ExtResource("1_fet6x") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0kq5"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy30g"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4gwh"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4vik"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4525"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckxh2"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exnhq"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7aea"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q354"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf1pt"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nlap"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yckiq"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q2dy"] +atlas = ExtResource("1_fet6x") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e4ab"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q68ne"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqx7n"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abjma"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wso1f"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dtpj"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u8gl"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty4bv"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi5ey"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pft4u"] +atlas = ExtResource("1_fet6x") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmeva"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7apeg"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2peu5"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kct7d"] +atlas = ExtResource("1_fet6x") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tce37"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgal5"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j353e"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07rdp"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqrk5"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y60a"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jbsu"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftt0f"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmlwm"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ro6u"] +atlas = ExtResource("1_fet6x") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxuki"] +atlas = ExtResource("1_fet6x") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rhlk"] +atlas = ExtResource("1_fet6x") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8kbq"] +atlas = ExtResource("1_fet6x") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev88g"] +atlas = ExtResource("1_fet6x") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06kdc"] +atlas = ExtResource("1_fet6x") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vwif"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkv6n"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02c0v"] +atlas = ExtResource("1_fet6x") +region = Rect2(505, 707, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6daw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kiic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3t21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynhlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bppla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew3n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s75k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkkqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s13m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tj80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dd5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncvuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtxjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmpbp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m0qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtpgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hutbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0alm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hmq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8q3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awnfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgugt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jui1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p450") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evutp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0kq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy30g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4gwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4vik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4525") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckxh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exnhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7aea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q354") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf1pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nlap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yckiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q2dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e4ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q68ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqx7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abjma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wso1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dtpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u8gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty4bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi5ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pft4u") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmeva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7apeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2peu5") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kct7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tce37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgal5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j353e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07rdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqrk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y60a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jbsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftt0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmlwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ro6u") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxuki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rhlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8kbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev88g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06kdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vwif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkv6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02c0v") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onnabugeisha.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onnabugeisha.tres new file mode 100644 index 0000000..1147bed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onnabugeisha.tres @@ -0,0 +1,736 @@ +[gd_resource type="SpriteFrames" load_steps=102 format=3 uid="uid://db0crg7a3xsy1"] + +[ext_resource type="Texture2D" uid="uid://6yewah2rp65m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png" id="1_3qbsu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpqu0"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ls5"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4f7f"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ccqi"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs8ej"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrruh"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke3v0"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrxcw"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ugvp"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0yai"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5u0s"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqfc2"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7gv7"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l7aq"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3elw"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34kya"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfdp8"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmtiq"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a7j2"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn33u"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyb1i"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oia6n"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rplb"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm6sp"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7p6e"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nq5s"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u56rr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0xm4"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2n6v"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pxtq"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvxd1"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j840"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvwqv"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p75n"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flh4t"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guykq"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8adrj"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqg4y"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfdrd"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxivr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwg2h"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiyw5"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yufe"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4axcj"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xcqr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhiuh"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b61i"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kmxf"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t0d1"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6egfd"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7hpc"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ralwx"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rr7o"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcehu"] +atlas = ExtResource("1_3qbsu") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbcxr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rx58"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn2yk"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cthkx"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drtos"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g77xr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl286"] +atlas = ExtResource("1_3qbsu") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hldgh"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r3d8"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miuy8"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcscn"] +atlas = ExtResource("1_3qbsu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn8da"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvxf6"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8y88"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nx6l"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mmrt"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68st3"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oxrq"] +atlas = ExtResource("1_3qbsu") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmlxx"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h24r3"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qki5f"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvjh4"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1knhc"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b617v"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkxnh"] +atlas = ExtResource("1_3qbsu") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ktr"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qql5"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4r1d"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgxg8"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li70t"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg3n6"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lulv"] +atlas = ExtResource("1_3qbsu") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0qi3"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq3lc"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw6fw"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6otw"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe7e6"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jba7"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojac6"] +atlas = ExtResource("1_3qbsu") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xciky"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4f8r"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncwnv"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bho8g"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qowra"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqrre"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sryth"] +atlas = ExtResource("1_3qbsu") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpqu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ls5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4f7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ccqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs8ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrruh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke3v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrxcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ugvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0yai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5u0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqfc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7gv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l7aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3elw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34kya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfdp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmtiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a7j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn33u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyb1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oia6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rplb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm6sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7p6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nq5s") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u56rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0xm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2n6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pxtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j840") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvwqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p75n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flh4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guykq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8adrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqg4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfdrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxivr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwg2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiyw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yufe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4axcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xcqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhiuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b61i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kmxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t0d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6egfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7hpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ralwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rr7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcehu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbcxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rx58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn2yk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cthkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drtos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g77xr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl286") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hldgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r3d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miuy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcscn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn8da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvxf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8y88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nx6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mmrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68st3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oxrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmlxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h24r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qki5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvjh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1knhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b617v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkxnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ktr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qql5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4r1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgxg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li70t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg3n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lulv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0qi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq3lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw6fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6otw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe7e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jba7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojac6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xciky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4f8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncwnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bho8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qowra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqrre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sryth") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onyxjaguar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onyxjaguar.tres new file mode 100644 index 0000000..290f620 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_onyxjaguar.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://b2vgwshnnepiv"] + +[ext_resource type="Texture2D" uid="uid://brxf0kau5a5o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png" id="1_4y5xd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohemo"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcnc0"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbae2"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4og"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vst6i"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhny7"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20jfv"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lwtd"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r80p"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48hnd"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45w73"] +atlas = ExtResource("1_4y5xd") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsmkt"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5872"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01cah"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dqan"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lti0"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqr7v"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sw1l"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp3io"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwb6u"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb6wf"] +atlas = ExtResource("1_4y5xd") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3op4h"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe8tc"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1201c"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbhb4"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpcbv"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqtco"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww04n"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78iec"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_542rn"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ip1v"] +atlas = ExtResource("1_4y5xd") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyeyn"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mji8o"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orymn"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn3l2"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxbm1"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxmjw"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6ddk"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17gr7"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr3th"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi838"] +atlas = ExtResource("1_4y5xd") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biqrf"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr1cj"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6rtb"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daw24"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orfr2"] +atlas = ExtResource("1_4y5xd") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0rhh"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rjyg"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4njf"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrkk3"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yj03"] +atlas = ExtResource("1_4y5xd") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vajcf"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyq5i"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp864"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2nnq"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_074t0"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0srr"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f553q"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pd25"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbfjm"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iykco"] +atlas = ExtResource("1_4y5xd") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16p8c"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y4qb"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiswl"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4le4"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu5tm"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kis5e"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvbnd"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qe03"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_517ja"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgici"] +atlas = ExtResource("1_4y5xd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aukr"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnn8q"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6djk0"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an2dm"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4dql"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwfdi"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8wqi"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4fvd"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8vk1"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyiyg"] +atlas = ExtResource("1_4y5xd") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x277o"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3cuh"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quewk"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66hvv"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erjp2"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi7ql"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uvv3"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w535v"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqs05"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoqy0"] +atlas = ExtResource("1_4y5xd") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohemo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcnc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbae2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4og") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vst6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhny7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20jfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lwtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r80p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48hnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45w73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsmkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5872") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01cah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dqan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lti0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqr7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sw1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp3io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwb6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb6wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3op4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe8tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1201c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbhb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpcbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqtco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww04n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78iec") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_542rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ip1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyeyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mji8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orymn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn3l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxbm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxmjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6ddk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17gr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr3th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi838") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biqrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr1cj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6rtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daw24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orfr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0rhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rjyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4njf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrkk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yj03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vajcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyq5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp864") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2nnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_074t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0srr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f553q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pd25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbfjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iykco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16p8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y4qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiswl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4le4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu5tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kis5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvbnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qe03") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_517ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgici") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aukr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnn8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6djk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an2dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4dql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwfdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8wqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4fvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8vk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyiyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x277o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3cuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quewk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66hvv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_erjp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi7ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uvv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w535v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqs05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoqy0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_orizuru.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_orizuru.tres new file mode 100644 index 0000000..7f3e15e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_orizuru.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://dnn6k7he50edt"] + +[ext_resource type="Texture2D" uid="uid://dw4upugnavuah" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png" id="1_jbkq0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7unaa"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl0ae"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sohvc"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yy4e"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8wlu"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7104w"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw2kw"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgw1k"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq7v5"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ikp"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr7t6"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8glqf"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3spec"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2iy3"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5it1"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w2tn"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6euj"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njqmo"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmvu2"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3vn4"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cl2a"] +atlas = ExtResource("1_jbkq0") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5erl"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfa6v"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prfw8"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awhi8"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p5ft"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyo30"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw0yw"] +atlas = ExtResource("1_jbkq0") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcrr4"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlb03"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu7gv"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud5ot"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqhpr"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k604g"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7inw"] +atlas = ExtResource("1_jbkq0") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ocbt"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qh8a"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpv35"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhr85"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kot4a"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csol8"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lxs5"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c10rt"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw6vi"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jkb4"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1y1l"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uevlr"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiaj4"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1p1u"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlj5b"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqq3s"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bol6l"] +atlas = ExtResource("1_jbkq0") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m457"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gti8"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ifvo"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_763v8"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuosf"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7lbw"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b4xy"] +atlas = ExtResource("1_jbkq0") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq0sl"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0i8b"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3qco"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gng0p"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spmwv"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6m8i"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dd0f"] +atlas = ExtResource("1_jbkq0") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qicyw"] +atlas = ExtResource("1_jbkq0") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eis55"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i0ie"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kgc2"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bkox"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb67l"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r03b"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x282o"] +atlas = ExtResource("1_jbkq0") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jieag"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg2is"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gctgv"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uswj2"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbbhm"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68juj"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbva2"] +atlas = ExtResource("1_jbkq0") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7unaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl0ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sohvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yy4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8wlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7104w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw2kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgw1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq7v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ikp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr7t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8glqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3spec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2iy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5it1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w2tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6euj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njqmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmvu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3vn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cl2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5erl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfa6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prfw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awhi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p5ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyo30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw0yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcrr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlb03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu7gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud5ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqhpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k604g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7inw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ocbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qh8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpv35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhr85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kot4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csol8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lxs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c10rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw6vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jkb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1y1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uevlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiaj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1p1u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlj5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqq3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bol6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m457") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gti8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ifvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_763v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuosf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7lbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b4xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq0sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0i8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3qco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gng0p") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spmwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6m8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dd0f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qicyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eis55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i0ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kgc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bkox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb67l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r03b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x282o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jieag") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg2is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gctgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uswj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbbhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68juj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbva2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear.tres new file mode 100644 index 0000000..f3c253f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear.tres @@ -0,0 +1,217 @@ +[gd_resource type="SpriteFrames" load_steps=30 format=3 uid="uid://ccoxv6sgmp62b"] + +[ext_resource type="Texture2D" uid="uid://q38f12mr1q6g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png" id="1_msm6b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw1wi"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijprt"] +atlas = ExtResource("1_msm6b") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wao0u"] +atlas = ExtResource("1_msm6b") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk5bp"] +atlas = ExtResource("1_msm6b") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoosp"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcwld"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wud6u"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nafc5"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmcl"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnhor"] +atlas = ExtResource("1_msm6b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqa3p"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu5vu"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfu03"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnlsn"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh1r2"] +atlas = ExtResource("1_msm6b") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge6co"] +atlas = ExtResource("1_msm6b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi7rs"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_654w7"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4vnw"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivbuy"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td1la"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjm6f"] +atlas = ExtResource("1_msm6b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxqc6"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cxbi"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpvth"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfsa3"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blgf4"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atucv"] +atlas = ExtResource("1_msm6b") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw1wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijprt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wao0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk5bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoosp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcwld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wud6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nafc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnhor") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqa3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu5vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfu03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnlsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh1r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge6co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi7rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_654w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4vnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivbuy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_td1la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjm6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxqc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cxbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpvth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfsa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blgf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atucv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear02.tres new file mode 100644 index 0000000..048d883 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_pandabear02.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://cslc20f814etf"] + +[ext_resource type="Texture2D" uid="uid://7u0urlcqtwo1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png" id="1_lp6yj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgw78"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyi07"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl543"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62qh4"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_703br"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4my78"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkliv"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oms6k"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5ne"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18nq8"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yptb6"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4os4"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5bpv"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ta5b"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5der"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbeu6"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ujss"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atgby"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqq35"] +atlas = ExtResource("1_lp6yj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgdt2"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0xqm"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tiwy"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks61j"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwx00"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f72f"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya7ah"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pi0x"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0t2e"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p305w"] +atlas = ExtResource("1_lp6yj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jarqk"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsqyl"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14muo"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0wyr"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43uny"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8v6l"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7f3e"] +atlas = ExtResource("1_lp6yj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jmvq"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4odqk"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjhie"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqjsn"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xntr3"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w4id"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imoaa"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fij5r"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52363"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6v1b"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1plge"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmjin"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ac6y"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v14gs"] +atlas = ExtResource("1_lp6yj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6f66"] +atlas = ExtResource("1_lp6yj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gnqb"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3mp"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bxje"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d3q4"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgvo7"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxhtw"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_453m8"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ivm"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p4am"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1jol"] +atlas = ExtResource("1_lp6yj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ox33"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2fh5"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiv8u"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4kb4"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b474"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbxtm"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j78y8"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fb0s"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umyyt"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68tr2"] +atlas = ExtResource("1_lp6yj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgw78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyi07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl543") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62qh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_703br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4my78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkliv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oms6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18nq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yptb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4os4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5bpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ta5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5der") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbeu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ujss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atgby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqq35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgdt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0xqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tiwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks61j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwx00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f72f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya7ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pi0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0t2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p305w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jarqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsqyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14muo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0wyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43uny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8v6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7f3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jmvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4odqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjhie") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqjsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xntr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w4id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imoaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fij5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52363") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6v1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1plge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmjin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ac6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v14gs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6f66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gnqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no3mp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bxje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d3q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgvo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxhtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_453m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ivm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p4am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1jol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ox33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2fh5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiv8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4kb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b474") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbxtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j78y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fb0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umyyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68tr2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_panddo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_panddo.tres new file mode 100644 index 0000000..30dbd20 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_panddo.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://u8g4jppe5v3c"] + +[ext_resource type="Texture2D" uid="uid://bb0inqsq3fkao" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png" id="1_mkikr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p1w8"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beehf"] +atlas = ExtResource("1_mkikr") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7obmv"] +atlas = ExtResource("1_mkikr") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1cxk"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dc2o"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djwug"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1wnn"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad303"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll5ot"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_548g3"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjnm1"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wnoy"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlcdv"] +atlas = ExtResource("1_mkikr") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc0vc"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqu0i"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lm3r"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1dvw"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2elah"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40wri"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tble7"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01aov"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7f3k"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqa6k"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8l0d"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufpnn"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb3h2"] +atlas = ExtResource("1_mkikr") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2qeu"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmbc7"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_extxe"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdxbt"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mjjf"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seu4p"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c12iw"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50jy2"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdh78"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cq3w"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ave51"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsmhn"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf103"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8pwy"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50prb"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtjdo"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5d43"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwpon"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weufb"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vegq0"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnftf"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aovq"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh6in"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7pwp"] +atlas = ExtResource("1_mkikr") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gamd"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prpvi"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icj3b"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxtbj"] +atlas = ExtResource("1_mkikr") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j51n6"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63brn"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wawre"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kch0o"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt17b"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1qke"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eo30"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v2e4"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rakw"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vtqc"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbfd6"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmn1c"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fwu8"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2ugo"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5u6t"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiee5"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1tiu"] +atlas = ExtResource("1_mkikr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61h2v"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o81u2"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56b2g"] +atlas = ExtResource("1_mkikr") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vyi7"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkwf8"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fepka"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3dau"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52qmr"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y3mc"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kv34"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpoic"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82rec"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34xm8"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkioq"] +atlas = ExtResource("1_mkikr") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a53ma"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf2lt"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44c48"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqc8m"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amctu"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdnw2"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oeuv"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6v4r"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pgo4"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qswdp"] +atlas = ExtResource("1_mkikr") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p1w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beehf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7obmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1cxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dc2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djwug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1wnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad303") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll5ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_548g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjnm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wnoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlcdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc0vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqu0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lm3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1dvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2elah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40wri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tble7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01aov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7f3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqa6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8l0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufpnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb3h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2qeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmbc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_extxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdxbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mjjf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_seu4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c12iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50jy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdh78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cq3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ave51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsmhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf103") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8pwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50prb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtjdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5d43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwpon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weufb") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vegq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnftf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aovq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh6in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7pwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gamd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prpvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icj3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxtbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j51n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63brn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wawre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kch0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt17b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1qke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eo30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v2e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rakw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vtqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbfd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmn1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fwu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2ugo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5u6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiee5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1tiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61h2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o81u2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56b2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vyi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkwf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fepka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3dau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52qmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y3mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kv34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpoic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82rec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34xm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkioq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a53ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf2lt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_44c48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqc8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amctu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdnw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oeuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6v4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pgo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qswdp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_paperdropper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_paperdropper.tres new file mode 100644 index 0000000..b6f90d7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_paperdropper.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://mj8otw1huwl0"] + +[ext_resource type="Texture2D" uid="uid://cq3oosi3syevh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png" id="1_3l8vv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h5y0"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sg8v"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4mn4"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iknsw"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it1l8"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmg5m"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtxqi"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7or2p"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btudx"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j051a"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qd2w"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmytp"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr65u"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jva0s"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcbxk"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eyx0"] +atlas = ExtResource("1_3l8vv") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uy00"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdahw"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je41g"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hb7q"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d7ph"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f36y"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmibq"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlsp1"] +atlas = ExtResource("1_3l8vv") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgtwy"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54pu7"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnc1s"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky38g"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1spk"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w6cg"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh8t1"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gprrr"] +atlas = ExtResource("1_3l8vv") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g41of"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc3pu"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jhs5"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q85sp"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxpoe"] +atlas = ExtResource("1_3l8vv") +region = Rect2(1008, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85fr1"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0rs6"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1610w"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfghd"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joq8r"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxxow"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u3md"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i26py"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vieqr"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1o7u"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4nr0"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsbnb"] +atlas = ExtResource("1_3l8vv") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54if3"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adehv"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kis25"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_car50"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vid2o"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icf7a"] +atlas = ExtResource("1_3l8vv") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqrer"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtyq0"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4d38"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1wtt"] +atlas = ExtResource("1_3l8vv") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqtge"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfg87"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0v7q"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsomo"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0ruv"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqiy5"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmyho"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lrbn"] +atlas = ExtResource("1_3l8vv") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0amqo"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwh3i"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxe3y"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj6v2"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yk0f"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alx33"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkq88"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke127"] +atlas = ExtResource("1_3l8vv") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h5y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sg8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4mn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iknsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it1l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmg5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtxqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7or2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btudx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j051a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qd2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmytp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr65u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jva0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcbxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eyx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uy00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdahw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je41g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hb7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d7ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f36y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmibq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlsp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgtwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54pu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnc1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky38g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1spk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w6cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh8t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gprrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g41of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc3pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jhs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q85sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxpoe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_85fr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0rs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1610w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfghd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joq8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxxow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u3md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i26py") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vieqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1o7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4nr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsbnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54if3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adehv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kis25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_car50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vid2o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_icf7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqrer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtyq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4d38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1wtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqtge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfg87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0v7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsomo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0ruv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqiy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmyho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lrbn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0amqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwh3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxe3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj6v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yk0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alx33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkq88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke127") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ranged.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ranged.tres new file mode 100644 index 0000000..2791632 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_ranged.tres @@ -0,0 +1,454 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://dwxkhoqfbxvev"] + +[ext_resource type="Texture2D" uid="uid://dvhbm3ckovmvb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png" id="1_xq6pb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_edeb8"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 811, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uap64"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r08y"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffequ"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5c06"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7til"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iltsk"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu02w"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfajy"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8ivl"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06app"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spy3y"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7oyb"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_appih"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g4wo"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eohn7"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg48w"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agfhr"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thuif"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb05l"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnpjx"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ios2i"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aw73"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kf0q"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrnus"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfa5t"] +atlas = ExtResource("1_xq6pb") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5uxh"] +atlas = ExtResource("1_xq6pb") +region = Rect2(111, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oyey"] +atlas = ExtResource("1_xq6pb") +region = Rect2(111, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okibo"] +atlas = ExtResource("1_xq6pb") +region = Rect2(111, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wkf3"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 892, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ctva"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q35v"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 892, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r113d"] +atlas = ExtResource("1_xq6pb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1idy"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 730, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyyrl"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 649, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by86h"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 568, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0ot"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 649, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpj51"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 568, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hed5g"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 649, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycbxp"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 568, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4m1r"] +atlas = ExtResource("1_xq6pb") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prpyu"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 487, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tk8c"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 406, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xurfp"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 325, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjbcp"] +atlas = ExtResource("1_xq6pb") +region = Rect2(81, 244, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_macew"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 892, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqtkv"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 811, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7s1v"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 730, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvtn5"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 649, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqviq"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 122, 110, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a67x"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 0, 110, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpwip"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 61, 110, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndugq"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 183, 110, 60) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqcml"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 568, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22i71"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 487, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o6sx"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 325, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kw3s"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 406, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwa4w"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 244, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbnqg"] +atlas = ExtResource("1_xq6pb") +region = Rect2(0, 325, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_edeb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uap64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r08y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffequ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5c06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7til") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iltsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu02w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfajy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8ivl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06app") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spy3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7oyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_appih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g4wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eohn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg48w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agfhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thuif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb05l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnpjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ios2i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aw73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kf0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrnus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfa5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5uxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oyey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okibo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wkf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ctva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q35v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r113d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1idy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyyrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by86h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpj51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hed5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycbxp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4m1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prpyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tk8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xurfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjbcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_macew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqtkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7s1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvtn5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqviq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a67x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpwip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndugq") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqcml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22i71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o6sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kw3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwa4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbnqg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_seenoevil.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_seenoevil.tres new file mode 100644 index 0000000..319adb4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_seenoevil.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://tcnjt4r6t2j5"] + +[ext_resource type="Texture2D" uid="uid://duxf0y7p1aa6q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png" id="1_4hv4v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq5xu"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ryn"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t3x6"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o476e"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrecs"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72fb6"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfgda"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0jmc"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo6n0"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yot87"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf03p"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hcca"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eidaa"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86eg2"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq7g5"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtc3x"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o05e"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2n4m"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1na2"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujfmk"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g17mc"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m1fr"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfkbn"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ghry"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afdbl"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr3p8"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlff5"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxsv2"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3aft"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpd5r"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5t15"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m74aw"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsaux"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7moq7"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp1j4"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4a06"] +atlas = ExtResource("1_4hv4v") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3t6c"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4gfb"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86c8r"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgbaf"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd7ta"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty5dr"] +atlas = ExtResource("1_4hv4v") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii7ob"] +atlas = ExtResource("1_4hv4v") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjmy7"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyu47"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1gna"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3hp5"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsa6j"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avj4w"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf3ko"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kebjh"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ndy"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlfex"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afaat"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epw18"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxp8r"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arhy2"] +atlas = ExtResource("1_4hv4v") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a17q"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ajxt"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntqnu"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60dsf"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d5ky"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lxax"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgjpq"] +atlas = ExtResource("1_4hv4v") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6axay"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx0to"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmjxb"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25bfs"] +atlas = ExtResource("1_4hv4v") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpba6"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw050"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vepw6"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avvxk"] +atlas = ExtResource("1_4hv4v") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h73b"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0xc0"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p4gh"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmiug"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8dy"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eyes"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy65q"] +atlas = ExtResource("1_4hv4v") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlv3d"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w75jc"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwht5"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbt2q"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvprv"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uusc2"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in0pw"] +atlas = ExtResource("1_4hv4v") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq5xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ryn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t3x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o476e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrecs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72fb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfgda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0jmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo6n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yot87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf03p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hcca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eidaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86eg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq7g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtc3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o05e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2n4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1na2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujfmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g17mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m1fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfkbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ghry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afdbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr3p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlff5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxsv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3aft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpd5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5t15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m74aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsaux") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7moq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp1j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4a06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3t6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4gfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86c8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgbaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd7ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty5dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii7ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjmy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyu47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1gna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3hp5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsa6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avj4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf3ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kebjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ndy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlfex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afaat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epw18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxp8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arhy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a17q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ajxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntqnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60dsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d5ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lxax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgjpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6axay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx0to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmjxb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_25bfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpba6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw050") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vepw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avvxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h73b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0xc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p4gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmiug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eyes") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy65q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlv3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w75jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwht5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbt2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvprv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uusc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in0pw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sekitori.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sekitori.tres new file mode 100644 index 0000000..8563460 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sekitori.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://dc4waqj2fiorr"] + +[ext_resource type="Texture2D" uid="uid://bg0ldyyy6p5m0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png" id="1_d3amw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbr6t"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op3ep"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t0eg"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usu81"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qccfi"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cqj8"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh3hg"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o33nr"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1set"] +atlas = ExtResource("1_d3amw") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrhmy"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onlqa"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8aee"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxnvd"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grvlt"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw8mu"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54u8q"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eel7"] +atlas = ExtResource("1_d3amw") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpo0k"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg84h"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dwkr"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0elh1"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn3xa"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hajw7"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjyct"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a1re"] +atlas = ExtResource("1_d3amw") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpvel"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icwhp"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fobcs"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mxod"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atak0"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddd8x"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw1eu"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyind"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftkvo"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvvpv"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgjup"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpsd6"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmstg"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwsqu"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fny5d"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvhme"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr62y"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqyku"] +atlas = ExtResource("1_d3amw") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sll32"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33k7f"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glyve"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fbta"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nt2o"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r0d1"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjeug"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtd8t"] +atlas = ExtResource("1_d3amw") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8mv0"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg2wo"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euhy2"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxxeb"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dyx7"] +atlas = ExtResource("1_d3amw") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sh51"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by8rx"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5w8c"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_encsn"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2lju"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud6oa"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi1pw"] +atlas = ExtResource("1_d3amw") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjjk1"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvtp"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vny8r"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul5em"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny51l"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_holm6"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t3o3"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ke2i"] +atlas = ExtResource("1_d3amw") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12aa7"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_getrb"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dienc"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo72v"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewq1w"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t4wp"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0un8n"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2kb8"] +atlas = ExtResource("1_d3amw") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbr6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op3ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t0eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usu81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qccfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cqj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh3hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o33nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1set") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrhmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onlqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8aee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxnvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grvlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw8mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54u8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eel7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpo0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg84h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dwkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0elh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn3xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hajw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjyct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a1re") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpvel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icwhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fobcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mxod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atak0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddd8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw1eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyind") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftkvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvvpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgjup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpsd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmstg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwsqu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fny5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvhme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr62y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqyku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sll32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33k7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glyve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fbta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nt2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r0d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjeug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtd8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8mv0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg2wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euhy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxxeb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dyx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sh51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by8rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5w8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_encsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2lju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud6oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi1pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjjk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vny8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul5em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny51l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_holm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t3o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ke2i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_12aa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_getrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dienc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo72v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewq1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t4wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0un8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2kb8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sepukku.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sepukku.tres new file mode 100644 index 0000000..ed7728e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sepukku.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://c5givn007otbw"] + +[ext_resource type="Texture2D" uid="uid://swikx2veaprh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png" id="1_sqlpm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh5e6"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tt3f"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kojli"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1lot"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4d72"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nn06"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovj0n"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma7ia"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0mod"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uk54"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvmpy"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2su3a"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfa00"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h710h"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f47su"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyv2x"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh6rm"] +atlas = ExtResource("1_sqlpm") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msem4"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3iyf"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp8xi"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ho10"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuch5"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grfuf"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrdhs"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr3o1"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6oi1"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht41g"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdawk"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeb88"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mwq0"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxhyo"] +atlas = ExtResource("1_sqlpm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ipy0"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnqqw"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d67i"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc3my"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvh0e"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug3gv"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udkvb"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yttmv"] +atlas = ExtResource("1_sqlpm") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqfq7"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grg6m"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o217n"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdmmg"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reylf"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5mvk"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc7t5"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0nmp"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7oe8"] +atlas = ExtResource("1_sqlpm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ggtl"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_825dk"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rubg"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txg62"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i15nb"] +atlas = ExtResource("1_sqlpm") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x60e0"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb78q"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsjkb"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tf1v"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isd3j"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0xso"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1vhv"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k263r"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8cfi"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnxsk"] +atlas = ExtResource("1_sqlpm") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhbu5"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqejk"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucobl"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nto7s"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3rvf"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0g3s"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4rc7"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grbst"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjjx2"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2enr"] +atlas = ExtResource("1_sqlpm") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh5e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tt3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kojli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1lot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4d72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nn06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovj0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma7ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0mod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uk54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvmpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2su3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfa00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h710h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f47su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyv2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh6rm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_msem4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3iyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp8xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ho10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuch5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grfuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrdhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr3o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6oi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht41g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdawk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeb88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mwq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxhyo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ipy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnqqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d67i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc3my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvh0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug3gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udkvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yttmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqfq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grg6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o217n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdmmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reylf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5mvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc7t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0nmp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7oe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ggtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_825dk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rubg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txg62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i15nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x60e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb78q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsjkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tf1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isd3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0xso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1vhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k263r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8cfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnxsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhbu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqejk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucobl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nto7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3rvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0g3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4rc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grbst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjjx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2enr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_shidaimk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_shidaimk2.tres new file mode 100644 index 0000000..f17f24d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_shidaimk2.tres @@ -0,0 +1,847 @@ +[gd_resource type="SpriteFrames" load_steps=115 format=3 uid="uid://bxk7igtowex16"] + +[ext_resource type="Texture2D" uid="uid://bnhpbnkh67h30" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png" id="1_xh4yi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j6b7"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emdwl"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsrf1"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74a05"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujeh8"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yqjp"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg3jc"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3scu"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgqip"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd3lb"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10keu"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tuxq"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yejqg"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwgun"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de8gt"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67vy5"] +atlas = ExtResource("1_xh4yi") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3w0q"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21x0h"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exmb8"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pluy"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7218"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb4lp"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kyyi"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33l4s"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jkxm"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecjwa"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2dv6"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt66f"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlqeh"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ejy3"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87en2"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xly2h"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnrct"] +atlas = ExtResource("1_xh4yi") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpsie"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6jgk"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3jcb"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjy3x"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgdym"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qfgd"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlfie"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwnq7"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqgi"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fdry"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywhu2"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_who2d"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16n6k"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym7iu"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsevu"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d0bt"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7chs"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51psg"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ob3"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umsw4"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woqll"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1nq7"] +atlas = ExtResource("1_xh4yi") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n8i8"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unoby"] +atlas = ExtResource("1_xh4yi") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr21d"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dgna"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o658u"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vass"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c55a"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aapqw"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3yob"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_121m8"] +atlas = ExtResource("1_xh4yi") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cnfk"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o3ci"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mty7d"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrlvr"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uohe"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bbrx"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw4s4"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5c1x"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5q83"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho57j"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln5po"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc54j"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc83w"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16epp"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q41ka"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o84b1"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvnea"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehu4h"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j78ri"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0bwo"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpnwo"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0f7o"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3v8r"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqqxd"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n36tk"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmclt"] +atlas = ExtResource("1_xh4yi") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b20m1"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fur3t"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xmud"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie1rm"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vot52"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyqfb"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvw4q"] +atlas = ExtResource("1_xh4yi") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tdmp"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw22w"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25wyf"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inajs"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uayh2"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo8ho"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k82dy"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8dj8"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thaay"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcww7"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnrg2"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whmov"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0rjs"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jamuj"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n26md"] +atlas = ExtResource("1_xh4yi") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j6b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emdwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsrf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74a05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujeh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yqjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg3jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3scu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgqip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd3lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10keu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tuxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yejqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwgun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de8gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67vy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3w0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21x0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exmb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pluy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7218") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb4lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kyyi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33l4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jkxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecjwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2dv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt66f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlqeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ejy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87en2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xly2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnrct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpsie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6jgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3jcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjy3x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgdym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qfgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlfie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwnq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fdry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywhu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_who2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16n6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym7iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsevu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d0bt") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7chs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51psg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ob3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umsw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woqll") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1nq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n8i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unoby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr21d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dgna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o658u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vass") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c55a") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aapqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3yob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_121m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cnfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o3ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mty7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrlvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uohe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bbrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw4s4") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5c1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5q83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho57j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln5po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc54j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc83w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16epp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q41ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o84b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvnea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehu4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j78ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0bwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpnwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0f7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3v8r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqqxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n36tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmclt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b20m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fur3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xmud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie1rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vot52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyqfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvw4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tdmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw22w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25wyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inajs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uayh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo8ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k82dy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8dj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thaay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcww7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnrg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whmov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0rjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jamuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n26md") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sister.tres new file mode 100644 index 0000000..84629f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sister.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://gocbhctv1djf"] + +[ext_resource type="Texture2D" uid="uid://d10615dq0210s" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png" id="1_hg2r4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5prho"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ns1g"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0fv5"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47v5h"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfdaq"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1p58"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpint"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddwu3"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy1d0"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mku4g"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a46n7"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyggu"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e01j1"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_073ar"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v4t5"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0uvt"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2cr2"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr84h"] +atlas = ExtResource("1_hg2r4") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_632k1"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0gtu"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2uv"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjdva"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyrgb"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrv3h"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x02r3"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2c0l"] +atlas = ExtResource("1_hg2r4") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6qsn"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgnp8"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsn60"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v54ax"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8554t"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u35qg"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvwcj"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v61ny"] +atlas = ExtResource("1_hg2r4") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i5hi"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_025xa"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o683x"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yem1g"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8ssl"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3ie5"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkgmm"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj7mr"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aypfp"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvfku"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8el10"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siaqv"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p744m"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n65oq"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb0nv"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkgdd"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thvgd"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qymqj"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f1id"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hulw"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7blh"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feb52"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kipo"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twad"] +atlas = ExtResource("1_hg2r4") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_268kd"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52ogf"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft3wx"] +atlas = ExtResource("1_hg2r4") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuda7"] +atlas = ExtResource("1_hg2r4") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh4h5"] +atlas = ExtResource("1_hg2r4") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr1xg"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djgfj"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13pui"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p71qi"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6akxb"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6numc"] +atlas = ExtResource("1_hg2r4") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc5we"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrbjq"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suonh"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s64h4"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2hv4"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4t6r"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0m5q"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eahtw"] +atlas = ExtResource("1_hg2r4") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m03ps"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et7xq"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0r3g"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7y0q"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60838"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yy70"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ldri"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpoii"] +atlas = ExtResource("1_hg2r4") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5prho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ns1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0fv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47v5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfdaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1p58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpint") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddwu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mku4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a46n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyggu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e01j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_073ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v4t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0uvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2cr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr84h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_632k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0gtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjdva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyrgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrv3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x02r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2c0l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6qsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgnp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsn60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v54ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8554t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u35qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvwcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v61ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i5hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_025xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o683x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yem1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8ssl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3ie5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkgmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj7mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aypfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvfku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8el10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siaqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p744m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n65oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb0nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkgdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thvgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qymqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f1id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hulw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7blh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feb52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kipo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_268kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52ogf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft3wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuda7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh4h5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr1xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djgfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13pui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p71qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6akxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6numc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc5we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrbjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suonh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s64h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2hv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4t6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0m5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eahtw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m03ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et7xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0r3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7y0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60838") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yy70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ldri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpoii") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_songhaisentinel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_songhaisentinel.tres new file mode 100644 index 0000000..f5ea370 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_songhaisentinel.tres @@ -0,0 +1,939 @@ +[gd_resource type="SpriteFrames" load_steps=131 format=3 uid="uid://7slkcc400p7x"] + +[ext_resource type="Texture2D" uid="uid://kigh6850djdl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png" id="1_jxuo2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_us6b3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6ubx"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjckn"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgnkg"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiv1h"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v1v4"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y733r"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxoxj"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpgf5"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5nnv"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls6ck"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1kck"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dni6p"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc3gj"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da6ly"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcwlb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4s8o"] +atlas = ExtResource("1_jxuo2") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaol3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiu6m"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cqgc"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb184"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg8mg"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ai5"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lyg1"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el2ko"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pxk1"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsqbb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu4fh"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6sg3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niq83"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o6vm"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kfk7"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m55tc"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c6m3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arnkv"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aul61"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jyav"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a02l"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igecs"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3btwk"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ciec"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bj04"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3f01"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6hly"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl63h"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34y8y"] +atlas = ExtResource("1_jxuo2") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3myoo"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8inc3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2v2y"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kupe1"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sintw"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8fy1"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6jfn"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agnnk"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yhcb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y0xl"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxyjb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di07x"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ejf"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cgxq"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfajj"] +atlas = ExtResource("1_jxuo2") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7nv2"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51cs2"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5iey"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikchs"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwufh"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibs74"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q10gf"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj7p0"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymlhv"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3136"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l10d7"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykiw8"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1acu"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddqvb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exiqo"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5au8"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxkbh"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2ggb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efk30"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxbbu"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs5w2"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdiq6"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxcde"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5fsa"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrgk"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpqjc"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v723y"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktdla"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akeoe"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46f1b"] +atlas = ExtResource("1_jxuo2") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbqfx"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovt5u"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv5hh"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyvel"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cvoi"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbw1w"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au76s"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jdnw"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw54u"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vayhr"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hko4p"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l20oy"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18cnn"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou8rb"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgvca"] +atlas = ExtResource("1_jxuo2") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcvib"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4re3"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f4s8"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnxxs"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ndw8"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hljj"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyaog"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfnk"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwoof"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4imkr"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwu7w"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3jdv"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_587s0"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmekx"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56npr"] +atlas = ExtResource("1_jxuo2") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04sol"] +atlas = ExtResource("1_jxuo2") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc5r6"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20a58"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn4ys"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mymvx"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q27wd"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nxgg"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6igba"] +atlas = ExtResource("1_jxuo2") +region = Rect2(917, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_us6b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6ubx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjckn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgnkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiv1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v1v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y733r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxoxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpgf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5nnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls6ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1kck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dni6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc3gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da6ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcwlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4s8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaol3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiu6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cqgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb184") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg8mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ai5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lyg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el2ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pxk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsqbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu4fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6sg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niq83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o6vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kfk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m55tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c6m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arnkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aul61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jyav") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a02l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igecs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3btwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ciec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bj04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3f01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6hly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl63h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34y8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3myoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8inc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2v2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kupe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sintw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8fy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6jfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agnnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yhcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y0xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxyjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di07x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ejf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cgxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfajj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7nv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51cs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5iey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikchs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwufh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibs74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q10gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj7p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymlhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3136") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l10d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykiw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1acu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddqvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exiqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5au8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxkbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2ggb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efk30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxbbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs5w2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdiq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxcde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5fsa") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljrgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpqjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v723y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktdla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akeoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46f1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbqfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovt5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv5hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyvel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cvoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbw1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au76s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jdnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw54u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vayhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hko4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l20oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18cnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou8rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgvca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcvib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4re3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f4s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnxxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ndw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hljj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyaog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwoof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4imkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwu7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3jdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_587s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmekx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56npr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_04sol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc5r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20a58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn4ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mymvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q27wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nxgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6igba") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sparrowhawk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sparrowhawk.tres new file mode 100644 index 0000000..91c78a7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_sparrowhawk.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://w3nid820w72m"] + +[ext_resource type="Texture2D" uid="uid://b2dvmix8jwpns" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png" id="1_438fh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa1cn"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lswh6"] +atlas = ExtResource("1_438fh") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4st8n"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6761q"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfgte"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ceg4"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i50e6"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekflw"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hukvi"] +atlas = ExtResource("1_438fh") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbhhc"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egebr"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4yao"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i43am"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nae6t"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wtya"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyq0h"] +atlas = ExtResource("1_438fh") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yc1t"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwkh1"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfprt"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkxtl"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn65u"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a47rr"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u45a"] +atlas = ExtResource("1_438fh") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny2e1"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blj7a"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80h4k"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo85r"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyg3v"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4shix"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6pdc"] +atlas = ExtResource("1_438fh") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvk83"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mwle"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tli7"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh8yt"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p35nu"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu187"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_224dt"] +atlas = ExtResource("1_438fh") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m81xw"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqrco"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l8qr"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07rhj"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs2um"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcfj8"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gosec"] +atlas = ExtResource("1_438fh") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jen76"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao4vu"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv5p6"] +atlas = ExtResource("1_438fh") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kvfg"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhc1q"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf3oy"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dliuo"] +atlas = ExtResource("1_438fh") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1anj2"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1hy6"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4veks"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_874fq"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfa5g"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wha8q"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efu3u"] +atlas = ExtResource("1_438fh") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6or2"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn7g7"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy1tj"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b50wn"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6as6"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqse4"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg0hk"] +atlas = ExtResource("1_438fh") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hti4"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yljdn"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bn5p"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0g8g"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gstoi"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y67k6"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyd6w"] +atlas = ExtResource("1_438fh") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxgjm"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an8np"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u3n5"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8kjp"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wabj"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if1xd"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wurdd"] +atlas = ExtResource("1_438fh") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbgnv"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvoes"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lohgs"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehv3i"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogqak"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oahc7"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d3jh"] +atlas = ExtResource("1_438fh") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugp7r"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjjnm"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytnfu"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1uw2"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsbd1"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcj17"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddjim"] +atlas = ExtResource("1_438fh") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa1cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lswh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4st8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6761q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfgte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ceg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i50e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekflw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hukvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbhhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egebr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4yao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i43am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nae6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wtya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyq0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yc1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwkh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfprt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkxtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn65u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a47rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u45a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny2e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blj7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80h4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo85r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyg3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4shix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6pdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvk83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mwle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tli7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh8yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p35nu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu187") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_224dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m81xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqrco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l8qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07rhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs2um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcfj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gosec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jen76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao4vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv5p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kvfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhc1q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf3oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dliuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1anj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1hy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4veks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_874fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfa5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wha8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efu3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6or2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn7g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy1tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b50wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6as6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqse4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg0hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hti4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yljdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bn5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0g8g") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gstoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y67k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyd6w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxgjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an8np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u3n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8kjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wabj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if1xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wurdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbgnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvoes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lohgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehv3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogqak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oahc7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d3jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugp7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjjnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytnfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1uw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsbd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcj17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddjim") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_special.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_special.tres new file mode 100644 index 0000000..1bc479b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_special.tres @@ -0,0 +1,407 @@ +[gd_resource type="SpriteFrames" load_steps=55 format=3 uid="uid://d65nflrachx3"] + +[ext_resource type="Texture2D" uid="uid://b20ukp3phelf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png" id="1_sk0ac"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5c6o"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlns2"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk4ts"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xug0"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c844w"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3tma"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x86nt"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teerx"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4y8g"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjehi"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq8ap"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxmqm"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niieh"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3q1x"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p677j"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3hsh"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8khuf"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5asye"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lolc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyyqc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jed88"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sga1"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djx7w"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0atx"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plcov"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6tah"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf30v"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo71b"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yguq"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy033"] +atlas = ExtResource("1_sk0ac") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxudw"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14jf2"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa4g0"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3rtc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fadvm"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op4ll"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn76c"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvys7"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4drv"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhwrc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bx22"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kavgd"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5grn"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dydee"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wddis"] +atlas = ExtResource("1_sk0ac") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0qyk"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm0or"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmr4i"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2pkc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgrrp"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pijc5"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh3sc"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io2t6"] +atlas = ExtResource("1_sk0ac") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5c6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlns2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk4ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xug0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c844w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3tma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x86nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teerx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4y8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjehi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq8ap") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxmqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niieh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3q1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p677j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3hsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8khuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5asye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lolc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyyqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jed88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sga1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djx7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0atx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plcov") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6tah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf30v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo71b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yguq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy033") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxudw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14jf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa4g0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3rtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fadvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op4ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn76c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvys7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4drv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhwrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bx22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kavgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5grn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dydee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wddis") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0qyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm0or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmr4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2pkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgrrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pijc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh3sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io2t6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_spellthief.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_spellthief.tres new file mode 100644 index 0000000..fb5f2b7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_spellthief.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://cjge60ba3fp6q"] + +[ext_resource type="Texture2D" uid="uid://cqmr5bgxsvhwi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png" id="1_ota4s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2pce"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f38aq"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xosm"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwkw1"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmu6b"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tftyd"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1p10"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw607"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7uuc"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dgfv"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yfq4"] +atlas = ExtResource("1_ota4s") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo83x"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvbtq"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2awxx"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j55hd"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acnh8"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k31o6"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en5uj"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8aya"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1em3"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la6h3"] +atlas = ExtResource("1_ota4s") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga3wd"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06bwl"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_burxn"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16lut"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kvf0"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1v1a"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vdug"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpjxf"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnks2"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwlhn"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc4s4"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elwxk"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn45g"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs8yf"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2wit"] +atlas = ExtResource("1_ota4s") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apnqj"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aps0r"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov85q"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uieyj"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gi3w"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv8rg"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riqq6"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psfr3"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ska"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukpv3"] +atlas = ExtResource("1_ota4s") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2v0a"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ctnr"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6wjt"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g112g"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8pef"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dleho"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c330g"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_het8g"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ronj2"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfxmx"] +atlas = ExtResource("1_ota4s") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o61d"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rob8c"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tu3p"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqm4i"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dgss"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urcr2"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23hpj"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ishq"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxhe8"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpfgo"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pybhr"] +atlas = ExtResource("1_ota4s") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0627"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cc1p"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omx36"] +atlas = ExtResource("1_ota4s") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dcq7"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igf1t"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7105n"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyqjp"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqkbj"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g24mr"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7hi5"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osilb"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ejp5"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o6u8"] +atlas = ExtResource("1_ota4s") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqslx"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ckyi"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0puy"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk628"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6lei"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnxmv"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slxun"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5ehi"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1flj2"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lerwd"] +atlas = ExtResource("1_ota4s") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2pce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f38aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xosm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwkw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmu6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tftyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1p10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw607") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7uuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dgfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yfq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo83x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvbtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2awxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j55hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acnh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k31o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en5uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8aya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1em3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la6h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga3wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06bwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_burxn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_16lut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kvf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1v1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vdug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpjxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnks2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwlhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc4s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elwxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn45g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs8yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2wit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apnqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aps0r") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov85q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uieyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gi3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv8rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riqq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psfr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ska") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukpv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2v0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ctnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6wjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g112g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8pef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dleho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c330g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_het8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ronj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfxmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o61d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rob8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tu3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqm4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dgss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urcr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23hpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ishq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxhe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpfgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pybhr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0627") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cc1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omx36") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dcq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igf1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7105n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyqjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqkbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g24mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7hi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osilb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ejp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o6u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqslx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ckyi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0puy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk628") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6lei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnxmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slxun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5ehi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1flj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lerwd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_stormkage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_stormkage.tres new file mode 100644 index 0000000..e42520d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_stormkage.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://cvegrxh0t6fhg"] + +[ext_resource type="Texture2D" uid="uid://dum4knehct2dd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png" id="1_jjumv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y10tm"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uf18"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43g3u"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aasvo"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvlnn"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or20d"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kay0x"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q17s2"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj0k2"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1huv"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ik7b"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bavim"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgaoq"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5lun"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57x6x"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n48d"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a65wd"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xfjw"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8puv"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76tvy"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2orvk"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itay2"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucvxq"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiq1d"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqvcr"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xgd1"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0xs8"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7i10"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mjmw"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajekk"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyxur"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r4sp"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v4wb"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vucho"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5x0d"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mw3i"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b1y5"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipqpu"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw4xb"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8328l"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soxl8"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdepb"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p7lp"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q7yo"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l7fy"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aol7t"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6yci"] +atlas = ExtResource("1_jjumv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77rt3"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80e32"] +atlas = ExtResource("1_jjumv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxafu"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na7v3"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nuhe"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upe7l"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0rc8"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg4sg"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhphd"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pvno"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ac18"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmv6c"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gwnb"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14oq8"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irbh4"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wndjw"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t256i"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jsh8"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfi0a"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w06c1"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m0ot"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iice2"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5syxy"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k382x"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh5q5"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7hle"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp20b"] +atlas = ExtResource("1_jjumv") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y10tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uf18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43g3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aasvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvlnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or20d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kay0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q17s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj0k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1huv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ik7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bavim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgaoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5lun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57x6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n48d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a65wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xfjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8puv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76tvy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2orvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itay2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucvxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiq1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqvcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xgd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0xs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7i10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mjmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajekk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyxur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r4sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v4wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vucho") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5x0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mw3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b1y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipqpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw4xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8328l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soxl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdepb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p7lp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q7yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l7fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aol7t") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6yci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77rt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80e32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxafu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na7v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nuhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upe7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0rc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg4sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhphd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pvno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ac18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmv6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gwnb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_14oq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irbh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wndjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t256i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jsh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfi0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w06c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m0ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iice2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5syxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k382x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh5q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7hle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp20b") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_supekuta.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_supekuta.tres new file mode 100644 index 0000000..d27af81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_supekuta.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://dbv0hsqw1bh0b"] + +[ext_resource type="Texture2D" uid="uid://dllvabd5sqci7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png" id="1_fxovv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg5jm"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_774bq"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b0c5"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt124"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnwex"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thc24"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w122"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8bng"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg0b4"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqlu2"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dcba"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs3g7"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fau0c"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uha2a"] +atlas = ExtResource("1_fxovv") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tkc0"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxhj5"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om4r2"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csn0r"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcqrh"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vigou"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwq1l"] +atlas = ExtResource("1_fxovv") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lo4l"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvh4e"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7biwo"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxgjo"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2upg"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvlat"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxwoq"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvnja"] +atlas = ExtResource("1_fxovv") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxwkn"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeg4s"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g5r1"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7opl"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3waab"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suh1s"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlesp"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8goj"] +atlas = ExtResource("1_fxovv") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thnj8"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kdfo"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5yk7"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndt05"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay60p"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elgxa"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywsp5"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7heh"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5rq2"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o34t4"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eh7m"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3msl"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1118m"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ixn6"] +atlas = ExtResource("1_fxovv") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep6c7"] +atlas = ExtResource("1_fxovv") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5ben"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w0q3"] +atlas = ExtResource("1_fxovv") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyihc"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38po5"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f43l1"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou1rl"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7qmt"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcr51"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4wwp"] +atlas = ExtResource("1_fxovv") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re8fn"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpaws"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj3gt"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_innou"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr68m"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmnk3"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwxt4"] +atlas = ExtResource("1_fxovv") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2fw5"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr8cw"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgx5y"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weksi"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46jfl"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33un1"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgrxk"] +atlas = ExtResource("1_fxovv") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg5jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_774bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b0c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt124") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnwex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thc24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w122") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8bng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg0b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqlu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dcba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs3g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fau0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uha2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tkc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxhj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om4r2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_csn0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcqrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vigou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwq1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lo4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvh4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7biwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxgjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2upg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvlat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxwoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvnja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxwkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeg4s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g5r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7opl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3waab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suh1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlesp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8goj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thnj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kdfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5yk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndt05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay60p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elgxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywsp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7heh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5rq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o34t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eh7m") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3msl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1118m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ixn6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep6c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5ben") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w0q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyihc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38po5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f43l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou1rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7qmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcr51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4wwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re8fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpaws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj3gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_innou") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr68m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmnk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwxt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2fw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr8cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgx5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weksi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46jfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33un1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgrxk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_support.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_support.tres new file mode 100644 index 0000000..f8a94bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_support.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://c1ctwqwhyakvf"] + +[ext_resource type="Texture2D" uid="uid://byijiwpenabfd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png" id="1_uadlv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_51dxn"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4e5y"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5q54"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b3lr"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al0k8"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b0u2"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h68hg"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r66ui"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnne8"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yswk7"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1jlu"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s62ah"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vk8a"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nli1m"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3rso"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx0ru"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qnqt"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw1l2"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7xsm"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umsrg"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p74lc"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwrn0"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awwwu"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc8oy"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejq4k"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk841"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfdot"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03lye"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht2w7"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqplf"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq60i"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7wuq"] +atlas = ExtResource("1_uadlv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4x6j"] +atlas = ExtResource("1_uadlv") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npdc2"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svcka"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p13n"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js17a"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjmh7"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb4iy"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2t71"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4op5u"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny61y"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x71cx"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uis2l"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73b5s"] +atlas = ExtResource("1_uadlv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbycf"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lo1"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b82pr"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddlgl"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57xm5"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac7cb"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw747"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fo6e"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tswdy"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ettml"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sed3p"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utpsv"] +atlas = ExtResource("1_uadlv") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_51dxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4e5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5q54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b3lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al0k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b0u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h68hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r66ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnne8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yswk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1jlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s62ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vk8a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nli1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3rso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx0ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qnqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw1l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7xsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umsrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p74lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwrn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awwwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc8oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejq4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk841") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfdot") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_03lye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht2w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqplf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq60i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7wuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4x6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npdc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svcka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p13n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js17a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjmh7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb4iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2t71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4op5u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny61y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x71cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uis2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73b5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbycf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b82pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddlgl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_57xm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac7cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw747") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fo6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tswdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ettml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sed3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utpsv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_synergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_synergyunit.tres new file mode 100644 index 0000000..1745a4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_synergyunit.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://ok41ra5k8c3i"] + +[ext_resource type="Texture2D" uid="uid://cit60ganm2qfi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png" id="1_lc1u3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bxmf"] +atlas = ExtResource("1_lc1u3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uewh"] +atlas = ExtResource("1_lc1u3") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa43r"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osou5"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dofcx"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akepr"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grm0w"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puekx"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qrfq"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7d6u"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pvy5"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nka5l"] +atlas = ExtResource("1_lc1u3") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n18l7"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c320k"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbbe4"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q6qn"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fttmk"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01h7k"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5w2g"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fst81"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m76gt"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywf20"] +atlas = ExtResource("1_lc1u3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnv2d"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cefhc"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vuwk"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw8t6"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3n5j"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jydca"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cutgv"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm53i"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0oen"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvja1"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0esth"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oubyu"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8tej"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vx4e"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oq5y"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ksds"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw4yu"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdvyu"] +atlas = ExtResource("1_lc1u3") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyvos"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knmo1"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmuhk"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16mwc"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucqaf"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j71m"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udr48"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxr5b"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d17k"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fbdj"] +atlas = ExtResource("1_lc1u3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qs7e"] +atlas = ExtResource("1_lc1u3") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wjwc"] +atlas = ExtResource("1_lc1u3") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3iql"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pugxi"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alajw"] +atlas = ExtResource("1_lc1u3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hspx"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67os1"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roryy"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d3uk"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpchx"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyqhs"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwpsn"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qseu"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlxj7"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yayug"] +atlas = ExtResource("1_lc1u3") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q83nb"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go7i2"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b3gk"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7epso"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsx5p"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7b3q"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r8ti"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgka3"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf11i"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsawl"] +atlas = ExtResource("1_lc1u3") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bxmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uewh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa43r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osou5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dofcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akepr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grm0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puekx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qrfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7d6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pvy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nka5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n18l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c320k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbbe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q6qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fttmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01h7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5w2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fst81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m76gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywf20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnv2d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cefhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vuwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw8t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3n5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jydca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cutgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm53i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0oen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvja1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0esth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oubyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8tej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vx4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oq5y") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ksds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw4yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdvyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyvos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knmo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmuhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16mwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucqaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j71m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udr48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxr5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d17k") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fbdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qs7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wjwc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3iql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pugxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alajw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hspx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67os1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roryy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d3uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpchx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyqhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwpsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qseu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlxj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yayug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q83nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go7i2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b3gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7epso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsx5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7b3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r8ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgka3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf11i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsawl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tank.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tank.tres new file mode 100644 index 0000000..d4733f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tank.tres @@ -0,0 +1,421 @@ +[gd_resource type="SpriteFrames" load_steps=57 format=3 uid="uid://jfmt8g8f253x"] + +[ext_resource type="Texture2D" uid="uid://by80ra1recadl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png" id="1_bd08f"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n816l"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cpu3"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v70cy"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db4mx"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p5b4"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmqy6"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e7ac"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7dlf"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1x6s"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sga05"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7pc2"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbm0v"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sexm2"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_443lj"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6d1p"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3y30"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un3vc"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm0kh"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwlh0"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuyij"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5sgy"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2c8d"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbmoc"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbfiv"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy87o"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4caw7"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp4ed"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aigfv"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou75p"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psm42"] +atlas = ExtResource("1_bd08f") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtdjl"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evjf2"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw4wg"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmdmk"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c63a7"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yhvm"] +atlas = ExtResource("1_bd08f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6te4x"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te4du"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gevok"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_361ed"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8vct"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sliih"] +atlas = ExtResource("1_bd08f") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rfj5"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwg32"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ols6"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7b3g"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owvk5"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fudr4"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svynn"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yiqs"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34os3"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbkll"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmvae"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c885"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgmni"] +atlas = ExtResource("1_bd08f") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n816l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cpu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v70cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db4mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p5b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmqy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e7ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7dlf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1x6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sga05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7pc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbm0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sexm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_443lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6d1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3y30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un3vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm0kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwlh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuyij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5sgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2c8d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbmoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbfiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy87o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4caw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp4ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aigfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou75p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psm42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtdjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evjf2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw4wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmdmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c63a7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yhvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6te4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te4du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gevok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_361ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8vct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sliih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rfj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwg32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ols6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7b3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owvk5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fudr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svynn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yiqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34os3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbkll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmvae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c885") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgmni") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tier2general.tres new file mode 100644 index 0000000..07a90a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_tier2general.tres @@ -0,0 +1,959 @@ +[gd_resource type="SpriteFrames" load_steps=131 format=3 uid="uid://f4803al1fv3u"] + +[ext_resource type="Texture2D" uid="uid://bk4vdhpqqak2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png" id="1_hj7wh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ng0t"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m6bg"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvgs2"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r08f6"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24vto"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2xoe"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dsj1"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekh3h"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbjd6"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5k1m"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxf2r"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oboh"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c8ib"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lsi3"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2vpx"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvj25"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krmm6"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0b1j"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jth5f"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ohvd"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7004"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrqbn"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2248"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdyah"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u50cg"] +atlas = ExtResource("1_hj7wh") +region = Rect2(135, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3df0o"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uxhi"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31vfr"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1b35"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sitgh"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtpl8"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxcht"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uado2"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ta3"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwagf"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyfph"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ckdk"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wamjl"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnhtm"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqt4n"] +atlas = ExtResource("1_hj7wh") +region = Rect2(0, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6d7i"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bepiv"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v64tk"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_172vp"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgtbl"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ke2"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp778"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nskb"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkpgf"] +atlas = ExtResource("1_hj7wh") +region = Rect2(1080, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd6f8"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tahom"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw7wb"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7q75"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63jeh"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc6qe"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x52k8"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dwcu"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2p1k"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj5tj"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pplqv"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkweg"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfcgt"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnb8f"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1l33"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_444br"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7f1q"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8m08"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d22x"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uomue"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh0og"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uk53"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5bgs"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhb57"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6h6w"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhxsw"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxgnn"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o221t"] +atlas = ExtResource("1_hj7wh") +region = Rect2(1080, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1ld8"] +atlas = ExtResource("1_hj7wh") +region = Rect2(1080, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obfe5"] +atlas = ExtResource("1_hj7wh") +region = Rect2(1080, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qasy4"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgo8n"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu3gi"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnart"] +atlas = ExtResource("1_hj7wh") +region = Rect2(945, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtx0o"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtw80"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocjir"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jumij"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl7o4"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy2dd"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04u3g"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjq2t"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xmf"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuibt"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up6ed"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh5jb"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtecp"] +atlas = ExtResource("1_hj7wh") +region = Rect2(405, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7vdj"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlt6r"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdh6n"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i5nn"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5p3a"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bbaa"] +atlas = ExtResource("1_hj7wh") +region = Rect2(270, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldrdw"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8shco"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rawr6"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m5pj"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gob03"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1485, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpeqe"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1350, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm68i"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1215, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ukg"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1080, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj21w"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 945, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n2xd"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 810, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stadq"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0rca"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8nda"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyq8d"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg3ig"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohpr"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa867"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t32qk"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1755, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1fqv"] +atlas = ExtResource("1_hj7wh") +region = Rect2(540, 1620, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0l50"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 675, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uub1l"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 540, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgjc0"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 405, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt24m"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 270, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0fcr"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 135, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2jjx"] +atlas = ExtResource("1_hj7wh") +region = Rect2(810, 0, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atb2e"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1890, 134, 134) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbrjr"] +atlas = ExtResource("1_hj7wh") +region = Rect2(675, 1755, 134, 134) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ng0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m6bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvgs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r08f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24vto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2xoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dsj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekh3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbjd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5k1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxf2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oboh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c8ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lsi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2vpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvj25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krmm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0b1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jth5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ohvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7004") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrqbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2248") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdyah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u50cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3df0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uxhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31vfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1b35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sitgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtpl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxcht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uado2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ta3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwagf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyfph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ckdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wamjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnhtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqt4n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6d7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bepiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v64tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_172vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgtbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ke2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp778") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nskb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkpgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd6f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tahom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw7wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7q75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63jeh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc6qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x52k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dwcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2p1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj5tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pplqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkweg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfcgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnb8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1l33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_444br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7f1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8m08") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d22x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uomue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh0og") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uk53") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5bgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhb57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6h6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhxsw") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxgnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o221t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1ld8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obfe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qasy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgo8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu3gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnart") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtx0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtw80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocjir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jumij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl7o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy2dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04u3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjq2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuibt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up6ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh5jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtecp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7vdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlt6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdh6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i5nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5p3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bbaa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldrdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8shco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rawr6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m5pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gob03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpeqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm68i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ukg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj21w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n2xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stadq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0rca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8nda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyq8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg3ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa867") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t32qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1fqv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0l50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uub1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgjc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt24m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0fcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2jjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atb2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbrjr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_twilightfox.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_twilightfox.tres new file mode 100644 index 0000000..45b909c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_twilightfox.tres @@ -0,0 +1,570 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://0rtd4hjxiiw2"] + +[ext_resource type="Texture2D" uid="uid://ckxtlmbvw2t63" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png" id="1_utq3x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_757r5"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7w70"] +atlas = ExtResource("1_utq3x") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm4wb"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqi04"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu072"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlp6t"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8csf"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5li0"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ucy"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbldk"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb3ei"] +atlas = ExtResource("1_utq3x") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4pgn"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyqtq"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wag6m"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2udo"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh6fa"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yxhs"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1o70"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqg5n"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu55f"] +atlas = ExtResource("1_utq3x") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p44p"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edu16"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee54c"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb0g1"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw00y"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugtp0"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ji4"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqwov"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3c4k"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvihi"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5nuu"] +atlas = ExtResource("1_utq3x") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ufa"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8rpq"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsnvp"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdieu"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oa6s"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d44rq"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt5qo"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimd1"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfjd5"] +atlas = ExtResource("1_utq3x") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n08hq"] +atlas = ExtResource("1_utq3x") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2bnp"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whdju"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r47we"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34pnn"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlcrj"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw8o6"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flu5f"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj3ol"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogcy1"] +atlas = ExtResource("1_utq3x") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb1md"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anoy3"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iip4"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aggbd"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l17e"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx8e3"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5tss"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak2j0"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53kod"] +atlas = ExtResource("1_utq3x") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81e7f"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv3ci"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un06i"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jovnw"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aof6d"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivrdd"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huaer"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvfn4"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ysor"] +atlas = ExtResource("1_utq3x") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlpgm"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaav0"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh0j4"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nivtk"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qejv"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02mxt"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js3dc"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h405"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n87o6"] +atlas = ExtResource("1_utq3x") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_757r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7w70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm4wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqi04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu072") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlp6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8csf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5li0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbldk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb3ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4pgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyqtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wag6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2udo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh6fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yxhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1o70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqg5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu55f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p44p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edu16") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee54c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb0g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw00y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugtp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ji4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqwov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3c4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvihi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5nuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ufa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8rpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsnvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdieu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oa6s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d44rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt5qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yimd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfjd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n08hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2bnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whdju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r47we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34pnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlcrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw8o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flu5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj3ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogcy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb1md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anoy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iip4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aggbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l17e") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx8e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5tss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak2j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53kod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81e7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv3ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un06i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jovnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aof6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivrdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huaer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvfn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ysor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlpgm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaav0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh0j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nivtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qejv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02mxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js3dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h405") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n87o6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_xho.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_xho.tres new file mode 100644 index 0000000..58055fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f2_xho.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://0yh3h2wylpe1"] + +[ext_resource type="Texture2D" uid="uid://b38bmjcprt3ad" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png" id="1_jr2go"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvfqm"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvxfm"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlr6"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gn0q"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i88j"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pekxr"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c24y3"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vt4c"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dnfi"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2ehd"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvys4"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp1pp"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wfqd"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og81v"] +atlas = ExtResource("1_jr2go") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oyad"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0mr2"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk480"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpent"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdocx"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5s7d"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkqao"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceawx"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npfvn"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe447"] +atlas = ExtResource("1_jr2go") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf3vg"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j31bt"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwpy7"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggkd1"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl7bi"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujsjp"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0a5y"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fciga"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp5nt"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap3jp"] +atlas = ExtResource("1_jr2go") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21oyq"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjxei"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pbj5"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slq2s"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3k8s"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyae7"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34mep"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgep1"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af8yc"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57yeu"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q455s"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8rjt"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhyou"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0um5"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwt7w"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaygj"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1duu"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46a0u"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aqfd"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfw80"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou0j5"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q66h"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_invgb"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5eh5k"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gcsi"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peto1"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppir3"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8u6c"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gffu"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usifa"] +atlas = ExtResource("1_jr2go") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og02q"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2751t"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_566uw"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1gmb"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpxvy"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgnpi"] +atlas = ExtResource("1_jr2go") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf5i0"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rn52"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jgc"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r835d"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrrb5"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aq7n"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62lcj"] +atlas = ExtResource("1_jr2go") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_310ky"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77xir"] +atlas = ExtResource("1_jr2go") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txghl"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh0cb"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbuec"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3vfd"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiygu"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4tm5"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y70f"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo057"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgna"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21upc"] +atlas = ExtResource("1_jr2go") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvfqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvxfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvlr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gn0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i88j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pekxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c24y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vt4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dnfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2ehd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvys4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp1pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wfqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og81v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oyad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0mr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk480") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpent") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5s7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkqao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceawx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npfvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe447") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf3vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j31bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwpy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggkd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl7bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujsjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0a5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fciga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp5nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap3jp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_21oyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjxei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pbj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slq2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3k8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyae7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34mep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgep1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af8yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57yeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q455s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8rjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhyou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0um5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwt7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaygj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1duu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46a0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aqfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfw80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou0j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q66h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_invgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5eh5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gcsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peto1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppir3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8u6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gffu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usifa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og02q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2751t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_566uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1gmb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpxvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgnpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf5i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rn52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0jgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r835d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrrb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aq7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62lcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_310ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77xir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txghl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh0cb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbuec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3vfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiygu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4tm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y70f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo057") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21upc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_3rdgeneral.tres new file mode 100644 index 0000000..6f7202e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_3rdgeneral.tres @@ -0,0 +1,861 @@ +[gd_resource type="SpriteFrames" load_steps=117 format=3 uid="uid://b11m3vphlt5qo"] + +[ext_resource type="Texture2D" uid="uid://o4oqooer30xi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png" id="1_n1mo3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxiqf"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytahl"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1452, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gen0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1452, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plbdr"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1452, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sgca"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1452, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4ioh"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvvqc"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdlk6"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeanb"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0gpv"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynrsd"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uicwt"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq666"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1331, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eawp"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lci3a"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp28a"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cetuh"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhv2d"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6jt0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwvu2"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71ghe"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro3e2"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asgru"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4tqt"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fypr"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2dxy"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sggn1"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntueb"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02dlf"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71vgg"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iquy6"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f5yp"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ousk"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ws8"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wofr0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45jne"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vou1"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhdpx"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_paujt"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5m82"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i177"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtsb3"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko2d2"] +atlas = ExtResource("1_n1mo3") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq7qv"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7rm2"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvtcf"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrh23"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h367s"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjdhe"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4axwy"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm6io"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gld3q"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rex8c"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbalv"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlv5k"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwgx7"] +atlas = ExtResource("1_n1mo3") +region = Rect2(1452, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22aqo"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u60o0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crf0t"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbcee"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcku5"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eytyt"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tgpi"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpdfg"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpp0g"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b4sf"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl0rm"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8rw3"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yseyq"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xl6k"] +atlas = ExtResource("1_n1mo3") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n74n8"] +atlas = ExtResource("1_n1mo3") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k8ac"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxla0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rkne"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bwad"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsnbg"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atojf"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubc80"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h188p"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x73ts"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clnfn"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccygs"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tna0e"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn1ex"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krdwi"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgf15"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4k2q"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j11hp"] +atlas = ExtResource("1_n1mo3") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfseq"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46jhj"] +atlas = ExtResource("1_n1mo3") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_droc6"] +atlas = ExtResource("1_n1mo3") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15ktq"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kspum"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urqll"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxgln"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owrsb"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5dwd"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcrq7"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2v00"] +atlas = ExtResource("1_n1mo3") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv888"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lqd3"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgcpv"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwr84"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvbj7"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ne3"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt0x0"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3r07"] +atlas = ExtResource("1_n1mo3") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we0w5"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdpp4"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqjt8"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi7td"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdt3o"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njjni"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pex44"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odc38"] +atlas = ExtResource("1_n1mo3") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxiqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytahl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gen0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plbdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sgca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4ioh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvvqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdlk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeanb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0gpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynrsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uicwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq666") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eawp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lci3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp28a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cetuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhv2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6jt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwvu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71ghe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro3e2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_asgru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4tqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fypr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2dxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sggn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntueb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02dlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71vgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iquy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f5yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ousk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ws8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wofr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45jne") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vou1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhdpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_paujt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5m82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i177") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtsb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko2d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq7qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7rm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvtcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrh23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h367s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjdhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4axwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm6io") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gld3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rex8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbalv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlv5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwgx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22aqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u60o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crf0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbcee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcku5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eytyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tgpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpdfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpp0g") +}], +"loop": true, +"name": &"castLoop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b4sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl0rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8rw3") +}], +"loop": true, +"name": &"castStart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yseyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xl6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n74n8") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k8ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxla0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rkne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bwad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsnbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atojf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubc80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h188p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x73ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clnfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccygs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tna0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn1ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krdwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgf15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4k2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j11hp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfseq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46jhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_droc6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_15ktq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kspum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urqll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxgln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owrsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5dwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcrq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2v00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv888") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lqd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgcpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwr84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvbj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ne3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt0x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3r07") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_we0w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdpp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqjt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi7td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdt3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njjni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pex44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odc38") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_allomancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_allomancer.tres new file mode 100644 index 0000000..ed80cf1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_allomancer.tres @@ -0,0 +1,876 @@ +[gd_resource type="SpriteFrames" load_steps=122 format=3 uid="uid://cwd7b4pe2xxag"] + +[ext_resource type="Texture2D" uid="uid://n3humpgrhn3p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png" id="1_52bd4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyjba"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrk4g"] +atlas = ExtResource("1_52bd4") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjhfi"] +atlas = ExtResource("1_52bd4") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvcj7"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yta5m"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh1s8"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddgq1"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1mvt"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg4on"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apxuo"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e41hr"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oerrp"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexl4"] +atlas = ExtResource("1_52bd4") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf0m2"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q31so"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qki0"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk3da"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jejtk"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbwmg"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62owx"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpyco"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4olc3"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrwoa"] +atlas = ExtResource("1_52bd4") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yukl"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fooeu"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa0yp"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a208"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86q5w"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86yo7"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjlkk"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6pr3"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05wu3"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsjcg"] +atlas = ExtResource("1_52bd4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfa45"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ontfm"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ke7d"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56c4j"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx4bk"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fau8"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdt2y"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ky5x"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4drtd"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cin4b"] +atlas = ExtResource("1_52bd4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynef4"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3txhb"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlo5y"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gfhy"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckgjq"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bve3m"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydfbl"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar1bb"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck4fx"] +atlas = ExtResource("1_52bd4") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0mkv"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy6vl"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aclun"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ocdj"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trag8"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmp40"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o7m"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb1c2"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3x3k"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vejd"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2axv"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnota"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0heru"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t3m7"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ht5"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh1hg"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r262e"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0r63"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i1lb"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp4yi"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylbr2"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u7sw"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibf0d"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_met4n"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdua3"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l77ry"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxwnp"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe33a"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf0fr"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jionr"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp54y"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d4t5"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oac6q"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1geo"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orrui"] +atlas = ExtResource("1_52bd4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qlfk"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiw6w"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw66c"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_038we"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwgix"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bm4n"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp0er"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwnjk"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu7sa"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdju7"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10p7m"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p36w"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5nav"] +atlas = ExtResource("1_52bd4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilucf"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmww5"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uijpp"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8kqu"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6a3o"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jcub"] +atlas = ExtResource("1_52bd4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s30an"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bstn"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioar8"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6372"] +atlas = ExtResource("1_52bd4") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv7xq"] +atlas = ExtResource("1_52bd4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwsqd"] +atlas = ExtResource("1_52bd4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edq8o"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e6cs"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaj6v"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn42j"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1otol"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6bta"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjpet"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewien"] +atlas = ExtResource("1_52bd4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyjba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrk4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjhfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvcj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yta5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh1s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddgq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1mvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg4on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apxuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e41hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oerrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf0m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q31so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qki0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk3da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jejtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbwmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62owx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpyco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4olc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrwoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yukl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fooeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa0yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a208") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86q5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86yo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjlkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6pr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05wu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsjcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfa45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ontfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ke7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56c4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx4bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fau8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdt2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ky5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4drtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cin4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynef4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3txhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlo5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gfhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckgjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bve3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydfbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar1bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck4fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0mkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy6vl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aclun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ocdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trag8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmp40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb1c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3x3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vejd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2axv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnota") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0heru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t3m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ht5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh1hg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r262e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0r63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i1lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp4yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylbr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u7sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibf0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_met4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdua3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l77ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxwnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe33a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf0fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jionr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp54y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d4t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oac6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1geo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orrui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qlfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiw6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw66c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_038we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwgix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bm4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp0er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwnjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu7sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdju7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_10p7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p36w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5nav") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilucf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmww5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uijpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8kqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6a3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jcub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s30an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bstn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioar8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6372") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv7xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwsqd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_edq8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e6cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaj6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn42j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1otol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6bta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjpet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewien") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneral.tres new file mode 100644 index 0000000..3f86ef9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneral.tres @@ -0,0 +1,875 @@ +[gd_resource type="SpriteFrames" load_steps=119 format=3 uid="uid://cofuia1iimo8f"] + +[ext_resource type="Texture2D" uid="uid://3kwnavdiap4y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png" id="1_8xm0d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehnqm"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xksv"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3283"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18c7g"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6fcd"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ktdj"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76fyy"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c66o2"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hlfl"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omfld"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep8gu"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntwai"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm3ss"] +atlas = ExtResource("1_8xm0d") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqwg5"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a10bq"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73f2k"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_135h8"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q701"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pcyv"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfnih"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x1cf"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wolj1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(0, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f88q"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itmay"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfmer"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx2a2"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd77l"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo58a"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q60t7"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54pq3"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwcx1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf2dj"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a7rj"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl7cu"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ham5j"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jwe8"] +atlas = ExtResource("1_8xm0d") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mryjk"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldlq5"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00pir"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpb5g"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqsdc"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d6vt"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg11s"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08vn1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c53sa"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_expno"] +atlas = ExtResource("1_8xm0d") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o7el"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c632m"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6ino"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6fdu"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce1nf"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkp0e"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pefj"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35tbg"] +atlas = ExtResource("1_8xm0d") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hye5c"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsqng"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v08xu"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghlln"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dbph"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lftx"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6teod"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqu8e"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxwko"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1f1j"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mfus"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_302kx"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo0l8"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0ms6"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv6pd"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3h88"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ndp"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0nfa"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jknvw"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb2ta"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irbmc"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmnaw"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbebg"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h37c3"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2buo"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7dag"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2murl"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqqmg"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxyyb"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtx4s"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqekm"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qhim"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d43ks"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbu7p"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88g4n"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7bou"] +atlas = ExtResource("1_8xm0d") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i01y1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhr1r"] +atlas = ExtResource("1_8xm0d") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miaib"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7ay1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wxxa"] +atlas = ExtResource("1_8xm0d") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxwdb"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfbno"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftd5o"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqac"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44tsi"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reeg8"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x86v5"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbv78"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhks1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ievpp"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl3q2"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15828"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_371fp"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixfj1"] +atlas = ExtResource("1_8xm0d") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkomd"] +atlas = ExtResource("1_8xm0d") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atmd7"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lugvj"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehbme"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeqs2"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46he2"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1221, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74hkw"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_417cf"] +atlas = ExtResource("1_8xm0d") +region = Rect2(1110, 777, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehnqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xksv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3283") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18c7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6fcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ktdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76fyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c66o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hlfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omfld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep8gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntwai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm3ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqwg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a10bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73f2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_135h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q701") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pcyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfnih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x1cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wolj1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f88q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itmay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfmer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx2a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd77l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo58a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q60t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54pq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwcx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf2dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a7rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl7cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ham5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jwe8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mryjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldlq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00pir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpb5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqsdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d6vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg11s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08vn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c53sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_expno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o7el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c632m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6ino") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6fdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce1nf") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkp0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pefj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35tbg") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hye5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsqng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v08xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghlln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dbph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lftx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6teod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqu8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxwko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1f1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mfus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_302kx") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo0l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0ms6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv6pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3h88") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ndp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0nfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jknvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb2ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irbmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmnaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbebg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h37c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2buo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7dag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2murl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqqmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxyyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtx4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqekm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qhim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d43ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbu7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88g4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7bou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i01y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhr1r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_miaib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7ay1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxxa") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxwdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfbno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftd5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44tsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reeg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x86v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbv78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhks1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ievpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15828") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_371fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixfj1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkomd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atmd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lugvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehbme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeqs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46he2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74hkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_417cf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneraltier2.tres new file mode 100644 index 0000000..62ce404 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_altgeneraltier2.tres @@ -0,0 +1,826 @@ +[gd_resource type="SpriteFrames" load_steps=112 format=3 uid="uid://c18ydycfpj7rt"] + +[ext_resource type="Texture2D" uid="uid://bqi1hbjtf3huj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png" id="1_yrn3v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_00pwv"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muhbd"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6agw"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwija"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18cj8"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62v1l"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpqlr"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07xgg"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvn65"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7ar2"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22ms0"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5l5v"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cucip"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tw52"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmt3s"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhg5r"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umrnb"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsk13"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4xk5"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8na2p"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k27c"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t45w6"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us6g1"] +atlas = ExtResource("1_yrn3v") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puvw4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k65ea"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it0ef"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu1nx"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qb28"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyhyq"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8c0h"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxms2"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44jvr"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iub5w"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb1wf"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y5gw"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj8ti"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm0nb"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn4lx"] +atlas = ExtResource("1_yrn3v") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1buu"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr77j"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qbsp"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lab3f"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m3d5"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g82yl"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7715j"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu6qj"] +atlas = ExtResource("1_yrn3v") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmk85"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jp2v"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi7hw"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyc2i"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmlk4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3ds0"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2yfe"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhp6u"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5lc8"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s5um"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03al4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hdfk"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbgbt"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3xbr"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfea2"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aixix"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm7a3"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am7eq"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txe0c"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cju72"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mt0f"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nax83"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i0c1"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08215"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k74bj"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0qvn"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k5b7"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmavi"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enjpa"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l1q4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l422m"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2dqt"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yu0p"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aocs0"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x6yu"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it3po"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlkmk"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf4th"] +atlas = ExtResource("1_yrn3v") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q1po"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s01b6"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3560"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a70qq"] +atlas = ExtResource("1_yrn3v") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq1y4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kquvs"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48jui"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrpn4"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrr88"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmx4u"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7wld"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhtb1"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_016v3"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4rju"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c54gk"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi5bu"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k3t1"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckb4y"] +atlas = ExtResource("1_yrn3v") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q4h1"] +atlas = ExtResource("1_yrn3v") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa40n"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a11fl"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7ceb"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k3kv"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf8qw"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deimo"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn7ap"] +atlas = ExtResource("1_yrn3v") +region = Rect2(786, 1048, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_00pwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muhbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6agw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwija") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18cj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62v1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpqlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07xgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvn65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7ar2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22ms0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5l5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cucip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tw52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmt3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhg5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umrnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsk13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4xk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8na2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k27c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t45w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us6g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puvw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k65ea") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_it0ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu1nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qb28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyhyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8c0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxms2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44jvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iub5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb1wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y5gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj8ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm0nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn4lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1buu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr77j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qbsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lab3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m3d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g82yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7715j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu6qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmk85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jp2v") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi7hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyc2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmlk4") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3ds0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2yfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhp6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5lc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s5um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03al4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hdfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbgbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3xbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfea2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aixix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm7a3") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_am7eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txe0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cju72") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mt0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nax83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i0c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08215") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k74bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0qvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k5b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmavi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enjpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l1q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l422m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2dqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yu0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aocs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x6yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it3po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlkmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf4th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q1po") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s01b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3560") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a70qq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq1y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kquvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48jui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrpn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrr88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmx4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7wld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhtb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_016v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4rju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c54gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi5bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k3t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckb4y") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q4h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa40n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a11fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7ceb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k3kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf8qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deimo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn7ap") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_anubis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_anubis.tres new file mode 100644 index 0000000..dbe4fb4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_anubis.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://b3gqaoel0wk8"] + +[ext_resource type="Texture2D" uid="uid://tsd0uuua0hqq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png" id="1_vx7rh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vhad"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0cea"] +atlas = ExtResource("1_vx7rh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrrli"] +atlas = ExtResource("1_vx7rh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28uga"] +atlas = ExtResource("1_vx7rh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki7cm"] +atlas = ExtResource("1_vx7rh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om8rn"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sq1r"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swt81"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa4x7"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh3r0"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbkcf"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x02h5"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msqfn"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46173"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyo0n"] +atlas = ExtResource("1_vx7rh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gepcn"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urlx2"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klovo"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfe2b"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt4dr"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11bvq"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r62bw"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhsds"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxa54"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8mqy"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmeua"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08kqy"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2abf"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtxaj"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qawmf"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6jv7"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lvba"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1vrq"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ree33"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2dn5"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo6fo"] +atlas = ExtResource("1_vx7rh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg48e"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75rpm"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd1gg"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf6du"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wndgk"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auw1u"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hjii"] +atlas = ExtResource("1_vx7rh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuhj5"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj08v"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pndei"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spvgd"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tysry"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6no27"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26a07"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egewc"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jtn4"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iflq4"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hibu2"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5g8l"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lifg"] +atlas = ExtResource("1_vx7rh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r52fx"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6fn1"] +atlas = ExtResource("1_vx7rh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnean"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gxpd"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_041sf"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg6rd"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5sh6"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfia8"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74xyt"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70i8g"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj2s6"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pybp"] +atlas = ExtResource("1_vx7rh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2nsn"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj2nh"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtnhq"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj1ss"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgfnb"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pluu0"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk4i0"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcr1f"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id4ai"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omdkq"] +atlas = ExtResource("1_vx7rh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vhad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0cea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrrli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28uga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki7cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om8rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sq1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swt81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa4x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh3r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbkcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x02h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msqfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46173") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyo0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gepcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urlx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klovo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfe2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt4dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11bvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r62bw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhsds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxa54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8mqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmeua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08kqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2abf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtxaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qawmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6jv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lvba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1vrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ree33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2dn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo6fo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg48e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75rpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd1gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf6du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wndgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auw1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hjii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuhj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj08v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pndei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spvgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tysry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6no27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26a07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egewc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jtn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iflq4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hibu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5g8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lifg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r52fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6fn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnean") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gxpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_041sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg6rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5sh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfia8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74xyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70i8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj2s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2nsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj2nh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtnhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj1ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgfnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pluu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk4i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcr1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id4ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omdkq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_aymarahealer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_aymarahealer.tres new file mode 100644 index 0000000..fc468f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_aymarahealer.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://dd64oao62b8r1"] + +[ext_resource type="Texture2D" uid="uid://cs0my6yqvk5jw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png" id="1_0hpw8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f53n2"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm08d"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_572dw"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snxtl"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_towdx"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dfq4"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stw3y"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5j6x"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxsti"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujq6x"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo2y4"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oelb"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gqyi"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wihuk"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sd6t"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bav4f"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilust"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntdnr"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvq6j"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6r4h"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uews"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp2nj"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2udx"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt5m3"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dme3g"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8h1b"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hna04"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fm63"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iifky"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31jhc"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj18r"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt26j"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8awy"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvw7i"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xfxe"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c381a"] +atlas = ExtResource("1_0hpw8") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmxwy"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nssk4"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm01x"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkp7o"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ronv"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgh22"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rbwq"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fiye"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgskn"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd0du"] +atlas = ExtResource("1_0hpw8") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vikfv"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py46f"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj4i0"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_581wq"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic6nu"] +atlas = ExtResource("1_0hpw8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vknd"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4f0f"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xlqp"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c1bb"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlun0"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhnh0"] +atlas = ExtResource("1_0hpw8") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xbgm"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up4ga"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxr5g"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c8lr"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o6uh"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87uvg"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnj8o"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc48m"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb54a"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ipd2"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oede"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe2g6"] +atlas = ExtResource("1_0hpw8") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f53n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm08d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_572dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snxtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_towdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dfq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stw3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5j6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxsti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujq6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo2y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oelb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gqyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wihuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sd6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bav4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilust") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntdnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvq6j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6r4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uews") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp2nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2udx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt5m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dme3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8h1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hna04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fm63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iifky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31jhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj18r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt26j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8awy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvw7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xfxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c381a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmxwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nssk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm01x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkp7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ronv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgh22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rbwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fiye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgskn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd0du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vikfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py46f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj4i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_581wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic6nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vknd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4f0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xlqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c1bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlun0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhnh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xbgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up4ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxr5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c8lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o6uh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_87uvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnj8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc48m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb54a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ipd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oede") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe2g6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_badlandsscout.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_badlandsscout.tres new file mode 100644 index 0000000..c1e361a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_badlandsscout.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://ch6vrakt2veke"] + +[ext_resource type="Texture2D" uid="uid://bb2dprvjkprv6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png" id="1_kq145"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb4pn"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3m4e"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ongsq"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vcmj"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypi35"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7dep"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egwqw"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuu6c"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a4j1"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgsmh"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lemyc"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvukj"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du4j8"] +atlas = ExtResource("1_kq145") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ffaj"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbvap"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnqgr"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd4xi"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wvy2"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyqto"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sl6c"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ba6u"] +atlas = ExtResource("1_kq145") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0uxd"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbto8"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24m4y"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au5jv"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chf1x"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj0oj"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7n3k"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayyxj"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swscf"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej4km"] +atlas = ExtResource("1_kq145") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0quqe"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8brvt"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wkh1"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqbue"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhokf"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljfm1"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nfwr"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vel86"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o5fa"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arthu"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u85t"] +atlas = ExtResource("1_kq145") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f7gy"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxdg8"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtwqd"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn2pv"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qayw6"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ggij"] +atlas = ExtResource("1_kq145") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s67l3"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rnln"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc820"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcuqp"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j4u5"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m66m"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep0nt"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86e8d"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbs4d"] +atlas = ExtResource("1_kq145") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caxu4"] +atlas = ExtResource("1_kq145") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ajsx"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgjbf"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvxsu"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jwag"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0erpo"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdlpr"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn2vd"] +atlas = ExtResource("1_kq145") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lql4s"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g52od"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cla2i"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inqfu"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsv2t"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c5ea"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u2f1"] +atlas = ExtResource("1_kq145") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1g7l"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cww7f"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7368"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28d85"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjj0j"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucuyl"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nawlw"] +atlas = ExtResource("1_kq145") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb4pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3m4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ongsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vcmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypi35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7dep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egwqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuu6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a4j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgsmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lemyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvukj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du4j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ffaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbvap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnqgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd4xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wvy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyqto") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sl6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ba6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0uxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbto8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24m4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au5jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chf1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj0oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7n3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayyxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swscf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej4km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0quqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8brvt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wkh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqbue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhokf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljfm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nfwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vel86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o5fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arthu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u85t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f7gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxdg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtwqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn2pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qayw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ggij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s67l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rnln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc820") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcuqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j4u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m66m") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep0nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86e8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbs4d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_caxu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ajsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgjbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvxsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jwag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0erpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdlpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn2vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lql4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g52od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cla2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inqfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsv2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c5ea") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u2f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1g7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cww7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7368") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28d85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjj0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucuyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nawlw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_bobble.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_bobble.tres new file mode 100644 index 0000000..e05b2a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_bobble.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://co12lpvil0hoc"] + +[ext_resource type="Texture2D" uid="uid://bu2l2julfkma3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png" id="1_36v8j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqaab"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m35lm"] +atlas = ExtResource("1_36v8j") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2dht"] +atlas = ExtResource("1_36v8j") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iovdf"] +atlas = ExtResource("1_36v8j") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trc3f"] +atlas = ExtResource("1_36v8j") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptstt"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0w2v"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpm0w"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnfpd"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmwp4"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe7g7"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu5at"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofp01"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgds7"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy84d"] +atlas = ExtResource("1_36v8j") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2khl"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uykra"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3o6a"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da6pf"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c712"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_682bd"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxlu1"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmfa4"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqv47"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikt7h"] +atlas = ExtResource("1_36v8j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8eum"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiltb"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0c5v"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdeeg"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywjmi"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_475pq"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wch6w"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32spi"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxml5"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nipry"] +atlas = ExtResource("1_36v8j") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnct0"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgqq"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jujib"] +atlas = ExtResource("1_36v8j") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklsj"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tksol"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3010a"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18kls"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi3qj"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxbxr"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5w07"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jap2w"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17u0u"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqdg0"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3vfv"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kuad"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg7bj"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii8y6"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53wwj"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukpu3"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx3y5"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2a7d"] +atlas = ExtResource("1_36v8j") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c01g4"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl148"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv1dv"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh67d"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr6ls"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syc55"] +atlas = ExtResource("1_36v8j") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbhcu"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1eqg"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2hbj"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfm62"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoadq"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa8ek"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5xu1"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxwmh"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj10n"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drtmb"] +atlas = ExtResource("1_36v8j") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqaab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m35lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2dht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iovdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trc3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptstt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0w2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpm0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnfpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmwp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe7g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu5at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofp01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgds7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy84d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2khl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uykra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3o6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da6pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c712") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_682bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxlu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmfa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqv47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikt7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8eum") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiltb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0c5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdeeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywjmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_475pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wch6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32spi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxml5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nipry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnct0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jujib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tklsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tksol") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3010a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18kls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi3qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxbxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5w07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jap2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17u0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqdg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3vfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kuad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg7bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii8y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53wwj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukpu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx3y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2a7d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c01g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl148") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv1dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh67d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr6ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syc55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbhcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1eqg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2hbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfm62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoadq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa8ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5xu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxwmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj10n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drtmb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildcommon.tres new file mode 100644 index 0000000..c91989b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildcommon.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://wldpp3foi3q4"] + +[ext_resource type="Texture2D" uid="uid://xdsaq41amotf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png" id="1_c4ojg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l268x"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfqtr"] +atlas = ExtResource("1_c4ojg") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7wn2"] +atlas = ExtResource("1_c4ojg") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw4qy"] +atlas = ExtResource("1_c4ojg") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1px4"] +atlas = ExtResource("1_c4ojg") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aglqj"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ihp"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k10i1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0imor"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sv5w"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxd41"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3cnh"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qathn"] +atlas = ExtResource("1_c4ojg") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcftf"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58kd5"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gemkw"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp1ep"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tla2"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1gxh"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwbav"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7x82"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixsy1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j268w"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge3ih"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqkxo"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nggl"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itgsm"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4o45"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llbeq"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajkg1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haas1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_168bd"] +atlas = ExtResource("1_c4ojg") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt7j2"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnetd"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx425"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ts3t"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjc36"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xvte"] +atlas = ExtResource("1_c4ojg") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arq5g"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1gb2"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eys5w"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lx4n"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwk0x"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kshc5"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vn7u"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3vrb"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4afll"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjox1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1agl1"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc5ig"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvgjx"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28j7l"] +atlas = ExtResource("1_c4ojg") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcere"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfuhg"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5im1b"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6mc5"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u22t4"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mtya"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rnvi"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_210j3"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5jno"] +atlas = ExtResource("1_c4ojg") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj8mt"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20gd6"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvrq2"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xllh"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x75l"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhebd"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tvhw"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anfgw"] +atlas = ExtResource("1_c4ojg") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l268x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfqtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7wn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw4qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1px4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aglqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ihp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k10i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0imor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sv5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxd41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3cnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qathn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcftf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58kd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gemkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp1ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tla2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1gxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwbav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7x82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixsy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j268w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge3ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqkxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nggl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itgsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4o45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llbeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajkg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haas1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_168bd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt7j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnetd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx425") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ts3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjc36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xvte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arq5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1gb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eys5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lx4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwk0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kshc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vn7u") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3vrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4afll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjox1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1agl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc5ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvgjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28j7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcere") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfuhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5im1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6mc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u22t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mtya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rnvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_210j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5jno") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj8mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20gd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvrq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xllh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x75l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhebd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tvhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anfgw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildminion.tres new file mode 100644 index 0000000..753fb38 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://dgka2iusuub7o"] + +[ext_resource type="Texture2D" uid="uid://c1xsgma4kbckt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png" id="1_131em"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0axk"] +atlas = ExtResource("1_131em") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf73o"] +atlas = ExtResource("1_131em") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n23ob"] +atlas = ExtResource("1_131em") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcy57"] +atlas = ExtResource("1_131em") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l5j0"] +atlas = ExtResource("1_131em") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdth2"] +atlas = ExtResource("1_131em") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy5il"] +atlas = ExtResource("1_131em") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrs5a"] +atlas = ExtResource("1_131em") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljbgv"] +atlas = ExtResource("1_131em") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55n5b"] +atlas = ExtResource("1_131em") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_306u6"] +atlas = ExtResource("1_131em") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwuau"] +atlas = ExtResource("1_131em") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm2nb"] +atlas = ExtResource("1_131em") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lawj"] +atlas = ExtResource("1_131em") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f15k4"] +atlas = ExtResource("1_131em") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8y5m"] +atlas = ExtResource("1_131em") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv42a"] +atlas = ExtResource("1_131em") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy2sm"] +atlas = ExtResource("1_131em") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r77r0"] +atlas = ExtResource("1_131em") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnhr"] +atlas = ExtResource("1_131em") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s1o4"] +atlas = ExtResource("1_131em") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rup4g"] +atlas = ExtResource("1_131em") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtuc"] +atlas = ExtResource("1_131em") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sm0s"] +atlas = ExtResource("1_131em") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83d5k"] +atlas = ExtResource("1_131em") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogsen"] +atlas = ExtResource("1_131em") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aq5g"] +atlas = ExtResource("1_131em") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73sx5"] +atlas = ExtResource("1_131em") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67e6d"] +atlas = ExtResource("1_131em") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlrom"] +atlas = ExtResource("1_131em") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x68n0"] +atlas = ExtResource("1_131em") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8xae"] +atlas = ExtResource("1_131em") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqkf5"] +atlas = ExtResource("1_131em") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xylmd"] +atlas = ExtResource("1_131em") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pghlp"] +atlas = ExtResource("1_131em") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpxnj"] +atlas = ExtResource("1_131em") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmptw"] +atlas = ExtResource("1_131em") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1kiy"] +atlas = ExtResource("1_131em") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g6a3"] +atlas = ExtResource("1_131em") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0m6i"] +atlas = ExtResource("1_131em") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaey7"] +atlas = ExtResource("1_131em") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rebgp"] +atlas = ExtResource("1_131em") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnulw"] +atlas = ExtResource("1_131em") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsx63"] +atlas = ExtResource("1_131em") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nxfk"] +atlas = ExtResource("1_131em") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja71h"] +atlas = ExtResource("1_131em") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytans"] +atlas = ExtResource("1_131em") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb8d0"] +atlas = ExtResource("1_131em") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mreuy"] +atlas = ExtResource("1_131em") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50wtx"] +atlas = ExtResource("1_131em") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdc0a"] +atlas = ExtResource("1_131em") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5ej8"] +atlas = ExtResource("1_131em") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neokb"] +atlas = ExtResource("1_131em") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ou8"] +atlas = ExtResource("1_131em") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_341kw"] +atlas = ExtResource("1_131em") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216p8"] +atlas = ExtResource("1_131em") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yag3"] +atlas = ExtResource("1_131em") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i34yt"] +atlas = ExtResource("1_131em") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t7ol"] +atlas = ExtResource("1_131em") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e0xd"] +atlas = ExtResource("1_131em") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pergy"] +atlas = ExtResource("1_131em") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeocu"] +atlas = ExtResource("1_131em") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o58cv"] +atlas = ExtResource("1_131em") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2x8u"] +atlas = ExtResource("1_131em") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieeqn"] +atlas = ExtResource("1_131em") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huyif"] +atlas = ExtResource("1_131em") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7h3u"] +atlas = ExtResource("1_131em") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at3qs"] +atlas = ExtResource("1_131em") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfche"] +atlas = ExtResource("1_131em") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3n1"] +atlas = ExtResource("1_131em") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av74b"] +atlas = ExtResource("1_131em") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw4xl"] +atlas = ExtResource("1_131em") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qijc"] +atlas = ExtResource("1_131em") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0axk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf73o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n23ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcy57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l5j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdth2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy5il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrs5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljbgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55n5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_306u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwuau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm2nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lawj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f15k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8y5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv42a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy2sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r77r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvnhr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s1o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rup4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sm0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83d5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogsen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aq5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73sx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67e6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlrom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x68n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8xae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqkf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xylmd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pghlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpxnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmptw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1kiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g6a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0m6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaey7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rebgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnulw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsx63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nxfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja71h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytans") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb8d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mreuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50wtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdc0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5ej8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neokb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ou8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_341kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216p8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yag3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i34yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t7ol") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e0xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pergy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeocu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o58cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2x8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieeqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huyif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7h3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at3qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfche") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av74b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw4xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qijc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ciphyronmk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ciphyronmk2.tres new file mode 100644 index 0000000..0362e10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ciphyronmk2.tres @@ -0,0 +1,868 @@ +[gd_resource type="SpriteFrames" load_steps=118 format=3 uid="uid://bieq2k0r30g8y"] + +[ext_resource type="Texture2D" uid="uid://d2dnnbg1ffhq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png" id="1_h4j2x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufej6"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_377ay"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7herj"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foytt"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn1kx"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vnsh"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ishum"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2u18"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c78g1"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ouq"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x4hr"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3hcb"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6juyc"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t4t6"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7vyp"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjetp"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyyn8"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvh05"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4ji6"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l16o"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkr5u"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jgbo"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mvow"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpv0f"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw4vu"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bla8x"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqwob"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwr1m"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmn1r"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oy82"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxpog"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6gjb"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lylmn"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2e44"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti0jd"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0v8o"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aahl0"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fchbj"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr6rv"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_607cf"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myvs3"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50g34"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0owcf"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2iyj"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w20i"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le2jc"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l3hm"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5tpt"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rpvd"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv3e5"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfupx"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkasy"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc80o"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwtwn"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j03ts"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcfth"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7frpu"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcoxj"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r06ht"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qii58"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52d4x"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1834, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m751i"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u82i2"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7dju"] +atlas = ExtResource("1_h4j2x") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kln4a"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn8ip"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3hul"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ofpc"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6skud"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft05s"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2i6k"] +atlas = ExtResource("1_h4j2x") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuj1s"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5g86"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkrg"] +atlas = ExtResource("1_h4j2x") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlfge"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovtiy"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyjxm"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e1ak"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqo16"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bacdp"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq22f"] +atlas = ExtResource("1_h4j2x") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg6mk"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvnci"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jui3"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2ie3"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6tno"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3qe"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3775"] +atlas = ExtResource("1_h4j2x") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5uvl"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4k7n"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu1yv"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13iyd"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy24"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_231or"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85w2k"] +atlas = ExtResource("1_h4j2x") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqx21"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0m8g"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj2kr"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6w3m"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po8si"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg0aq"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr6co"] +atlas = ExtResource("1_h4j2x") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ie8"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4opr8"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq30w"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jswlt"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1hem"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf43d"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsd6n"] +atlas = ExtResource("1_h4j2x") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cojea"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqomx"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2uiu"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp2lq"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmij1"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frxtd"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rldy2"] +atlas = ExtResource("1_h4j2x") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufej6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_377ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7herj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foytt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn1kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vnsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ishum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2u18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c78g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ouq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x4hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3hcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6juyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t4t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7vyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjetp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyyn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvh05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4ji6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l16o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkr5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jgbo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mvow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpv0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw4vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bla8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqwob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwr1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmn1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oy82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxpog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6gjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lylmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2e44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti0jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0v8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aahl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fchbj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr6rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_607cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myvs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50g34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0owcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2iyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w20i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le2jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l3hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5tpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rpvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv3e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfupx") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkasy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc80o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwtwn") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j03ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcfth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7frpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcoxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r06ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qii58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52d4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m751i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u82i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7dju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kln4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn8ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3hul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ofpc") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6skud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft05s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2i6k") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuj1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5g86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pkrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlfge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovtiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyjxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e1ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqo16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bacdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq22f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg6mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvnci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jui3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2ie3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6tno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no3qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3775") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5uvl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4k7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu1yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13iyd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdy24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_231or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85w2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqx21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0m8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj2kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6w3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po8si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg0aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr6co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ie8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4opr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq30w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jswlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1hem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf43d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsd6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cojea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqomx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2uiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp2lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmij1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frxtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rldy2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_curseddervish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_curseddervish.tres new file mode 100644 index 0000000..be778fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_curseddervish.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://cb3yuoxdblnf2"] + +[ext_resource type="Texture2D" uid="uid://cvoywuth2he74" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png" id="1_52a63"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w5xw"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu1e0"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_423sx"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh2me"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv0yn"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kyl0"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8jxi"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mbjd"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hlil"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrral"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwyjl"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm82p"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1spb"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkn58"] +atlas = ExtResource("1_52a63") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hwxx"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h455u"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07wqi"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5et1"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqc86"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqfhv"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h75bw"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy4pb"] +atlas = ExtResource("1_52a63") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3d2d"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd4w1"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aj0w"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjcer"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hhwy"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj4ej"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfknm"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohonx"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aokgl"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28gpf"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr8rp"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1t2p"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy5ta"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kivud"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsg65"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufxh5"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpfnj"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3058"] +atlas = ExtResource("1_52a63") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylkgd"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pis85"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ywl1"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncnx7"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kl4v"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa8y8"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj5b7"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwqr5"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_layta"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rht3a"] +atlas = ExtResource("1_52a63") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvgqb"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0hhv"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exafi"] +atlas = ExtResource("1_52a63") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ub6"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7avoq"] +atlas = ExtResource("1_52a63") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bhu6"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwrnh"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2xcp"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrlt8"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1a4x"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ot62"] +atlas = ExtResource("1_52a63") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1q5f"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wftlk"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yx22"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tv3w"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgid1"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo6ym"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5i08"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lelcm"] +atlas = ExtResource("1_52a63") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2cof"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vochx"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqipc"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44cgt"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkoun"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh7gn"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjima"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmklr"] +atlas = ExtResource("1_52a63") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w5xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu1e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_423sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh2me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv0yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kyl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8jxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mbjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hlil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrral") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwyjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm82p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1spb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkn58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hwxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h455u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07wqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5et1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqc86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqfhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h75bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy4pb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3d2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd4w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aj0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjcer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hhwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj4ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfknm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohonx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aokgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28gpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr8rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1t2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy5ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kivud") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsg65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufxh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpfnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3058") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylkgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pis85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ywl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncnx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kl4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa8y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj5b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwqr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_layta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rht3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvgqb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0hhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exafi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ub6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7avoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bhu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwrnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2xcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrlt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1a4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ot62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1q5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wftlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yx22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tv3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgid1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo6ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5i08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lelcm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2cof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vochx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44cgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkoun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh7gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjima") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmklr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_deathobelysk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_deathobelysk.tres new file mode 100644 index 0000000..5142b9b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_deathobelysk.tres @@ -0,0 +1,521 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://ghnlwyl4oqm1"] + +[ext_resource type="Texture2D" uid="uid://o7tk0sbx53v8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png" id="1_4nrep"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h37ju"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8idlu"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dinsr"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcafn"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j05h"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8710i"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ubcv"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edpqc"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tulqr"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkuk1"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxd6m"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5fk2"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31s6l"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64ka5"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05xrk"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks1o6"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjrhm"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipsg2"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m2l5"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbpo7"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr54i"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3yri"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lriis"] +atlas = ExtResource("1_4nrep") +region = Rect2(364, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvkn4"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtr6g"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0o6v"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpy1a"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh063"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsvb3"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5kva"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qg55"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji70p"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upaok"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnhi8"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w2li"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn367"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq43t"] +atlas = ExtResource("1_4nrep") +region = Rect2(455, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvr28"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32q7b"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cekjd"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmecp"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f86c"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pplhs"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3yqj"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk5dr"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s18u3"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6g8m"] +atlas = ExtResource("1_4nrep") +region = Rect2(182, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w31sy"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hccr4"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr6xm"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b4ep"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_440uk"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoj1f"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p3r5"] +atlas = ExtResource("1_4nrep") +region = Rect2(273, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbxh8"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfuba"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjs3r"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7p26"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4uvr"] +atlas = ExtResource("1_4nrep") +region = Rect2(91, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bdbo"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q23th"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc0rn"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20mp4"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l67to"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ochxq"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ottc8"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m02kd"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbwk8"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktnaf"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v37px"] +atlas = ExtResource("1_4nrep") +region = Rect2(0, 0, 90, 90) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h37ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8idlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dinsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcafn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j05h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8710i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ubcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edpqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tulqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkuk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxd6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5fk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31s6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64ka5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05xrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks1o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjrhm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipsg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m2l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbpo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr54i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3yri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lriis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvkn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtr6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0o6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpy1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh063") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsvb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5kva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qg55") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji70p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upaok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnhi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w2li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn367") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq43t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvr28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32q7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cekjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmecp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f86c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pplhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3yqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk5dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s18u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6g8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w31sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hccr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr6xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b4ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_440uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoj1f") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p3r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbxh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfuba") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjs3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7p26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4uvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bdbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q23th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc0rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20mp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l67to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ochxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ottc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m02kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbwk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktnaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v37px") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dervish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dervish.tres new file mode 100644 index 0000000..e08b4f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dervish.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://dn0jvsbdf7lbf"] + +[ext_resource type="Texture2D" uid="uid://dkgxhfp1aka2h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png" id="1_f68qg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jhg4"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e51wc"] +atlas = ExtResource("1_f68qg") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa0go"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ued"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gefeb"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpdqc"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_557om"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eassu"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe25l"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hef8"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbrjw"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qqyb"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xe8e"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nlr3"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tvvk"] +atlas = ExtResource("1_f68qg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwiyk"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c0nb"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbs0x"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tlhw"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q5hw"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxobu"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo8mr"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqd48"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnsma"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptrnn"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l27wp"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e7yu"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n880b"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0x4g"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w400w"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtrok"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaw1b"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yuca"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clia4"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tog70"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkqi8"] +atlas = ExtResource("1_f68qg") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uros"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc25h"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe3o8"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wy8b"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic7yk"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scrqg"] +atlas = ExtResource("1_f68qg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1k5q"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ynk6"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxv0i"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxp2k"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuig7"] +atlas = ExtResource("1_f68qg") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtmty"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tagcq"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at0nj"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ylta"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lmxn"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7nge"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l74up"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sya7g"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqe74"] +atlas = ExtResource("1_f68qg") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t8t7"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecgp1"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h51q4"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsfbs"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svy31"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_digrl"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg66w"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rkh2"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5uyo"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13507"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n44rt"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x41jv"] +atlas = ExtResource("1_f68qg") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jhg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e51wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa0go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ued") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gefeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpdqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_557om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eassu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe25l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hef8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbrjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qqyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xe8e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nlr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tvvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwiyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c0nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbs0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tlhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q5hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxobu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo8mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqd48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnsma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptrnn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l27wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e7yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n880b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0x4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w400w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtrok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaw1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yuca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clia4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tog70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkqi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uros") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc25h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe3o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wy8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic7yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scrqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1k5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ynk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxv0i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxp2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuig7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtmty") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tagcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at0nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ylta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lmxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7nge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l74up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sya7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqe74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t8t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecgp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h51q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsfbs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_svy31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_digrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg66w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rkh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5uyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13507") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n44rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x41jv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_desertspirit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_desertspirit.tres new file mode 100644 index 0000000..8eff2c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_desertspirit.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://cdtu0js66e62u"] + +[ext_resource type="Texture2D" uid="uid://dhlh71drarqk5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png" id="1_xcoln"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ktij"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebekl"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkcoo"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v057"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xao8c"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwh4m"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1363e"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3x6m"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjx6w"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pkwk"] +atlas = ExtResource("1_xcoln") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu3nj"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v581b"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt4rc"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl52j"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmc2c"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmipu"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e01hn"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j74g"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsw3o"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbxk2"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygjy6"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5msam"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knsxy"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gos5i"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vhd4"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe0a1"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxnw4"] +atlas = ExtResource("1_xcoln") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd4sw"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckeq3"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_212yh"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p0lu"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l00af"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1ivl"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dequy"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qii8"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syyvj"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj6pb"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfgv8"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isme4"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvttg"] +atlas = ExtResource("1_xcoln") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l6ib"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73r2v"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s2ir"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wssnw"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy6sf"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxqpc"] +atlas = ExtResource("1_xcoln") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu7ji"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 363, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ui7"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 565, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enl8h"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 666, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q5bk"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 464, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2r0j"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 868, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i42i6"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 363, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmn2d"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 767, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45pkr"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 565, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdxwy"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 666, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojr8c"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 464, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu3cj"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 868, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83a4d"] +atlas = ExtResource("1_xcoln") +region = Rect2(968, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lad7d"] +atlas = ExtResource("1_xcoln") +region = Rect2(948, 767, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8aqd"] +atlas = ExtResource("1_xcoln") +region = Rect2(968, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf5gj"] +atlas = ExtResource("1_xcoln") +region = Rect2(1049, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulfci"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 363, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulwcc"] +atlas = ExtResource("1_xcoln") +region = Rect2(847, 565, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fudkj"] +atlas = ExtResource("1_xcoln") +region = Rect2(968, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naje8"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phjon"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa5gu"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21pv7"] +atlas = ExtResource("1_xcoln") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqujq"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixfx4"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woumq"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gne4k"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20axw"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5ebj"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l7xt"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noljj"] +atlas = ExtResource("1_xcoln") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2qbd"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmc3e"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22qy2"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggl2w"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0331m"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxbj1"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wwch"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wtl4"] +atlas = ExtResource("1_xcoln") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ktij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebekl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkcoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v057") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xao8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwh4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1363e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3x6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjx6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pkwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu3nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v581b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt4rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl52j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmc2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmipu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e01hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j74g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsw3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbxk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygjy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5msam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knsxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gos5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vhd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe0a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxnw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd4sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckeq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_212yh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p0lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l00af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1ivl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dequy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syyvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj6pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfgv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isme4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvttg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l6ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73r2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s2ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wssnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy6sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxqpc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu7ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ui7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enl8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q5bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2r0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i42i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmn2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45pkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdxwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojr8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu3cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83a4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lad7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8aqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf5gj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulfci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulwcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fudkj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_naje8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phjon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa5gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21pv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqujq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixfx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woumq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gne4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20axw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5ebj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l7xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noljj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2qbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmc3e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_22qy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggl2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0331m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxbj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wwch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wtl4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dreamshaper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dreamshaper.tres new file mode 100644 index 0000000..1a66841 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dreamshaper.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://dpw0x2x1e8w1v"] + +[ext_resource type="Texture2D" uid="uid://ves4ic1f81i7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png" id="1_hdxod"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcfe8"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntc62"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onhdj"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hblg0"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8mm6"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh5hv"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3emw"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jfxl"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf0js"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10o4p"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh5s1"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68215"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chvsy"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mymhx"] +atlas = ExtResource("1_hdxod") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5cd3"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ur2"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gewmq"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjqwt"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeb0g"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikyh7"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr468"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va1sd"] +atlas = ExtResource("1_hdxod") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ewm"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2o1s"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwy6k"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7gv6"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t51sd"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kb87"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cna0l"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hltgw"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fltpu"] +atlas = ExtResource("1_hdxod") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gwqw"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdu0h"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul65g"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elpbb"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwoqe"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yesm"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu44p"] +atlas = ExtResource("1_hdxod") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtlke"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh6ef"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7kx5"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll4dc"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mfvx"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_432np"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxl87"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwjv2"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxydr"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1mj"] +atlas = ExtResource("1_hdxod") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brebw"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txa4b"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ws7"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs4x6"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoyg4"] +atlas = ExtResource("1_hdxod") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oc4r"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siix4"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2d4n"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32g8r"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eevur"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jt5i"] +atlas = ExtResource("1_hdxod") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uocr8"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yub3x"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obiqe"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6mib"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63bbo"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbmua"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n7lv"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e83ey"] +atlas = ExtResource("1_hdxod") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2lad"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ln1"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85872"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a5fp"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef2bb"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff5d2"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqxmt"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo1ag"] +atlas = ExtResource("1_hdxod") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcfe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntc62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onhdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hblg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8mm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh5hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3emw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jfxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf0js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10o4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh5s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68215") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chvsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mymhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5cd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ur2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gewmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjqwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeb0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikyh7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr468") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va1sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ewm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2o1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwy6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7gv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t51sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kb87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cna0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hltgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fltpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gwqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdu0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul65g") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_elpbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwoqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yesm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu44p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtlke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh6ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7kx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll4dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mfvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_432np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxl87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwjv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxydr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brebw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txa4b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ws7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs4x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoyg4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oc4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siix4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2d4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32g8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eevur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jt5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uocr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yub3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obiqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6mib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63bbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbmua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n7lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e83ey") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2lad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ln1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85872") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a5fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef2bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff5d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqxmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo1ag") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dunecaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dunecaster.tres new file mode 100644 index 0000000..9d1debb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_dunecaster.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://bmfgu8214i8hh"] + +[ext_resource type="Texture2D" uid="uid://ddvl2cud8dtjb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png" id="1_s3sjc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_23op2"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsb3h"] +atlas = ExtResource("1_s3sjc") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk2ws"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sah4e"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e6vp"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stbbw"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4yq7"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgm6w"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwm6f"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa5ok"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq6e4"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6mue"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s687i"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dot6q"] +atlas = ExtResource("1_s3sjc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpqk1"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql3gq"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dvnm"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmkoi"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc1mp"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhhc0"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5lcy"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qivm0"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwjm0"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0h5h"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebfxf"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ergi"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1dky"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g6h6"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftbi"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdlx5"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rs7b"] +atlas = ExtResource("1_s3sjc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pcqf"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kktr"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk6ip"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vluer"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg6fp"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp35o"] +atlas = ExtResource("1_s3sjc") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idr0j"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cpoy"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4yfw"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lbkh"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3572y"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8ae0"] +atlas = ExtResource("1_s3sjc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sahye"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ty5"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75jdk"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxrrw"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x1ge"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coccs"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aec5e"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qocx"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dcxv"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oevql"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avgl1"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8g7w"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf3rt"] +atlas = ExtResource("1_s3sjc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjxfx"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_677vh"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nygiy"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40agr"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pck4y"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd4fd"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7h5x"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbob2"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0xnk"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swgo3"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm4e8"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf55k"] +atlas = ExtResource("1_s3sjc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23op2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsb3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk2ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sah4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e6vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stbbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4yq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgm6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwm6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa5ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq6e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6mue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s687i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dot6q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpqk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql3gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dvnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmkoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc1mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhhc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5lcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qivm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwjm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0h5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebfxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ergi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1dky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g6h6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdlx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rs7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pcqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kktr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk6ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vluer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg6fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp35o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idr0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cpoy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4yfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lbkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3572y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8ae0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sahye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ty5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75jdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxrrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x1ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coccs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aec5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dcxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oevql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avgl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8g7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf3rt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjxfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_677vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nygiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40agr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pck4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd4fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7h5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbob2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0xnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swgo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm4e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf55k") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_duskweaver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_duskweaver.tres new file mode 100644 index 0000000..7150b10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_duskweaver.tres @@ -0,0 +1,1023 @@ +[gd_resource type="SpriteFrames" load_steps=143 format=3 uid="uid://dtylug5bip180"] + +[ext_resource type="Texture2D" uid="uid://3qkju8lmo5t0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png" id="1_byi38"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2pkb"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ebbl"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6oqm"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dg7o"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi1vt"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ecbs"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmqa1"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f4d8"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu21r"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvjki"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4lom"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mewam"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gimc6"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voyye"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kx7v"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_covdd"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aomh2"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t51m"] +atlas = ExtResource("1_byi38") +region = Rect2(1212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ccw"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wllyr"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8662"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vxbd"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26wyq"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8woi"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd4gt"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihxa4"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18wf8"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ekx8"] +atlas = ExtResource("1_byi38") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbd2f"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od072"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lx4l"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xmyv"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1p6u"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdb3k"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggobl"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jadg"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c3by"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2i35"] +atlas = ExtResource("1_byi38") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w38hx"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17n8p"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3m0y"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1jqr"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehkiw"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05qf2"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1nxb"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wpuw"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sefk1"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycl6x"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrgoq"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auysv"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knh0x"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgw3g"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odds3"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rgcq"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dks6x"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcwgj"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjs8x"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsetq"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py5xa"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xer63"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_escpg"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkc8j"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veec3"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u3b8"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6xnq"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kpvi"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afioy"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxojj"] +atlas = ExtResource("1_byi38") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2fw6"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctgkg"] +atlas = ExtResource("1_byi38") +region = Rect2(1313, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8pe8"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo2gc"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yqod"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4qpl"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s40jd"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdgh5"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiefv"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyj32"] +atlas = ExtResource("1_byi38") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vraut"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd05n"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by6kp"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d43fq"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hjm8"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt5jl"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yws8c"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gngqg"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaju7"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwfae"] +atlas = ExtResource("1_byi38") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86x3p"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx82s"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uyhf"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te20m"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xes35"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_royaf"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de8ct"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqmfa"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo50k"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usepj"] +atlas = ExtResource("1_byi38") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw2cl"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4xjv"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdqq8"] +atlas = ExtResource("1_byi38") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0ma4"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_672mj"] +atlas = ExtResource("1_byi38") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjxwa"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ankjb"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olpj5"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3l08"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wafr3"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrvh6"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi31h"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqlp"] +atlas = ExtResource("1_byi38") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypuh6"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npye6"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qey0e"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rctpj"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhvwo"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfjwg"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0y3m"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm2tn"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbpy4"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faj2v"] +atlas = ExtResource("1_byi38") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ore5t"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s2hg"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2stk"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fstuu"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prjkg"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50p72"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofxpl"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt2r8"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsi0n"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ockvt"] +atlas = ExtResource("1_byi38") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nnqc"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoo44"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clv5a"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8kq0"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs4yf"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl83l"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwn3m"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h3lp"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pcy5"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvanp"] +atlas = ExtResource("1_byi38") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2pkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ebbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6oqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dg7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi1vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ecbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmqa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f4d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu21r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvjki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4lom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mewam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gimc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voyye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kx7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_covdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aomh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t51m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ccw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wllyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8662") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vxbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26wyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8woi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd4gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihxa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18wf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ekx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbd2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od072") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lx4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xmyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1p6u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdb3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggobl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jadg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c3by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2i35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w38hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17n8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3m0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1jqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehkiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05qf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1nxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wpuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sefk1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycl6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrgoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auysv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knh0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgw3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odds3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rgcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dks6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcwgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjs8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsetq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py5xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xer63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_escpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkc8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veec3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u3b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6xnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kpvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afioy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxojj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2fw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctgkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8pe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo2gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yqod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4qpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s40jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdgh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiefv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyj32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vraut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd05n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by6kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d43fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hjm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt5jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yws8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gngqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaju7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwfae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86x3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx82s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uyhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te20m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xes35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_royaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de8ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqmfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo50k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usepj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw2cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4xjv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdqq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0ma4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_672mj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjxwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ankjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olpj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3l08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wafr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrvh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi31h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flqlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypuh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npye6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qey0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rctpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhvwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfjwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0y3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm2tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbpy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faj2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ore5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s2hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2stk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fstuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prjkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50p72") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofxpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt2r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsi0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ockvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nnqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoo44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clv5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8kq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs4yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl83l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwn3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h3lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pcy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvanp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_endlessobelysk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_endlessobelysk.tres new file mode 100644 index 0000000..78194c6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_endlessobelysk.tres @@ -0,0 +1,549 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://cs14lcx41mhlj"] + +[ext_resource type="Texture2D" uid="uid://mkhabx76r2x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png" id="1_u0wbt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm3b8"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o23m"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3brwp"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s76bs"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oghsw"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm6vk"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okcvs"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bxpa"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saio6"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdg6b"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j726c"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8k73"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw47d"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hynkt"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqnty"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq5lj"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itdq1"] +atlas = ExtResource("1_u0wbt") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms5p2"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbq8u"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crxyg"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7th13"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07t0h"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u33pe"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ui6j"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e5bk"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ekt8"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laubo"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j01cn"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ogr"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfwdg"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mdua"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u368l"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2a2g"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cbv7"] +atlas = ExtResource("1_u0wbt") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5nqa"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doonx"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a04ss"] +atlas = ExtResource("1_u0wbt") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deo6t"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epfnv"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d84bj"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1vb4"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cy6r"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdpqt"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81kju"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvdmq"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt7tw"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5f57"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j6kp"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jfi5"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4kn"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd162"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr1p6"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0e1y"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yn8s"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2exri"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a70hm"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f68n"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2p3d"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqtme"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1my0"] +atlas = ExtResource("1_u0wbt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghxdt"] +atlas = ExtResource("1_u0wbt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkjnv"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jwrt"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kti1t"] +atlas = ExtResource("1_u0wbt") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2djxp"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd4eh"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o286s"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irqde"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch7va"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bayom"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf6xr"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i07s8"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhp34"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjr0c"] +atlas = ExtResource("1_u0wbt") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm3b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o23m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3brwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s76bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oghsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm6vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okcvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bxpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saio6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdg6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j726c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8k73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw47d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hynkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqnty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq5lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itdq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms5p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbq8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crxyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7th13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07t0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u33pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ui6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e5bk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ekt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laubo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j01cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ogr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfwdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mdua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u368l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2a2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cbv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5nqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doonx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a04ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deo6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epfnv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d84bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1vb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cy6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdpqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81kju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvdmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt7tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5f57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j6kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jfi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd162") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr1p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0e1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yn8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2exri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a70hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f68n") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2p3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqtme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1my0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghxdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkjnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kti1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2djxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd4eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o286s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irqde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch7va") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bayom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf6xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i07s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhp34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjr0c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_eurus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_eurus.tres new file mode 100644 index 0000000..f913806 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_eurus.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://d124830lwnm4y"] + +[ext_resource type="Texture2D" uid="uid://dcqsstk2tqj15" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png" id="1_y5fam"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpeot"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw8a7"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1sgr"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr16y"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7olh"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w87vn"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx4fd"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jf0d"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eng8"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rjjc"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1otv"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h872b"] +atlas = ExtResource("1_y5fam") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb60w"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hndol"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u32q"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qekc"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxy4s"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db0ww"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22h1l"] +atlas = ExtResource("1_y5fam") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk3rc"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgin1"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrmpq"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uv58"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f833"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiyjh"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4yiw"] +atlas = ExtResource("1_y5fam") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h88yf"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk8yp"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t7kl"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja4bo"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ogtl"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo5c2"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkldf"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uerm"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc3xm"] +atlas = ExtResource("1_y5fam") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5isq"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huvmr"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkhdh"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdjq2"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv5nh"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofmg5"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im401"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsetg"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxk1i"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y3xl"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uak0"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pih08"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiurd"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78sgq"] +atlas = ExtResource("1_y5fam") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cavu2"] +atlas = ExtResource("1_y5fam") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kjpp"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o56be"] +atlas = ExtResource("1_y5fam") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm72e"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlvof"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtaw3"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81nag"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuqg5"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sqr6"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3lpj"] +atlas = ExtResource("1_y5fam") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v3va"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt2kk"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acrs6"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc86y"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enct6"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hvb1"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p1n2"] +atlas = ExtResource("1_y5fam") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn3jq"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r58jm"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awgnr"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcdj8"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftgru"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky20j"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvrqu"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f6w0"] +atlas = ExtResource("1_y5fam") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpeot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw8a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1sgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr16y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7olh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w87vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx4fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jf0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eng8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rjjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1otv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h872b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb60w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hndol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u32q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qekc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxy4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db0ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22h1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk3rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgin1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrmpq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uv58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f833") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiyjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4yiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h88yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk8yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t7kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja4bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ogtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo5c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkldf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uerm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc3xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5isq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_huvmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkhdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdjq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv5nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofmg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im401") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsetg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxk1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y3xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uak0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pih08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiurd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78sgq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cavu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kjpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o56be") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm72e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlvof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtaw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81nag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuqg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sqr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3lpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v3va") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt2kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acrs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc86y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enct6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hvb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p1n2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn3jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r58jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awgnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcdj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftgru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky20j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvrqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f6w0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_falcius.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_falcius.tres new file mode 100644 index 0000000..3e2e16c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_falcius.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://cpcka7ttsdnvt"] + +[ext_resource type="Texture2D" uid="uid://bqj47o6kjgk5j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png" id="1_oajeb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs4pr"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7mfy"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik4qd"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y2yc"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iymud"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x14m"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa6dw"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajojc"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2cm7"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m52l8"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vq53"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt82f"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjjto"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hjpp"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evy5o"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4wi0"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b5he"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86b5y"] +atlas = ExtResource("1_oajeb") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldc4a"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sglj1"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymwm"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktkrq"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c18l"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrqx4"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xmk0"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds0e2"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyalf"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbhiy"] +atlas = ExtResource("1_oajeb") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad814"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2axef"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pfeb"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icu3a"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbnvp"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvmje"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh266"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lprrp"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7e40"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c3ql"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4in7o"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwm3h"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfl3y"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj0p8"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt7or"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jlmo"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wygaq"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq13i"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xew1m"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82fge"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61ulc"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fhgm"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snhv2"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wa8g"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fagp1"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m17c"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jfyy"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ifh3"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trwgm"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrqji"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wlmb"] +atlas = ExtResource("1_oajeb") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmcpi"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v1rr"] +atlas = ExtResource("1_oajeb") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ih5g"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeo1f"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aujyg"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8htf"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oamh"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06swd"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0erj"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpexo"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fwq8"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kid7"] +atlas = ExtResource("1_oajeb") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a261l"] +atlas = ExtResource("1_oajeb") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_satti"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do6yy"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj4hi"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cimcc"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1g40"] +atlas = ExtResource("1_oajeb") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7a4b"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbbgs"] +atlas = ExtResource("1_oajeb") +region = Rect2(606, 808, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs4pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7mfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik4qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y2yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iymud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x14m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa6dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajojc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2cm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m52l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vq53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt82f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjjto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hjpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evy5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4wi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b5he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86b5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldc4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sglj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktkrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c18l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrqx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xmk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds0e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyalf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbhiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad814") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2axef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pfeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icu3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbnvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvmje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh266") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lprrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7e40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c3ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4in7o") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwm3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfl3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj0p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt7or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jlmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wygaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq13i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xew1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82fge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61ulc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fhgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snhv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wa8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fagp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m17c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jfyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ifh3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_trwgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrqji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wlmb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmcpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v1rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ih5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeo1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aujyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8htf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oamh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06swd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0erj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpexo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fwq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kid7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a261l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_satti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do6yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj4hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cimcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1g40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7a4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbbgs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_general.tres new file mode 100644 index 0000000..a2c779b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_general.tres @@ -0,0 +1,819 @@ +[gd_resource type="SpriteFrames" load_steps=111 format=3 uid="uid://3gvfmnrqcutp"] + +[ext_resource type="Texture2D" uid="uid://b1s3gyu13k38e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png" id="1_1pvvn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ennww"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wshtt"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i8yb"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faxi1"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph130"] +atlas = ExtResource("1_1pvvn") +region = Rect2(567, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqg8e"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxwii"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vit46"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq20v"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nfh6"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4bsi"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48eaa"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4qhd"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_842p8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u172r"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyun7"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faksa"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkrdo"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idiyl"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxhnk"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p67pd"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lppej"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i08xd"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6034w"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqxe5"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aedd"] +atlas = ExtResource("1_1pvvn") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8351s"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwmxf"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x01u"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwbsq"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhfxb"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e42hh"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6085h"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb5c0"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asut2"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e54e"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymdf8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmil"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1kg2"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc3pq"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdqkl"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2obdy"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewl0s"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwy3g"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uno1"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljjdn"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oe5i"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44dm8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o3ly"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8c2d"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg07u"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7iu2"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg8fy"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1ktp"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8oi0"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wt1i"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ji2y"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckca1"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arqbs"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrk74"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naqm1"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bia7m"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkwxh"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eodt8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5tsu"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i6uu"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df6io"] +atlas = ExtResource("1_1pvvn") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tds83"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wutqm"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sggy"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36r7l"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrqxc"] +atlas = ExtResource("1_1pvvn") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hga6"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3iul"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jomo5"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mdeh"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjhk8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axl08"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aqsr"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joij8"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asphy"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2jd0"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxdo1"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm4tn"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnero"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbuqp"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1ck"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyf7e"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i26i"] +atlas = ExtResource("1_1pvvn") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxy2y"] +atlas = ExtResource("1_1pvvn") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttjf5"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u382y"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7d48"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yhet"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdv6b"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cflg3"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x63im"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2pa5"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uakcu"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtcdh"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe2do"] +atlas = ExtResource("1_1pvvn") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f03rc"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05hki"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knith"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxt6d"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kla18"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gswse"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo64u"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtlcq"] +atlas = ExtResource("1_1pvvn") +region = Rect2(162, 324, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ennww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wshtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i8yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faxi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph130") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqg8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxwii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vit46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq20v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nfh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4bsi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_48eaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4qhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_842p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u172r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyun7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faksa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkrdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idiyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxhnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p67pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lppej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i08xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6034w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqxe5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aedd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8351s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwmxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x01u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwbsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhfxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e42hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6085h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb5c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asut2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e54e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymdf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1kg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc3pq") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdqkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2obdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewl0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwy3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uno1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljjdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oe5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44dm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o3ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8c2d") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg07u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7iu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg8fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1ktp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8oi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wt1i") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ji2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckca1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arqbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrk74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naqm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bia7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkwxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eodt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5tsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i6uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df6io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tds83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wutqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sggy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36r7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrqxc") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hga6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3iul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jomo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mdeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjhk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axl08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aqsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joij8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asphy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2jd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxdo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm4tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnero") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbuqp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh1ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyf7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i26i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxy2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttjf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u382y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7d48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yhet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdv6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cflg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x63im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2pa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uakcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtcdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe2do") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f03rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05hki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knith") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxt6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kla18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gswse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo64u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtlcq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_glassmirage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_glassmirage.tres new file mode 100644 index 0000000..5ef86c5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_glassmirage.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://b8s18rsfieall"] + +[ext_resource type="Texture2D" uid="uid://j20inyef1rm5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png" id="1_sb3q3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lhsc"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66pgi"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rsa4"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8frr4"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h83e1"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e72pt"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gpdu"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq8qd"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0aqk"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v27s7"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21eaw"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rymw5"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwluj"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aef0u"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx1r0"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db6ug"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2174"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veko8"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sktvq"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dapf"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrrsy"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ek24"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_381ar"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5lea"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aelbr"] +atlas = ExtResource("1_sb3q3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjtxq"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_parol"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46hof"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqn84"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7dmx"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qheew"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw7ql"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t63al"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y1je"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27qgf"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnka8"] +atlas = ExtResource("1_sb3q3") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1lq0"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvil2"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh342"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v3qr"] +atlas = ExtResource("1_sb3q3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkirl"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcf1l"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1gom"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evbqr"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mavwk"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78rew"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydf3d"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro1vy"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u60tp"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tywpy"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqj44"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kir6n"] +atlas = ExtResource("1_sb3q3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujqp1"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76qvw"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpjll"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq6v1"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64hd2"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_766po"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdmpm"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uadyt"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hde0w"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx26o"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4aaf"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_264b5"] +atlas = ExtResource("1_sb3q3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lhsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66pgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rsa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8frr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h83e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e72pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gpdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq8qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0aqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v27s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21eaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rymw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwluj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aef0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx1r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db6ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2174") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veko8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sktvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dapf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrrsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ek24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_381ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5lea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aelbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjtxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_parol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46hof") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqn84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7dmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qheew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw7ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t63al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y1je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27qgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnka8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1lq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvil2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh342") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v3qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkirl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcf1l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1gom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evbqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mavwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78rew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydf3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro1vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u60tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tywpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqj44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kir6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujqp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76qvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpjll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq6v1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64hd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_766po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdmpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uadyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hde0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx26o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4aaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_264b5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_grandmasternoshrak.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_grandmasternoshrak.tres new file mode 100644 index 0000000..50b6992 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_grandmasternoshrak.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://hetfsldneayk"] + +[ext_resource type="Texture2D" uid="uid://rlxg7inpay8j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png" id="1_rk6b4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6jpp"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_374ny"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b85jt"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq7af"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mef4h"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cynq6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfvky"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_710sw"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udbfx"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5flj7"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlstp"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ntr"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvnn8"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olo6s"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xpm"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sptjm"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kev4y"] +atlas = ExtResource("1_rk6b4") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2s4d"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhko5"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h23fd"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq3ay"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tytl2"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk8dt"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7ux6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh7s5"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftsg"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c2wh"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktk41"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0atw"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbi2g"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve0qs"] +atlas = ExtResource("1_rk6b4") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtdft"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oly7f"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_801vf"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syv00"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cr3f"] +atlas = ExtResource("1_rk6b4") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvfdy"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yux71"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8f6d"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwm7w"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miss3"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvfkd"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrf1v"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cwb3"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28bd8"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o804v"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yohmc"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tiu2"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fgji"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg6lr"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3usx5"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r5pu"] +atlas = ExtResource("1_rk6b4") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yc33"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0chk6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjc4g"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2pmx"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql1vc"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqo5r"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5obcl"] +atlas = ExtResource("1_rk6b4") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxmta"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88b6q"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idebt"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtp5g"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psecv"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsut1"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvw07"] +atlas = ExtResource("1_rk6b4") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r78xx"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vyix"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tahs"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu7my"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wborr"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fageu"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isg6o"] +atlas = ExtResource("1_rk6b4") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq1wp"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqebj"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6imu"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8cgn"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ur4h"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3hq7"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc7rc"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27ack"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ykk6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_har4s"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fxli"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgpoe"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u26c5"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpaky"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1gui"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_782vo"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptnj6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbq3l"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hel62"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki7cw"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfdh3"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyue0"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsqkr"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb5mb"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1mhm"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f028r"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faubk"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2vec"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we8t0"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_extt6"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwy83"] +atlas = ExtResource("1_rk6b4") +region = Rect2(1048, 393, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6jpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_374ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b85jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq7af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mef4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cynq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfvky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_710sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udbfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5flj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlstp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ntr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvnn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olo6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sptjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kev4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2s4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhko5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h23fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq3ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tytl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk8dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7ux6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh7s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c2wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktk41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0atw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbi2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve0qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtdft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oly7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_801vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syv00") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cr3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvfdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yux71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8f6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwm7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miss3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvfkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrf1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cwb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28bd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o804v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yohmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tiu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fgji") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg6lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3usx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r5pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yc33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0chk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjc4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2pmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql1vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqo5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5obcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxmta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88b6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idebt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtp5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psecv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsut1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvw07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r78xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vyix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tahs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu7my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wborr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fageu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isg6o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq1wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqebj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6imu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8cgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ur4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3hq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc7rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27ack") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ykk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_har4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fxli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgpoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u26c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpaky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1gui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_782vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptnj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbq3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hel62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki7cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfdh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyue0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsqkr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb5mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1mhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f028r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faubk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2vec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we8t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_extt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwy83") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_incinera.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_incinera.tres new file mode 100644 index 0000000..9f37247 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_incinera.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://6agcf2mvw03w"] + +[ext_resource type="Texture2D" uid="uid://de55m5a6g2uiu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png" id="1_a3l48"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_miejv"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tac2h"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np86w"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc026"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfrjo"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m47cx"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdesr"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r6y0"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vphp"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqhfp"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78dna"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdfew"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfpdx"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7r3j"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddt8x"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mge3v"] +atlas = ExtResource("1_a3l48") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvc47"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6nx"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqaxv"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_natqo"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ohcv"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0uu8"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nefk"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyq3q"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8kg8"] +atlas = ExtResource("1_a3l48") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mrmg"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq851"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de4w3"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tp5h"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo2ir"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw1ws"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opjlu"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1oel"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2dvv"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7ko4"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5hgd"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmx2j"] +atlas = ExtResource("1_a3l48") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lia3j"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23mqp"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bots"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7fqy"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd7ik"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qe5t"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4saed"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uadgs"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n3y7"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or20j"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxlwj"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vokaq"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vcg8"] +atlas = ExtResource("1_a3l48") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntmq4"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj3vc"] +atlas = ExtResource("1_a3l48") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0whp"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3ule"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjuwg"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaede"] +atlas = ExtResource("1_a3l48") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mmif"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tile7"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4yyj"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_immv6"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqw8g"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83stx"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rto7n"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5yl0"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq5yn"] +atlas = ExtResource("1_a3l48") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf7my"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mb3o"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qun5j"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol63o"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb67y"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfces"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84gvs"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x778u"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbvxh"] +atlas = ExtResource("1_a3l48") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_miejv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tac2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np86w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc026") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfrjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m47cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdesr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r6y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vphp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqhfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78dna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdfew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfpdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7r3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddt8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mge3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvc47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c6nx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqaxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_natqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ohcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0uu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nefk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyq3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8kg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mrmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq851") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de4w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tp5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo2ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw1ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opjlu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1oel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2dvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7ko4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5hgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmx2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lia3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23mqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bots") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7fqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd7ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qe5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4saed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uadgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n3y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or20j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxlwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vokaq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vcg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntmq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj3vc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0whp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3ule") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjuwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaede") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mmif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tile7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4yyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_immv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqw8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83stx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rto7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5yl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq5yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf7my") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mb3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qun5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol63o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb67y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfces") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84gvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x778u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbvxh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_insightcaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_insightcaster.tres new file mode 100644 index 0000000..d82e5e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_insightcaster.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://6khito0s2ebj"] + +[ext_resource type="Texture2D" uid="uid://88fgjd8v4qqd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png" id="1_j7x34"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8xuy"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6im4p"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipvn1"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5t5c"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffe2y"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qj4w"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inuvx"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugnuj"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p065p"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apdaj"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmbvj"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvlyw"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mibaj"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sam2i"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vdgs"] +atlas = ExtResource("1_j7x34") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc635"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ry5p"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh050"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ab4x"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxoya"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osyoy"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kngyu"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cemu"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srr78"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lks0j"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdqw4"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crqkr"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1y8y"] +atlas = ExtResource("1_j7x34") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5k8f"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq4pj"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glvek"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wu34"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of5ju"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3314r"] +atlas = ExtResource("1_j7x34") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feyu4"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvwvg"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrc3x"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rotpb"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phvso"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n88d"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1t27"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a4pv"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuyjg"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oojya"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipb8a"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxni0"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7aec"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6toi"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hdq4"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnkxd"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oirp4"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffj28"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oewpt"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klw2w"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4lbs"] +atlas = ExtResource("1_j7x34") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrcx7"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msg2s"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kx81"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68kux"] +atlas = ExtResource("1_j7x34") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cibg5"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u81a5"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2gmk"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc8kh"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bogr1"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63ij"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpmqh"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvvmc"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy7w7"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nbcx"] +atlas = ExtResource("1_j7x34") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b1l4"] +atlas = ExtResource("1_j7x34") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyhsu"] +atlas = ExtResource("1_j7x34") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyk8u"] +atlas = ExtResource("1_j7x34") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feonm"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cahs6"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05n3u"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls1e0"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jujcj"] +atlas = ExtResource("1_j7x34") +region = Rect2(505, 505, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8xuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6im4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipvn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5t5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffe2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qj4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inuvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugnuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p065p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apdaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmbvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvlyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mibaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sam2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vdgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc635") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ry5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh050") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ab4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxoya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osyoy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kngyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cemu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srr78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lks0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdqw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crqkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1y8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5k8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq4pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glvek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wu34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of5ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3314r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feyu4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvwvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrc3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rotpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phvso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n88d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1t27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a4pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuyjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oojya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipb8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxni0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7aec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6toi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hdq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnkxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oirp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffj28") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oewpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klw2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4lbs") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrcx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msg2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kx81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68kux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cibg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u81a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2gmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc8kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bogr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a63ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpmqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvvmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy7w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nbcx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b1l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyhsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyk8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feonm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cahs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05n3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls1e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jujcj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_irondervish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_irondervish.tres new file mode 100644 index 0000000..835e4ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_irondervish.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://b2lj400f1yxhq"] + +[ext_resource type="Texture2D" uid="uid://h7emy3ee7bni" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png" id="1_n5yav"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1gbe"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ehvs"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxyfo"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5wwp"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmga3"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfcmr"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8l67"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71gxh"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8tbi"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v13l1"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70gt3"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wflg7"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3v55"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkx5v"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfouo"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvjcj"] +atlas = ExtResource("1_n5yav") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lkng"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v1xt"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_602jc"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2wfr"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3e3f"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgtjp"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cokwh"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylc6v"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeovn"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw2eh"] +atlas = ExtResource("1_n5yav") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfu7w"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37qcj"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b38m"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc6ct"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgagr"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu3m3"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjix2"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxnj0"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwnqb"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gw22"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxl3n"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gfat"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvdxi"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmdbt"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyauo"] +atlas = ExtResource("1_n5yav") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6fvi"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11dof"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u71yk"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1378"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb7bw"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tapi"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv2vx"] +atlas = ExtResource("1_n5yav") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlmf8"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb102"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6gy3"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2frh"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5icq4"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvf86"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxr2h"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a26q"] +atlas = ExtResource("1_n5yav") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khid7"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g35ii"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw36s"] +atlas = ExtResource("1_n5yav") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bukyc"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huxk3"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj5a7"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u77kw"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ig5w"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1jq"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8cor"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecjq4"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwblw"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fanp"] +atlas = ExtResource("1_n5yav") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shoqu"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w03g"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4xrv"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glsk2"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6jxo"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35pr7"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe3mt"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5r15"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d75j5"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugsh2"] +atlas = ExtResource("1_n5yav") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1gbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ehvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxyfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5wwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmga3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfcmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8l67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71gxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8tbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v13l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70gt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wflg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3v55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkx5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfouo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvjcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lkng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v1xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_602jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2wfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3e3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgtjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cokwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylc6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeovn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw2eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfu7w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37qcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b38m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc6ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgagr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu3m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjix2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxnj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwnqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gw22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxl3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gfat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvdxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmdbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyauo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6fvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11dof") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u71yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1378") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb7bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tapi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv2vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlmf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb102") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6gy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2frh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5icq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvf86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxr2h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a26q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khid7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g35ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw36s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bukyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huxk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj5a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u77kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ig5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug1jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8cor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecjq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwblw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fanp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shoqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w03g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4xrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glsk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6jxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35pr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe3mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5r15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d75j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugsh2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ishtarhunter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ishtarhunter.tres new file mode 100644 index 0000000..cd1d26b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_ishtarhunter.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://dwevvv3hjleep"] + +[ext_resource type="Texture2D" uid="uid://bihlx864evmd1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png" id="1_ylx7w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo432"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri66j"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1na1"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nlmt"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqp3i"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1cnk"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b1lr"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj4hc"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy6tx"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c361p"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_livh3"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4dwo"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkope"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6shx"] +atlas = ExtResource("1_ylx7w") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x26r2"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phkwg"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y27w3"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbith"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5ln6"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2r1r"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1d3i"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87eiq"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osbda"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri8vf"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cp6g"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jbyt"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7agp"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0hn8"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wsnw"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wxi1"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c0is"] +atlas = ExtResource("1_ylx7w") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ujad"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shg5a"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ne4"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ykbo"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0axp"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhtcn"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn8i8"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5jm6"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgbx"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nm4n"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ke8x"] +atlas = ExtResource("1_ylx7w") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8u8i"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_231ds"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqwqw"] +atlas = ExtResource("1_ylx7w") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gcme"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bpiy"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snca2"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgp1d"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhfil"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbvyq"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2srj"] +atlas = ExtResource("1_ylx7w") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynp1n"] +atlas = ExtResource("1_ylx7w") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqt7b"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbvv3"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pi6r"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idmlc"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06rhk"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xldcj"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl3jw"] +atlas = ExtResource("1_ylx7w") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njy1k"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jamt"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hgte"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lspvj"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bctd"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgtmc"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mcgw"] +atlas = ExtResource("1_ylx7w") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l10v7"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4djt7"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3c4t"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrxe3"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvu6b"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6gop"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwjab"] +atlas = ExtResource("1_ylx7w") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo432") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri66j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1na1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nlmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqp3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1cnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b1lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj4hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy6tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c361p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_livh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4dwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkope") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6shx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x26r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phkwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y27w3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbith") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5ln6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2r1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1d3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87eiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osbda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri8vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cp6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jbyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7agp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0hn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wsnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wxi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c0is") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ujad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shg5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ne4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ykbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0axp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhtcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn8i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5jm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nm4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ke8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8u8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_231ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqwqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gcme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bpiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snca2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgp1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhfil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbvyq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2srj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynp1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqt7b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbvv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pi6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idmlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06rhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xldcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl3jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njy1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jamt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hgte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lspvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bctd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgtmc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mcgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l10v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4djt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3c4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrxe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvu6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6gop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwjab") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_keeperofages.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_keeperofages.tres new file mode 100644 index 0000000..8e14374 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_keeperofages.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://bfleib14osrk6"] + +[ext_resource type="Texture2D" uid="uid://doihk0a4h873j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png" id="1_58hwn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcwnc"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt8p4"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsrn7"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oxyt"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_figwu"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqt3h"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fqph"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcrpr"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6edkg"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4i11"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uslbr"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvqdy"] +atlas = ExtResource("1_58hwn") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hh84"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y15u"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqayh"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpiia"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcldy"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hywwp"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax6e4"] +atlas = ExtResource("1_58hwn") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krbqg"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7rqa"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2w47"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlneg"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45t25"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m1hq"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k63l"] +atlas = ExtResource("1_58hwn") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewy4u"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q53f"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nfo8"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb7qe"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra0st"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3ox8"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h5qk"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo0ob"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgdnr"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whyqd"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuxgk"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rryrc"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw04u"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p10uo"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp41a"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50c63"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_128h3"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybxkh"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bbhn"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2e2g"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3s28"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klti8"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3d5l"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05r4w"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35cwc"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0e0a"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aevgh"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohnkw"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a20n5"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibn8b"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw7fe"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxnnb"] +atlas = ExtResource("1_58hwn") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul8t2"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_narc5"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4fog"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saabl"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8eq1"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc4co"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcowa"] +atlas = ExtResource("1_58hwn") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8v7x"] +atlas = ExtResource("1_58hwn") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msadw"] +atlas = ExtResource("1_58hwn") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqboy"] +atlas = ExtResource("1_58hwn") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt70a"] +atlas = ExtResource("1_58hwn") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca38q"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4urh3"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvad0"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iois"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sblkv"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adlk0"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpndj"] +atlas = ExtResource("1_58hwn") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7x2c"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kig38"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf5ge"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1b5r"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bt4"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iywv"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak0mg"] +atlas = ExtResource("1_58hwn") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm060"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5x7l"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibehs"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sftn"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2y34"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vffy"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltxe3"] +atlas = ExtResource("1_58hwn") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcwnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt8p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsrn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oxyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_figwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqt3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fqph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcrpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6edkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4i11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uslbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvqdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hh84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y15u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqayh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpiia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcldy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hywwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax6e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krbqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7rqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2w47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlneg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45t25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m1hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k63l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewy4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q53f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nfo8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb7qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra0st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3ox8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h5qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo0ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgdnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whyqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuxgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rryrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw04u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p10uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp41a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50c63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_128h3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybxkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bbhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2e2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3s28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klti8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3d5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05r4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35cwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0e0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aevgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohnkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a20n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibn8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw7fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxnnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul8t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_narc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4fog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saabl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8eq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc4co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcowa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8v7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msadw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqboy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt70a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca38q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4urh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvad0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iois") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sblkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adlk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpndj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7x2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kig38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf5ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1b5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48bt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iywv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak0mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm060") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5x7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibehs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sftn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2y34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vffy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltxe3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_lavastormobelysk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_lavastormobelysk.tres new file mode 100644 index 0000000..2fa998f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_lavastormobelysk.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://ci3tk3xufbe1s"] + +[ext_resource type="Texture2D" uid="uid://byy5gjvafcfu2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png" id="1_xqng5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_so0m4"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7453l"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icyr1"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64aaj"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bevhf"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb3ra"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrqvd"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2os5"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyjrk"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3v6f"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdlsn"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsw5s"] +atlas = ExtResource("1_xqng5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ell2"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bao4"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxdis"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6crdf"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4782t"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekag5"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6441d"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsjgj"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t6f4"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuswm"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpfer"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjki8"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qw8r"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmqff"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwudj"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voe7d"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y6xa"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7wtm"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qrk4"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go2vc"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40av0"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ivp1"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4klf6"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjoal"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6oin"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqtb0"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpj8d"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ghrv"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mpfl"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upmeo"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1du3"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq37w"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1jgs"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnn3m"] +atlas = ExtResource("1_xqng5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck0i2"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlfbs"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga3op"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocgba"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rw23"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g74u"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyklb"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sljuc"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u48iu"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o2jm"] +atlas = ExtResource("1_xqng5") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yklta"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8uym"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ygg"] +atlas = ExtResource("1_xqng5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1jxl"] +atlas = ExtResource("1_xqng5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hsw4"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q77c"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0uuu"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42b2e"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvic1"] +atlas = ExtResource("1_xqng5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kogxt"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqhy"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n3bo"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fknvc"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yso8f"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6ydc"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s8p8"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi2pf"] +atlas = ExtResource("1_xqng5") +region = Rect2(505, 202, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so0m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7453l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icyr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64aaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bevhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb3ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrqvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2os5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyjrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3v6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdlsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsw5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ell2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bao4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxdis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6crdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4782t") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekag5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6441d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsjgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t6f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuswm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpfer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjki8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qw8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmqff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwudj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voe7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y6xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7wtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qrk4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_go2vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40av0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ivp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4klf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjoal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6oin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqtb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpj8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ghrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mpfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upmeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1du3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq37w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1jgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnn3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck0i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlfbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga3op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocgba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rw23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g74u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyklb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sljuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u48iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o2jm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yklta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8uym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ygg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1jxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hsw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q77c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0uuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42b2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvic1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kogxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n3bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fknvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yso8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6ydc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s8p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi2pf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_mech.tres new file mode 100644 index 0000000..168e10a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_mech.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://qnfn31l4hfwk"] + +[ext_resource type="Texture2D" uid="uid://1yl5nnwdhj8b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png" id="1_diawm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gehj"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgkyo"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuot3"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfjmg"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nlm8"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45p3y"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cckou"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx86d"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euuws"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d8ee"] +atlas = ExtResource("1_diawm") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7tw4"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jccld"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f77ve"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdcsc"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o2ed"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qhwg"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mdvt"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p75gk"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w35w"] +atlas = ExtResource("1_diawm") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6x8f"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3h5k"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p4rh"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kofwq"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpwtn"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp7c4"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75reo"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6eel"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvdqo"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3xcc"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgkvv"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rxgo"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru0nd"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pcg7"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2iyw"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1x7a"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7byp"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s0c3"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adwms"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08mmd"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xoif"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxxs2"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyiws"] +atlas = ExtResource("1_diawm") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj26v"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7418p"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4kuy"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrd2g"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmdp1"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c4rl"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi04w"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj3wh"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jgcy"] +atlas = ExtResource("1_diawm") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfnh5"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw0oo"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84kun"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lr0b"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxi6d"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm3by"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gjsv"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hl3l"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay6fd"] +atlas = ExtResource("1_diawm") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncxhs"] +atlas = ExtResource("1_diawm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sct6y"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpy72"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wnek"] +atlas = ExtResource("1_diawm") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tom5l"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob2br"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akyrm"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfko1"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rktf2"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqdt2"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbf3u"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwlt2"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wymr8"] +atlas = ExtResource("1_diawm") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuoqt"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inay3"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ggc"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7om7q"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a84au"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvuiv"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avw24"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l7e8"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op30d"] +atlas = ExtResource("1_diawm") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gehj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgkyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuot3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfjmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nlm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45p3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cckou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx86d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euuws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d8ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7tw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jccld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f77ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdcsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o2ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qhwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mdvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p75gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w35w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6x8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3h5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p4rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kofwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpwtn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp7c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75reo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6eel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvdqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3xcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgkvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rxgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru0nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pcg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2iyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1x7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7byp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s0c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adwms") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_08mmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xoif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxxs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyiws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj26v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7418p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4kuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrd2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmdp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c4rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi04w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj3wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jgcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfnh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw0oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84kun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lr0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxi6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm3by") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gjsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hl3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay6fd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncxhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sct6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpy72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wnek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tom5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob2br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akyrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfko1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rktf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqdt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbf3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwlt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wymr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuoqt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_inay3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ggc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7om7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a84au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvuiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avw24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l7e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op30d") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_miniscarab.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_miniscarab.tres new file mode 100644 index 0000000..eb6ae55 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_miniscarab.tres @@ -0,0 +1,967 @@ +[gd_resource type="SpriteFrames" load_steps=135 format=3 uid="uid://cereh7wps35ro"] + +[ext_resource type="Texture2D" uid="uid://0c2xmoxqh8xa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png" id="1_oamck"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_26hwq"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2r4n"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riqpm"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgljk"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjf48"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1ng"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1svh"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytgo2"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00h2g"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj8fw"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6fy8"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6v63"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qye1x"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp43o"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk6co"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvx3c"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4pms"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc0kd"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnnyi"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h04ei"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcw10"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylux4"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_std8w"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p383b"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fxo4"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upoa7"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ea7"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emflb"] +atlas = ExtResource("1_oamck") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpdih"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlvda"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg2v6"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv1if"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6lv1"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiu6h"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdmvt"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq4gv"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hptrh"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am75o"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aabog"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk7hs"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h6cp"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgwf1"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v56ua"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0xxh"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhag5"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bj1x"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pxsh"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dailj"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54m5q"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnq6j"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn4mp"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu1b1"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tl7u"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vyp6"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rboa8"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nq08"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utvke"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u83m1"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gmea"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xggq4"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv75h"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxn8l"] +atlas = ExtResource("1_oamck") +region = Rect2(917, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8moq2"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce8w4"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36fqw"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn1qq"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qfre"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e56yj"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxpg0"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awyou"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buc4a"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ec3p"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68kuw"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7w1m"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xllje"] +atlas = ExtResource("1_oamck") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66hl3"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhki8"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o8g6"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0r23"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ppmn"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6jlc"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pckri"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syehi"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s0fe"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd4cw"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kxbc"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y5yy"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sh1m"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8brc"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34xcb"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c6o3"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8juoq"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73vbp"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndjft"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m4o2"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxxos"] +atlas = ExtResource("1_oamck") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtv4g"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o0mw"] +atlas = ExtResource("1_oamck") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijtmc"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfcm7"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo11j"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5qfj"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yobut"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk1el"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgryy"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ib3b"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rm2h"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqkoq"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd5fd"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfrlh"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2377"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3818"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oosum"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyqc8"] +atlas = ExtResource("1_oamck") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofc47"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ora"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bca1d"] +atlas = ExtResource("1_oamck") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bnew"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahgto"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs21a"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kfp6"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noepx"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbg1l"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnu1h"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn36i"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nily6"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uxg6"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx44f"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_124jh"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd374"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrelh"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hjnv"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awf4x"] +atlas = ExtResource("1_oamck") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_26hwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2r4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riqpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgljk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjf48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1svh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytgo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00h2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj8fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6fy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6v63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qye1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp43o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk6co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvx3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4pms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc0kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnnyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h04ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcw10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylux4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_std8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p383b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fxo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upoa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ea7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emflb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpdih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlvda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg2v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv1if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6lv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiu6h") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdmvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq4gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hptrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am75o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aabog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk7hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h6cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgwf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v56ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0xxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhag5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bj1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pxsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dailj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54m5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnq6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn4mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu1b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tl7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vyp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rboa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nq08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utvke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u83m1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gmea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xggq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv75h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxn8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8moq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce8w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36fqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn1qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qfre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e56yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxpg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awyou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buc4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ec3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68kuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7w1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xllje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66hl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhki8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o8g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0r23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ppmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6jlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pckri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syehi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s0fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd4cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kxbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y5yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sh1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8brc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34xcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c6o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8juoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73vbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndjft") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m4o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxxos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtv4g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o0mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijtmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfcm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo11j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5qfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yobut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk1el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgryy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ib3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rm2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqkoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd5fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfrlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2377") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3818") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oosum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyqc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofc47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ora") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bca1d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bnew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahgto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs21a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kfp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noepx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbg1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnu1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn36i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nily6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uxg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx44f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_124jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd374") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrelh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hjnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awf4x") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_nimbus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_nimbus.tres new file mode 100644 index 0000000..ed6969a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_nimbus.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://wpvbsohony8j"] + +[ext_resource type="Texture2D" uid="uid://cild5gruy3i3m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png" id="1_gtmjk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_54l68"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3auv2"] +atlas = ExtResource("1_gtmjk") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk406"] +atlas = ExtResource("1_gtmjk") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awu2g"] +atlas = ExtResource("1_gtmjk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n54h"] +atlas = ExtResource("1_gtmjk") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md577"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv48t"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjt0s"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl6ym"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ly2"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwrdg"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr1kg"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4qfj"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro6yk"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k61s"] +atlas = ExtResource("1_gtmjk") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdlg6"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot0wn"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbf16"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkxe3"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xid7v"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lsmb"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0byy4"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un8vk"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_606ol"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj7nx"] +atlas = ExtResource("1_gtmjk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qguk5"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v3sr"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrnfg"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vasyx"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lw3k"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff2j5"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn4g7"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gmi1"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0nyl"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beghe"] +atlas = ExtResource("1_gtmjk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh5ni"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qgct"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adtc6"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b817o"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7jj6"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gre44"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j85je"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjkrw"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0lun"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib2p4"] +atlas = ExtResource("1_gtmjk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2u4y"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7gvt"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fno5"] +atlas = ExtResource("1_gtmjk") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bu8f"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0sjr"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlk75"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ac7r"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ave"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfnd8"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87a6u"] +atlas = ExtResource("1_gtmjk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru10t"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1jy0"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5dgi"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lghlh"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4byy"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wohyu"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euoe1"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjelc"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clurg"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hd4m"] +atlas = ExtResource("1_gtmjk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg6mp"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y7sk"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqaqo"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qe3d"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg3gh"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2kq1"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaa03"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix74q"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afgtu"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwb83"] +atlas = ExtResource("1_gtmjk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fek01"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8c5s"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sybif"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3sob"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32std"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l3pf"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn0x3"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmjqm"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr37x"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8leb7"] +atlas = ExtResource("1_gtmjk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf3xc"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy1k5"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfh17"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cdrr"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnyrs"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb4qv"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4g3n"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oppdd"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tuu0"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejbfh"] +atlas = ExtResource("1_gtmjk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_54l68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3auv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk406") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awu2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n54h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md577") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv48t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjt0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl6ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ly2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwrdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr1kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4qfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro6yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k61s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdlg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot0wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbf16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkxe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xid7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lsmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0byy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un8vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_606ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj7nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qguk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v3sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrnfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vasyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lw3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff2j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn4g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gmi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0nyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beghe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh5ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qgct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adtc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b817o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7jj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gre44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j85je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjkrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0lun") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib2p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2u4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7gvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fno5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bu8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0sjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlk75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ac7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ave") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfnd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87a6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru10t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1jy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5dgi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lghlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4byy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wohyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euoe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjelc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clurg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hd4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg6mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y7sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqaqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qe3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg3gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2kq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaa03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix74q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afgtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwb83") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fek01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8c5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sybif") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3sob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32std") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l3pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn0x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmjqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr37x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8leb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf3xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy1k5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfh17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cdrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnyrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb4qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4g3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oppdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tuu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejbfh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskduskwind.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskduskwind.tres new file mode 100644 index 0000000..d747df5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskduskwind.tres @@ -0,0 +1,451 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://5aageht3yxas"] + +[ext_resource type="Texture2D" uid="uid://05n03hanyxqe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png" id="1_op0uo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2pug"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kugss"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap4jt"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfiyp"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qf1i"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38iac"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcqio"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxpn3"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfen5"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5kn2"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieuda"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcsr0"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h4mr"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndm1a"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq00c"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkwx6"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grbyy"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btw6q"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41fit"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dxvh"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wixxx"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eikt"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opys0"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhnda"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxo3j"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opobl"] +atlas = ExtResource("1_op0uo") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujbcj"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7immy"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sharn"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w2gt"] +atlas = ExtResource("1_op0uo") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbqvg"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjarm"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d11ut"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2th5n"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hu4j"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2sk2"] +atlas = ExtResource("1_op0uo") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsnd5"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi0qk"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3th1"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnxes"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s04yc"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b3kk"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54g7g"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7q1t"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgpuo"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jd62"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vqmi"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lkyg"] +atlas = ExtResource("1_op0uo") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0g0m"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_natwv"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxmmj"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuafi"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb46n"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y4hs"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3oqp"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06m6y"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp1kp"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvwxt"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvel4"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngkxg"] +atlas = ExtResource("1_op0uo") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2pug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kugss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap4jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfiyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qf1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38iac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcqio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxpn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfen5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5kn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieuda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcsr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h4mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndm1a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq00c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkwx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grbyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btw6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41fit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dxvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wixxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eikt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opys0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhnda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxo3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opobl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujbcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7immy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sharn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w2gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbqvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjarm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d11ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2th5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hu4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2sk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsnd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi0qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3th1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnxes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s04yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b3kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54g7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7q1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgpuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jd62") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vqmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lkyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0g0m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_natwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxmmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuafi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb46n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y4hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3oqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06m6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp1kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvwxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvel4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngkxg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskgoldenflame.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskgoldenflame.tres new file mode 100644 index 0000000..9918d63 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskgoldenflame.tres @@ -0,0 +1,444 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://e8lsb6f7fr71"] + +[ext_resource type="Texture2D" uid="uid://bkoqb0nh4w1js" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png" id="1_lcuwf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_076je"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ba3"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1lp6"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86o17"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63cfq"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l81jb"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ffk"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga55k"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqw56"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl61c"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y2ul"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjti3"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujcsa"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61qch"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xs1d"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xr0k"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dck77"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyeci"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d701c"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3d00"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i62vn"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doio1"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuyif"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4a8g"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4n2j"] +atlas = ExtResource("1_lcuwf") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnmsl"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loxcg"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwsar"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn0tt"] +atlas = ExtResource("1_lcuwf") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4rgs"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ecy7"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71a2f"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fga3u"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioy2j"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rject"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8li0"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vofyx"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfcfx"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq0sd"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4kwx"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhbp7"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84wa1"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whvto"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjeoh"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtio4"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5excd"] +atlas = ExtResource("1_lcuwf") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu4l8"] +atlas = ExtResource("1_lcuwf") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es3fs"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdjvv"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y12n"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etckv"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn724"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sefvk"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmuom"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1axt"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agkfc"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f35n7"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fmea"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5w5t"] +atlas = ExtResource("1_lcuwf") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_076je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ba3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1lp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86o17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63cfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l81jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ffk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga55k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqw56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl61c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y2ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjti3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujcsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61qch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xs1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xr0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dck77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyeci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d701c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3d00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i62vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doio1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuyif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4a8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4n2j") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnmsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loxcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwsar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn0tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4rgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ecy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71a2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fga3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioy2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rject") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8li0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vofyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfcfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq0sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4kwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhbp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84wa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whvto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjeoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtio4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5excd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu4l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es3fs") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdjvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y12n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etckv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn724") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sefvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmuom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1axt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agkfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f35n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fmea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5w5t") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskredsand.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskredsand.tres new file mode 100644 index 0000000..f2ddf66 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_obelyskredsand.tres @@ -0,0 +1,451 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://csrj0y7p72rl2"] + +[ext_resource type="Texture2D" uid="uid://bqwpw7drxwpku" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png" id="1_5nkrh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_plugt"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l46fp"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjqbk"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7txar"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23e88"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sst1v"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uevr"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkm4b"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fsw7"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkwbh"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16r63"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhod3"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kaj2"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgqtj"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceuh4"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0xgc"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3f1x"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngug2"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uap0e"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdb02"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fox4c"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4urg"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdgmo"] +atlas = ExtResource("1_5nkrh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wodxy"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blf5e"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apdqj"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkspt"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ih03"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0lef"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndn8a"] +atlas = ExtResource("1_5nkrh") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh0ye"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtij4"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vg55"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydf1j"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mpjx"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icolr"] +atlas = ExtResource("1_5nkrh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhg7h"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5stmg"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flf0o"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi302"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40suk"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyhe0"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15f0h"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdpf6"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d45v"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cv1d"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73cp7"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61h7n"] +atlas = ExtResource("1_5nkrh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xujoj"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0lyg"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x685u"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tydw6"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvmbk"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrdxh"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q1pi"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcxhd"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbpf0"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ceh"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo4ad"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa6fh"] +atlas = ExtResource("1_5nkrh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_plugt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l46fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjqbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7txar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23e88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sst1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uevr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkm4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fsw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkwbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16r63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhod3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kaj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgqtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceuh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0xgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3f1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngug2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uap0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdb02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fox4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4urg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdgmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wodxy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blf5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apdqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkspt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ih03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0lef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndn8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh0ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtij4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vg55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydf1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mpjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icolr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhg7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5stmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flf0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi302") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40suk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyhe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15f0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdpf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d45v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cv1d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_73cp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61h7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xujoj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0lyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x685u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tydw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvmbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrdxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q1pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcxhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbpf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ceh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo4ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa6fh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_onyxpantheran.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_onyxpantheran.tres new file mode 100644 index 0000000..ae0995d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_onyxpantheran.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cseeqayuwnpu0"] + +[ext_resource type="Texture2D" uid="uid://bq0dsmqjp4gff" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png" id="1_dkn84"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ymca"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umbfx"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4dtu"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vp8h"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx6k6"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61gll"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uofns"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xk8x"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d87sk"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87ob7"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynmhp"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq1ls"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r72qo"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dfvk"] +atlas = ExtResource("1_dkn84") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qino7"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ijd0"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btuoj"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3413o"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyri0"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2264"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff8ls"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00m6a"] +atlas = ExtResource("1_dkn84") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv12l"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5goau"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c15xw"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0fel"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek38j"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h76g6"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go66t"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp78t"] +atlas = ExtResource("1_dkn84") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xswue"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh87l"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afdjp"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bno0j"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt3um"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oukp4"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghiyd"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lldg"] +atlas = ExtResource("1_dkn84") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6vyd"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv331"] +atlas = ExtResource("1_dkn84") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeev1"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ht0r"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqb21"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihpq2"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nqna"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gacu0"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq5dw"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb7f0"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pspge"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqwwp"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kh1w"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjsth"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndbdt"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhjqi"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d62re"] +atlas = ExtResource("1_dkn84") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f3sv"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei1ms"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws20w"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eltat"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w70cs"] +atlas = ExtResource("1_dkn84") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44tet"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7jkc"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smkef"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu3j3"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj4sp"] +atlas = ExtResource("1_dkn84") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ey1q"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5tdw"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2812"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7epu"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3x2w"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no2jy"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0b1l"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slki7"] +atlas = ExtResource("1_dkn84") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkfvv"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04rxr"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4gh3"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofxo7"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mawys"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68kv6"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3inbw"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5qqp"] +atlas = ExtResource("1_dkn84") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ymca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umbfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4dtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vp8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx6k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61gll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uofns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xk8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d87sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87ob7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynmhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq1ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r72qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dfvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qino7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ijd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btuoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3413o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyri0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2264") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff8ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00m6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv12l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5goau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c15xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0fel") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek38j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h76g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go66t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp78t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xswue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh87l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afdjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bno0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt3um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oukp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghiyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lldg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6vyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv331") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeev1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ht0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqb21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihpq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nqna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gacu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq5dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb7f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pspge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqwwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kh1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjsth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndbdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhjqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d62re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f3sv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei1ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws20w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eltat") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w70cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44tet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7jkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smkef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu3j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj4sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ey1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5tdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2812") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7epu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3x2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no2jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0b1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slki7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkfvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04rxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4gh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofxo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mawys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68kv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3inbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5qqp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_orbweaver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_orbweaver.tres new file mode 100644 index 0000000..a74f7d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_orbweaver.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://cbidgobtxdorg"] + +[ext_resource type="Texture2D" uid="uid://xgx673aspayb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png" id="1_0721w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpxb8"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l106"] +atlas = ExtResource("1_0721w") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqg11"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u836"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2hvw"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qc76"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twxm0"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36mgx"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdrb8"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwoda"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkmhb"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4c6s"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u67u4"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yhox"] +atlas = ExtResource("1_0721w") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xrje"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hda61"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqap4"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bme36"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joff1"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flhq4"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmcav"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p8w6"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmk27"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbtcc"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q2kp"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvqmr"] +atlas = ExtResource("1_0721w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql3bp"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r16n3"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh250"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtgt"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi2h2"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaul0"] +atlas = ExtResource("1_0721w") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gihxr"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmeas"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0q3b"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt0mb"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxkmy"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rupkl"] +atlas = ExtResource("1_0721w") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fywu0"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pji7r"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc544"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0mql"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3j7b"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvab2"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcw31"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bnub"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilmy6"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh8wq"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5mee"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go275"] +atlas = ExtResource("1_0721w") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ea3a"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6v7h"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0haj"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0cm8"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbxvo"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etu0m"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hib56"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iedsm"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbjdv"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dou7j"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2oxa"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjctr"] +atlas = ExtResource("1_0721w") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpxb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l106") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqg11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u836") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2hvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qc76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twxm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36mgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdrb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwoda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkmhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4c6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u67u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yhox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xrje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hda61") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqap4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bme36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joff1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flhq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmcav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p8w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmk27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbtcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q2kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvqmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql3bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r16n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh250") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtgt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi2h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaul0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gihxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmeas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0q3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt0mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxkmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rupkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fywu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pji7r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc544") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0mql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3j7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvab2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcw31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bnub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilmy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh8wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5mee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go275") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ea3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6v7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0haj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0cm8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbxvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etu0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hib56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iedsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbjdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dou7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2oxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjctr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_palacetrinketeer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_palacetrinketeer.tres new file mode 100644 index 0000000..359dad5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_palacetrinketeer.tres @@ -0,0 +1,428 @@ +[gd_resource type="SpriteFrames" load_steps=58 format=3 uid="uid://cbxplx5r2va5u"] + +[ext_resource type="Texture2D" uid="uid://dqwm7g3lpdltj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png" id="1_neos4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm4rd"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux5w7"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmvbn"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7xb0"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5rge"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_midk4"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa7sg"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s1sa"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vbvc"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr2wp"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3rg7"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pefex"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5gu5"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53gyt"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soklv"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghef3"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0edy"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wkuy"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hhcr"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsi77"] +atlas = ExtResource("1_neos4") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_530dn"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2av1"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef7c2"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1ipr"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jouk"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqtmm"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clnk6"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmvrp"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw8lx"] +atlas = ExtResource("1_neos4") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb4ep"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34o75"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebacy"] +atlas = ExtResource("1_neos4") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox1eu"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh4rp"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c4bs"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3v8y"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1i75"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eatj5"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjxc4"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj3ye"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbtae"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsjcc"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4w1d"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w7mw"] +atlas = ExtResource("1_neos4") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1fhg"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_capit"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f44t5"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bpfg"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jj0f"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hucos"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm10w"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c5xf"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dffpl"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5pqw"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkve5"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it4iv"] +atlas = ExtResource("1_neos4") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm4rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux5w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmvbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7xb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5rge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_midk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa7sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s1sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vbvc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr2wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3rg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pefex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5gu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53gyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soklv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghef3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0edy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wkuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hhcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsi77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_530dn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2av1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef7c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1ipr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jouk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqtmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clnk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmvrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw8lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb4ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34o75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebacy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox1eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh4rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c4bs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3v8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1i75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eatj5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjxc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj3ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbtae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsjcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4w1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w7mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1fhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_capit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f44t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bpfg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jj0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hucos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm10w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c5xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dffpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5pqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkve5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it4iv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pax.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pax.tres new file mode 100644 index 0000000..e24f9b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pax.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://i35vua1mcrh1"] + +[ext_resource type="Texture2D" uid="uid://c4ii4bhhlen3i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png" id="1_rkdte"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivoqd"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rbgw"] +atlas = ExtResource("1_rkdte") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gsy6"] +atlas = ExtResource("1_rkdte") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfxgk"] +atlas = ExtResource("1_rkdte") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib44r"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfhoi"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ss3f"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uim4"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48t4e"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtvh6"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xihk"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aofob"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imitf"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvym1"] +atlas = ExtResource("1_rkdte") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2bmc"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v81ve"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hed8s"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ahe1"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtl07"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h45u"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt01p"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5klno"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyf8h"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipkje"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10h6y"] +atlas = ExtResource("1_rkdte") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwpll"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjcvw"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wan10"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l32xa"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcrc4"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_misbq"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q1rs"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb11s"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b55v5"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta8r0"] +atlas = ExtResource("1_rkdte") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw1r5"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q25b"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kppxg"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_123c7"] +atlas = ExtResource("1_rkdte") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u45e"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8cv4"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsixx"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vget"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p754"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i10eo"] +atlas = ExtResource("1_rkdte") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlijt"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g41q3"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytuh"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1e5c"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb4vm"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4svj"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg188"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xash6"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obgol"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qarr2"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir7dv"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1kyj"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oot0q"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hkjj"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr28n"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3p4a"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0bc4"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq6fl"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a0e1"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mjfp"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4dyx"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c16ew"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtrj8"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xma0e"] +atlas = ExtResource("1_rkdte") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1e4v"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgr23"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8elf7"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uslxr"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdy82"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax0h0"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjx6s"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6n1j"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apkyt"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3tb7"] +atlas = ExtResource("1_rkdte") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_672eh"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jumgi"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c07m"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11wrc"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doe1n"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8c5y"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7uv7"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wu52"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5g6c"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgprn"] +atlas = ExtResource("1_rkdte") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivoqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rbgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gsy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfxgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib44r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfhoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ss3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uim4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48t4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtvh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xihk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aofob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imitf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvym1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2bmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v81ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hed8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ahe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtl07") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h45u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt01p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5klno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyf8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipkje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10h6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwpll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjcvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wan10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l32xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcrc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_misbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q1rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb11s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b55v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta8r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw1r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q25b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kppxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_123c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u45e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8cv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsixx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vget") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p754") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i10eo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlijt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g41q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytuh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1e5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb4vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4svj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg188") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xash6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obgol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qarr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir7dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1kyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oot0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hkjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr28n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3p4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0bc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq6fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a0e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mjfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4dyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c16ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtrj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xma0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1e4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgr23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8elf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uslxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdy82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax0h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjx6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6n1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apkyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3tb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_672eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jumgi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c07m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11wrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doe1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8c5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7uv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wu52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5g6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgprn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_plague_totem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_plague_totem.tres new file mode 100644 index 0000000..db10f0e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_plague_totem.tres @@ -0,0 +1,563 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://c5hx3xboekxct"] + +[ext_resource type="Texture2D" uid="uid://iasqddxp2tdl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png" id="1_3tl0v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_glifl"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxfmj"] +atlas = ExtResource("1_3tl0v") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c02e7"] +atlas = ExtResource("1_3tl0v") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb7r2"] +atlas = ExtResource("1_3tl0v") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ha8"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj3vu"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pusil"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btk2q"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_303qh"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st7gr"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qr7x"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcl4t"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewa73"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcnvl"] +atlas = ExtResource("1_3tl0v") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d21gf"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnx2r"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7mp7"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qilpw"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bom21"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dk1t"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3nog"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s7ec"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v17p8"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcahn"] +atlas = ExtResource("1_3tl0v") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13exh"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc3oi"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsmx8"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ts2"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsvf5"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqmck"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jden6"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxtf3"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwtgm"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei6n2"] +atlas = ExtResource("1_3tl0v") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdd8n"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_401n5"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y8hc"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaslb"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6wkc"] +atlas = ExtResource("1_3tl0v") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mjnh"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70lio"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1uve"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfhbi"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4f6a"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f8o3"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv42p"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1mkk"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1x41"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crx1h"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ftqc"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be7lw"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be38q"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5kh3"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4exsk"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n02d4"] +atlas = ExtResource("1_3tl0v") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xllpy"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovc2h"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvnnl"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y0mg"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmeup"] +atlas = ExtResource("1_3tl0v") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvcry"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2ad4"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agnbj"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h8jr"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhx07"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_584rd"] +atlas = ExtResource("1_3tl0v") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqmyp"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiy4h"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cte11"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glmd3"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iesrl"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62axc"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2524m"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmwty"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvlqh"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2twbj"] +atlas = ExtResource("1_3tl0v") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_glifl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxfmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c02e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb7r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ha8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj3vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pusil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btk2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_303qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st7gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qr7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcl4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewa73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcnvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d21gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnx2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7mp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qilpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bom21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dk1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3nog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s7ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v17p8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13exh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc3oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsmx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ts2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsvf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqmck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jden6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxtf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwtgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei6n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdd8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_401n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y8hc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaslb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6wkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mjnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70lio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1uve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfhbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4f6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f8o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv42p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1mkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1x41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crx1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ftqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be7lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be38q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5kh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4exsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n02d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xllpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovc2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvnnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y0mg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmeup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvcry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2ad4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_agnbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h8jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhx07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_584rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqmyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiy4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cte11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glmd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iesrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62axc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2524m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmwty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvlqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2twbj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pyromancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pyromancer.tres new file mode 100644 index 0000000..cb14283 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_pyromancer.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://di6gokudsq84h"] + +[ext_resource type="Texture2D" uid="uid://d2vheuelp5vut" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png" id="1_e45ly"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv007"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16f87"] +atlas = ExtResource("1_e45ly") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6je6h"] +atlas = ExtResource("1_e45ly") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihj8x"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvm1k"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vra40"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nduig"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydswg"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thpim"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p0gy"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1tqu"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp1xm"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0vb6"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrfvr"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljj8l"] +atlas = ExtResource("1_e45ly") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lddvc"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe4i3"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkjcq"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh36x"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ovw"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5b73"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfaf1"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nsiv"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehsg4"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebr16"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqp33"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly3ul"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rlk5"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tsb1"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fldw3"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7arhd"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eqcw"] +atlas = ExtResource("1_e45ly") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r853y"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q51l8"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssr5k"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyiej"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiuvu"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70up5"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl85q"] +atlas = ExtResource("1_e45ly") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wamky"] +atlas = ExtResource("1_e45ly") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38sq7"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egaob"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts4bx"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixid1"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn5p2"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iklsw"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l242b"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vy3r"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3d8c"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r50b8"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58xgu"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cer8x"] +atlas = ExtResource("1_e45ly") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp3hb"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi5ad"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5wus"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj7ij"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulx6r"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f2ej"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osxub"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttxyd"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdu6k"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apith"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50qk8"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48q5y"] +atlas = ExtResource("1_e45ly") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv007") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16f87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6je6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihj8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvm1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vra40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nduig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydswg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thpim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p0gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1tqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp1xm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0vb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrfvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljj8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lddvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe4i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkjcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh36x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ovw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5b73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfaf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nsiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehsg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebr16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqp33") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly3ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rlk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tsb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fldw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7arhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eqcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r853y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q51l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssr5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyiej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiuvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70up5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl85q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wamky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38sq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egaob") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts4bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixid1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn5p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iklsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l242b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vy3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3d8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r50b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58xgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cer8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp3hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi5ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5wus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj7ij") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulx6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f2ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osxub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttxyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdu6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apith") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50qk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48q5y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rae.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rae.tres new file mode 100644 index 0000000..0eb0473 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rae.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://pq762rt6bhi8"] + +[ext_resource type="Texture2D" uid="uid://cfa375n10e2y3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png" id="1_b3ewv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvdus"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kplq6"] +atlas = ExtResource("1_b3ewv") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwe6m"] +atlas = ExtResource("1_b3ewv") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8apkb"] +atlas = ExtResource("1_b3ewv") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4tx3"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mh1s"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xun3l"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbd05"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnet0"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yh2y"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pfj6"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psnm8"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw7vb"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4uxu"] +atlas = ExtResource("1_b3ewv") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nxqn"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk7uh"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i0kb"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwchp"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwxi0"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg3x2"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a075w"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al16c"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm3gy"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b3m0"] +atlas = ExtResource("1_b3ewv") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iames"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qomin"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o56kj"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3yg7"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0abs"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc276"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e17x4"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twxh5"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dluj"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2f10"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80s8f"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clrti"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnrv3"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ka2s"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anpmn"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwhaw"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdent"] +atlas = ExtResource("1_b3ewv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6qqk"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l4fl"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h76vh"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ymf0"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in6rx"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0flg1"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8nna"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x7p1"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bbrh"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd2ey"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7l1u"] +atlas = ExtResource("1_b3ewv") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgqdy"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwky0"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxbma"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix3ay"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abxmu"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj4sk"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww7lm"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl5tm"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgkkv"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hw12"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3in2g"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h27ag"] +atlas = ExtResource("1_b3ewv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xouak"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma77c"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6drm"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clneq"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8p7m"] +atlas = ExtResource("1_b3ewv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m11gc"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bhjd"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnnqr"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veuxu"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up5sy"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d221"] +atlas = ExtResource("1_b3ewv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khpcq"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll8am"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sn8f"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pde2"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s26el"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rdrv"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi27h"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayyha"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exvoc"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqtgw"] +atlas = ExtResource("1_b3ewv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxej7"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuoxw"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke14p"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1bfp"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63ss1"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhruy"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0iil"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm8g8"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4575l"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilghp"] +atlas = ExtResource("1_b3ewv") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvdus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kplq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwe6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8apkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4tx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mh1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xun3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbd05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnet0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yh2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pfj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psnm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw7vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4uxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nxqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk7uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i0kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwchp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwxi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg3x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a075w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al16c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b3m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iames") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qomin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o56kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3yg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0abs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc276") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e17x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twxh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2f10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80s8f") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_clrti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnrv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ka2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anpmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwhaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdent") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6qqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l4fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h76vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ymf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in6rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0flg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8nna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x7p1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bbrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd2ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7l1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgqdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwky0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxbma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix3ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abxmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj4sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww7lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl5tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgkkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hw12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3in2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h27ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xouak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma77c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6drm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clneq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8p7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m11gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bhjd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnnqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veuxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up5sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d221") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khpcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll8am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sn8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pde2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s26el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rdrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi27h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayyha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exvoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqtgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxej7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuoxw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke14p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1bfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63ss1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhruy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0iil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm8g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4575l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilghp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rehorah.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rehorah.tres new file mode 100644 index 0000000..d8ea421 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_rehorah.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://ce3q1ogdvpgsl"] + +[ext_resource type="Texture2D" uid="uid://oduns88chaki" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png" id="1_8oxgf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5d66"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bhft"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mkau"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yin3"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3anhs"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_desi5"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04vvo"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgs0m"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvqfd"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anh5r"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xnl"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rspv3"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03bog"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nll5c"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8hrd"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7a4y"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tedy2"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu6mp"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d0se"] +atlas = ExtResource("1_8oxgf") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t48t7"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b4l2"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syv2m"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix5fj"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4app"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rejyv"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql3pg"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6vrf"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0igj"] +atlas = ExtResource("1_8oxgf") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edoud"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtenf"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpuji"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrdh6"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yew2t"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojfls"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5vsp"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68lkl"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spv15"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjdb2"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00duw"] +atlas = ExtResource("1_8oxgf") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvpay"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk7wr"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xv3v"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxwax"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj0hy"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmvtc"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u67cu"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x08f"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o58rc"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54e7i"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0s30"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv1i6"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fjc0"] +atlas = ExtResource("1_8oxgf") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6pq8"] +atlas = ExtResource("1_8oxgf") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p4th"] +atlas = ExtResource("1_8oxgf") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhu7m"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urvr0"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1uev"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_235mm"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmtan"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k40w3"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dexo6"] +atlas = ExtResource("1_8oxgf") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djlgt"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28s1q"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cr8x"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uippu"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjm13"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhmig"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovnag"] +atlas = ExtResource("1_8oxgf") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i4ka"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdx5a"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idw4y"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ub4o"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vff7i"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0fdn"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulcke"] +atlas = ExtResource("1_8oxgf") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5d66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bhft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mkau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yin3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3anhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_desi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04vvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgs0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvqfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anh5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5xnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rspv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03bog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nll5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8hrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7a4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tedy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu6mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d0se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t48t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b4l2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_syv2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix5fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4app") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rejyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql3pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6vrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0igj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edoud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtenf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpuji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrdh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yew2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojfls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5vsp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_68lkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spv15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjdb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00duw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvpay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk7wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xv3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxwax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj0hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmvtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u67cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x08f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o58rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54e7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0s30") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv1i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fjc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6pq8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p4th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhu7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urvr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1uev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_235mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmtan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k40w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dexo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djlgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28s1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cr8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uippu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjm13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhmig") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovnag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i4ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdx5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idw4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ub4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vff7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0fdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulcke") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sakkak.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sakkak.tres new file mode 100644 index 0000000..b35df6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sakkak.tres @@ -0,0 +1,771 @@ +[gd_resource type="SpriteFrames" load_steps=107 format=3 uid="uid://bgrss8v5yq6j5"] + +[ext_resource type="Texture2D" uid="uid://237rjuvetvfk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png" id="1_u2qg5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbpuo"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05jmx"] +atlas = ExtResource("1_u2qg5") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gfkl"] +atlas = ExtResource("1_u2qg5") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dd8e"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g0xj"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dvi2"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gcdk"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej32u"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pvxu"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucvc5"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72tli"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifr81"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75w7t"] +atlas = ExtResource("1_u2qg5") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl6ym"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqfhk"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq3fp"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btc12"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1mwm"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u6td"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrhyh"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krr2s"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_434pk"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm6ig"] +atlas = ExtResource("1_u2qg5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co6ve"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t714u"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rspcq"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i152"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_282kg"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w68o"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sm7d"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_855qn"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lltd"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32lxt"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gtxu"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee7fs"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elc2d"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uug0x"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq2hu"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmd2h"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihrds"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b36ha"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpsnn"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjk2u"] +atlas = ExtResource("1_u2qg5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvms0"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x842m"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uflie"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av63c"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji5g1"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mn3k"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pt7u"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqh7k"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7c6x"] +atlas = ExtResource("1_u2qg5") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_namxm"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owp2r"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b81yi"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmarp"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqj5n"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7gt1"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w34b"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuhgp"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up4xp"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gti71"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r86qn"] +atlas = ExtResource("1_u2qg5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82y5g"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecbqo"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we2fs"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hikry"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3rws"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmec5"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0icj"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvt52"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk33r"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tka4"] +atlas = ExtResource("1_u2qg5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr5gt"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teojj"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8qo3"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54cey"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc3gh"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufb0x"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1dv3"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4q28"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5tsi"] +atlas = ExtResource("1_u2qg5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2icyr"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apxw6"] +atlas = ExtResource("1_u2qg5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdmit"] +atlas = ExtResource("1_u2qg5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppjgs"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k78wt"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4uas"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp8gg"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvmw6"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4lrj"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_810ti"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwlvl"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxjs8"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr0f6"] +atlas = ExtResource("1_u2qg5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg25f"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d565k"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygq8l"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3gb3"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc7nh"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4c6q"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t0q6"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l482q"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7xwy"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bshxo"] +atlas = ExtResource("1_u2qg5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbpuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05jmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gfkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dd8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g0xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dvi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gcdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej32u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pvxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucvc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72tli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifr81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75w7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl6ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqfhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq3fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btc12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1mwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u6td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrhyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krr2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_434pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm6ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co6ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t714u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rspcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i152") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_282kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w68o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sm7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_855qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lltd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32lxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gtxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee7fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elc2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uug0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq2hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmd2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihrds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b36ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpsnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjk2u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvms0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x842m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uflie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av63c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji5g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mn3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pt7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqh7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7c6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_namxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owp2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b81yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmarp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqj5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7gt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w34b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuhgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up4xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gti71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r86qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82y5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecbqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hikry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3rws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmec5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0icj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvt52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk33r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tka4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr5gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teojj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8qo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54cey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc3gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufb0x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1dv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4q28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5tsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2icyr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_apxw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdmit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppjgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k78wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4uas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp8gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvmw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4lrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_810ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwlvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxjs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr0f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg25f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d565k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygq8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3gb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc7nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4c6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t0q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l482q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7xwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bshxo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sandhowler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sandhowler.tres new file mode 100644 index 0000000..0e76383 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sandhowler.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://cipehxkmsrxdg"] + +[ext_resource type="Texture2D" uid="uid://c6y20q3vdifh2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png" id="1_rgt6v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7sqd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr1nd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8n0m"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjjvw"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvrfu"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofccg"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc2cp"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf1bf"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh46g"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1l8n"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t33k"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18utl"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs6um"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saq3m"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut270"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svwwk"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqaio"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g0rh"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5nud"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqnw7"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1k8b"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ta6q"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkxrd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvjw6"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fny6"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wlh6"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5v4m"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chjgi"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cxbl"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1abga"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swno1"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74eev"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5sr3"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at382"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5l4m"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x2cu"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulki7"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o2hj"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gynsc"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wifk"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8gnk"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_735dj"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4gwe"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5d7f"] +atlas = ExtResource("1_rgt6v") +region = Rect2(162, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgvfx"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cglw"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rhv2"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm7n6"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j26tx"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek60u"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch3a2"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_803f3"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dix1u"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j2wj"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a74nh"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14fli"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i247g"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ghcn"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqami"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7od8o"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41x1q"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36xi7"] +atlas = ExtResource("1_rgt6v") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug4ex"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oioxd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akj13"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hyli"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxghf"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amusi"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blt0d"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pywf2"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhcbe"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iyst"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fare"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d0bk"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlyq3"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow82b"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoqhd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eogd"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6xdl"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk40t"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0leu"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wt67"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61fyp"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ymo0"] +atlas = ExtResource("1_rgt6v") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7sqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr1nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8n0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjjvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvrfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofccg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc2cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf1bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh46g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1l8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t33k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18utl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs6um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saq3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut270") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svwwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqaio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g0rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5nud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqnw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1k8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ta6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkxrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvjw6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fny6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wlh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5v4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chjgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cxbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1abga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swno1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74eev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5sr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at382") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5l4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x2cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulki7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o2hj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gynsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wifk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8gnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_735dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4gwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5d7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgvfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cglw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rhv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm7n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j26tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek60u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch3a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_803f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dix1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j2wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a74nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14fli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i247g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ghcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqami") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7od8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41x1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36xi7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug4ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oioxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akj13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hyli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxghf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amusi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blt0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pywf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhcbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iyst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fare") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d0bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlyq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow82b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoqhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eogd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6xdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk40t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0leu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wt67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61fyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ymo0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_scarabtera.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_scarabtera.tres new file mode 100644 index 0000000..e2cc05a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_scarabtera.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://bi4jiklmqp2o1"] + +[ext_resource type="Texture2D" uid="uid://60uoptbc81r1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png" id="1_jk2pr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ephey"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv47s"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocbts"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahmjd"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdqxa"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytmh7"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ev37"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vetq"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qklr"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey7cr"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o3yb"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ywuj"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef7s3"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg7ur"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgors"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx4cp"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8fdq"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm5no"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taruo"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsqc8"] +atlas = ExtResource("1_jk2pr") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74od5"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvkqx"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvvns"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjo73"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgpss"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye5l0"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xesn6"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qe3n"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i165e"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyg03"] +atlas = ExtResource("1_jk2pr") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leigs"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc4hx"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_munj7"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkgs3"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73r2b"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj2qm"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy510"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0rkx"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk7no"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph6cu"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvsl3"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laggg"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgslu"] +atlas = ExtResource("1_jk2pr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ietur"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp85l"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqpgk"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynfjc"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q13md"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tfvf"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wje8l"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlk7l"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04i7r"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhc27"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jde1k"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_482es"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tti5q"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owcv6"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_652bo"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyu2c"] +atlas = ExtResource("1_jk2pr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl57j"] +atlas = ExtResource("1_jk2pr") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g624"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_audbj"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq61i"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io6y6"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nswef"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mjug"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpf7y"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_228ov"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26jb0"] +atlas = ExtResource("1_jk2pr") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdcry"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlkof"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8yf2"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0mqi"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is8nt"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbpib"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua61l"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v63sd"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiu3e"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8r36"] +atlas = ExtResource("1_jk2pr") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ephey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv47s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocbts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahmjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdqxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytmh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ev37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vetq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qklr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey7cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o3yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ywuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef7s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg7ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgors") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx4cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8fdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm5no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taruo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsqc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74od5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvkqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvvns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjo73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgpss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye5l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xesn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qe3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i165e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyg03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leigs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc4hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_munj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkgs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73r2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj2qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy510") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0rkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk7no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph6cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvsl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laggg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgslu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ietur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp85l") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqpgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynfjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q13md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tfvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wje8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlk7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04i7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhc27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jde1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_482es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tti5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owcv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_652bo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyu2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl57j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g624") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_audbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq61i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io6y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nswef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mjug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpf7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_228ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26jb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdcry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlkof") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8yf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0mqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is8nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbpib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua61l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v63sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiu3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8r36") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sinergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sinergyunit.tres new file mode 100644 index 0000000..cf75d19 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sinergyunit.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://yy4u2rnupsup"] + +[ext_resource type="Texture2D" uid="uid://y3re7njg3bu4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png" id="1_j0qlg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xff6n"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxwwj"] +atlas = ExtResource("1_j0qlg") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb6at"] +atlas = ExtResource("1_j0qlg") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ormeu"] +atlas = ExtResource("1_j0qlg") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7do8k"] +atlas = ExtResource("1_j0qlg") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1sk5"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4fyp"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fctox"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v05g1"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tbk1"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oblm0"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwis0"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e80vl"] +atlas = ExtResource("1_j0qlg") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku7el"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_texux"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blcpq"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysgm0"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8anhr"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytf1"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x12rl"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5cxm"] +atlas = ExtResource("1_j0qlg") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnlmy"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7k3v"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbb3a"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imj71"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1868k"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eedq"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ka4j"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_812e5"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y2su"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8v75"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtwjd"] +atlas = ExtResource("1_j0qlg") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id84i"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhgeh"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wufws"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdfc5"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7fk"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdxg"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n78ah"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgw0n"] +atlas = ExtResource("1_j0qlg") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyb8d"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ebdv"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cul44"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7pd5"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_544f7"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aimy8"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym4xt"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mj7r"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tkhi"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss7pr"] +atlas = ExtResource("1_j0qlg") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n1fr"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_046qo"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6cxw"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx74t"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt2st"] +atlas = ExtResource("1_j0qlg") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej7nc"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxkbf"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk3h8"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fxwn"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inold"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j3uj"] +atlas = ExtResource("1_j0qlg") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un1rc"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mejuf"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0mor"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s542"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se8vk"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buxoa"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yqif"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnprl"] +atlas = ExtResource("1_j0qlg") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rnop"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm84i"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0581"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8k6e"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjp8b"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biodr"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1g8r"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73nom"] +atlas = ExtResource("1_j0qlg") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xff6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxwwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb6at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ormeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7do8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1sk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4fyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fctox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v05g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tbk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oblm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwis0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e80vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku7el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_texux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blcpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysgm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8anhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x12rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5cxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnlmy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7k3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbb3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imj71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1868k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eedq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ka4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_812e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y2su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8v75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtwjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id84i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhgeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wufws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdfc5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7fk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n78ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgw0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyb8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ebdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cul44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7pd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_544f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aimy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym4xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mj7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tkhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss7pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n1fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_046qo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6cxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx74t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt2st") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej7nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxkbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk3h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fxwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inold") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j3uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un1rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mejuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0mor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s542") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se8vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buxoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yqif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnprl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rnop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm84i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0581") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8k6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjp8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biodr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1g8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73nom") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sirocco.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sirocco.tres new file mode 100644 index 0000000..f89a4d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sirocco.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://dvpgoiipcjk5"] + +[ext_resource type="Texture2D" uid="uid://c7v2gfjdycbit" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png" id="1_sfrje"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3t08"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w0pt"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nec6"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vpbt"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljtdo"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wicmw"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8pr6"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7sjv"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_777p2"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu76b"] +atlas = ExtResource("1_sfrje") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgsw2"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hkcf"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmd07"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7gvk"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6vdx"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5ayb"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q71fh"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6g7r"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i81vc"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt0qx"] +atlas = ExtResource("1_sfrje") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7p2i"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr6u8"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35tck"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vijb2"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3bm6"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3808y"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrgpm"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rgwx"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w72la"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb2cv"] +atlas = ExtResource("1_sfrje") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lj4v"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv11g"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adres"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0d3g"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n7tk"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd28e"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q047"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_477e6"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrglq"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh14h"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gypx"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvw77"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6mnm"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4mel"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4uan"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4ggq"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i5cs"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_584j2"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bcy1"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h5wt"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojsoa"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frq4d"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpt5a"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tgq4"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbf13"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfjtd"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llvoj"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rml3j"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc8ve"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5weaw"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71bbl"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n11cy"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47xdc"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q12qn"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el5il"] +atlas = ExtResource("1_sfrje") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r43ua"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tev2"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7chc"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln4ef"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rjm4"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pn3j"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uksal"] +atlas = ExtResource("1_sfrje") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orfu0"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt7rv"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2eld"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltmm2"] +atlas = ExtResource("1_sfrje") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b64yq"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ab3l"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d80n"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1to6d"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjfv1"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u8eh"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjr2t"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdqa0"] +atlas = ExtResource("1_sfrje") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66nv"] +atlas = ExtResource("1_sfrje") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uobn"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr6a3"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiyp4"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejbb3"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muj5k"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftku"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sgiu"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbt33"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osf8r"] +atlas = ExtResource("1_sfrje") +region = Rect2(808, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3t08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w0pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nec6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vpbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljtdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wicmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8pr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7sjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_777p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu76b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgsw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hkcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmd07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7gvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6vdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5ayb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q71fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6g7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i81vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt0qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7p2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr6u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35tck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vijb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3bm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3808y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrgpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rgwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w72la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb2cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lj4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv11g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adres") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0d3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n7tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd28e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q047") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_477e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrglq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh14h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gypx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvw77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6mnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4mel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4uan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4ggq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i5cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_584j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bcy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h5wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojsoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frq4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpt5a") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tgq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbf13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfjtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llvoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rml3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc8ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5weaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71bbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n11cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47xdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q12qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el5il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r43ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tev2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7chc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln4ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rjm4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pn3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uksal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orfu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt7rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2eld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltmm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b64yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ab3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d80n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1to6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjfv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u8eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjr2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdqa0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u66nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uobn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr6a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiyp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejbb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muj5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sgiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbt33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osf8r") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sister.tres new file mode 100644 index 0000000..0cde333 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_sister.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://bvtaj5hs1lnf3"] + +[ext_resource type="Texture2D" uid="uid://c7h8j25ng37t7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png" id="1_kl7x4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa52l"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaxf1"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tpis"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuxfq"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atxtl"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl7om"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghdjx"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c443t"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0qje"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksari"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayowp"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fp7d"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdeai"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4pq4"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2euu3"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2chng"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1331, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0vbd"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ynns"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebutx"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo2qc"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awjuw"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80dwo"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4cee"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t2fh"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j67yd"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x52jp"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ype57"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ukjn"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwlan"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixll3"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh17d"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu7i1"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no8e3"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef6wr"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rky4h"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiu1p"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqq8b"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx2v3"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eay2c"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar4wv"] +atlas = ExtResource("1_kl7x4") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlha3"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g1wa"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbpi2"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrhkt"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bfw5"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3xgu"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2xkg"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj2xv"] +atlas = ExtResource("1_kl7x4") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmh5w"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfyjl"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndd5o"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhwvj"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_outyc"] +atlas = ExtResource("1_kl7x4") +region = Rect2(1452, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6dyn"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt8nn"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwh0u"] +atlas = ExtResource("1_kl7x4") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ex28"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8xyj"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdvis"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pc4m"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr7r2"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvw7a"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub084"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n83yt"] +atlas = ExtResource("1_kl7x4") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs6qa"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq2lv"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln1vm"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thypb"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcg56"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7kqy"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb30h"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvsco"] +atlas = ExtResource("1_kl7x4") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4ib"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0cxx"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxtlw"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm04n"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owuo1"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnjcm"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0lix"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3v5w"] +atlas = ExtResource("1_kl7x4") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv24g"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8jxf"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp03a"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qim3k"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehliv"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dr0"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ix4"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axinv"] +atlas = ExtResource("1_kl7x4") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r80q"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_264ea"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f42y"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp5n6"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw4jd"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5vf7"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crhel"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ncg"] +atlas = ExtResource("1_kl7x4") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvhi4"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkgss"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2gku"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgqfq"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqjv7"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2joj4"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck21d"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a134x"] +atlas = ExtResource("1_kl7x4") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa52l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaxf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tpis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuxfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atxtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl7om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghdjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c443t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0qje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksari") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayowp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fp7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdeai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4pq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2euu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2chng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0vbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ynns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebutx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo2qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awjuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80dwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4cee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t2fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j67yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x52jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ype57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ukjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwlan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixll3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh17d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu7i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no8e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef6wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rky4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiu1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqq8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx2v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eay2c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlha3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g1wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbpi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrhkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bfw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3xgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2xkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj2xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmh5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfyjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndd5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhwvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_outyc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6dyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt8nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwh0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ex28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8xyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdvis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pc4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr7r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvw7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub084") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n83yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs6qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq2lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln1vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thypb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcg56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7kqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb30h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvsco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0cxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxtlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm04n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owuo1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnjcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0lix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3v5w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv24g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8jxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp03a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qim3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehliv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73dr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ix4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axinv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r80q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_264ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f42y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp5n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw4jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5vf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crhel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ncg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvhi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkgss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2gku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgqfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqjv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2joj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck21d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a134x") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_starfirescarab.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_starfirescarab.tres new file mode 100644 index 0000000..dfb6159 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_starfirescarab.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://dkfu11cuep4g1"] + +[ext_resource type="Texture2D" uid="uid://f6gpm0trrool" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png" id="1_j66qc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvfvo"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baute"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kehy"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuepo"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3khto"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q3uq"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj10n"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8qdw"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mcu5"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogteq"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd06w"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twdo5"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvr1e"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq03v"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq710"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhxhs"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66iei"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nimth"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymib"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as3er"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1pny"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0beda"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2oj8"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttrh"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohaej"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3phn"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emokh"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_737tq"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrt45"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ix2"] +atlas = ExtResource("1_j66qc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcnjc"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwtqu"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auer8"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dun3q"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw527"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wcij"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axmqr"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lhrf"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1dlg"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqxgn"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r53n7"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2tqt"] +atlas = ExtResource("1_j66qc") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53i63"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnpto"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw83m"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyooo"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0igaw"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27khu"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m5ht"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj6f5"] +atlas = ExtResource("1_j66qc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt4jf"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tms3"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wychi"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbhe6"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtjvx"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2f12"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gn0h"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgna0"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ewy7"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyraf"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3xi8"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iokdd"] +atlas = ExtResource("1_j66qc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxnb2"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orwik"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swek3"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02far"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8kmr"] +atlas = ExtResource("1_j66qc") +region = Rect2(162, 567, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvfvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baute") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kehy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuepo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3khto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q3uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj10n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8qdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mcu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogteq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd06w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twdo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvr1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq03v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq710") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhxhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66iei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nimth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymib") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_as3er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1pny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0beda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2oj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xttrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohaej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3phn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emokh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_737tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrt45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ix2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcnjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwtqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auer8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dun3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw527") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wcij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axmqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lhrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1dlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqxgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r53n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2tqt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_53i63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnpto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw83m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyooo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0igaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27khu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m5ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj6f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt4jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tms3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wychi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbhe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtjvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2f12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gn0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgna0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ewy7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyraf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3xi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iokdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxnb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orwik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swek3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02far") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8kmr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_tier2general.tres new file mode 100644 index 0000000..2cceafc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_tier2general.tres @@ -0,0 +1,833 @@ +[gd_resource type="SpriteFrames" load_steps=113 format=3 uid="uid://rtb3aefc7kfx"] + +[ext_resource type="Texture2D" uid="uid://dqb1c3ygl7cgl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png" id="1_aoa11"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_42o4j"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v5cu"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ulot"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue38r"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tembe"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oru8j"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdihb"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsho1"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkn6p"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_car2v"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfp4o"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlbfl"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abqyy"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vqbn"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxbkq"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbn0v"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c620w"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqf5s"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhqbb"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnar3"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg7eh"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glyj4"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6050"] +atlas = ExtResource("1_aoa11") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_undi7"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7sdw"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86ph7"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm47o"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_othef"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raogp"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3bw7"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmxng"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qlps"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7cjr"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yryj1"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2g8r"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3ra"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8a66"] +atlas = ExtResource("1_aoa11") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmk4d"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw16t"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex7bv"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r0tr"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oggi"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl2oa"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcfa0"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp6dm"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j37sx"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkdsu"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lho7d"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyla2"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0iox"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62kht"] +atlas = ExtResource("1_aoa11") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utira"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26j01"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v4xb"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhoei"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku23s"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4vby"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltv8c"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llfm8"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4hqy"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khfvk"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oa5t"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4bf2"] +atlas = ExtResource("1_aoa11") +region = Rect2(987, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c4mu"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7gr2"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c74p"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7cgr"] +atlas = ExtResource("1_aoa11") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijqf7"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu6in"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icwoy"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivi00"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvbi2"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgrmp"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y11c0"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgvx"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pmo1"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuukp"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_316lr"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gjcp"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sc5v"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ege1k"] +atlas = ExtResource("1_aoa11") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpfq7"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ak64"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tiuv"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sba78"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51uph"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ful"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2f1a"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix4b6"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb2xl"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5w8g"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ospii"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14uxy"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4y1v"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5ftt"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqbpa"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2eww"] +atlas = ExtResource("1_aoa11") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmx0h"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_behbm"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uaii"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5ic3"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm6x5"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtdry"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k6bs"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv56w"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tx8r"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omwhd"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij5tg"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkdu6"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks8h5"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg7jb"] +atlas = ExtResource("1_aoa11") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42o4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v5cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ulot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue38r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tembe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oru8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdihb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsho1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkn6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_car2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfp4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlbfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abqyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vqbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxbkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbn0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c620w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqf5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhqbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnar3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg7eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glyj4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6050") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_undi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7sdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86ph7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm47o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_othef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raogp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3bw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmxng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qlps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7cjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yryj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2g8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3ra") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8a66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmk4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw16t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex7bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r0tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oggi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl2oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcfa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp6dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j37sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkdsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lho7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyla2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0iox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62kht") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_utira") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26j01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v4xb") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhoei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku23s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4vby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltv8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llfm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4hqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khfvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oa5t") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4bf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c4mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7gr2") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c74p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7cgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijqf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu6in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icwoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivi00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvbi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgrmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y11c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pmo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuukp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_316lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gjcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sc5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ege1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpfq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ak64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tiuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sba78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51uph") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ful") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2f1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix4b6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb2xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5w8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ospii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14uxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4y1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5ftt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqbpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2eww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmx0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_behbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uaii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5ic3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm6x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtdry") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k6bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv56w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tx8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omwhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij5tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkdu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks8h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg7jb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_trifectaperfecta.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_trifectaperfecta.tres new file mode 100644 index 0000000..05fe12b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_trifectaperfecta.tres @@ -0,0 +1,500 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://bwm4vph7lts87"] + +[ext_resource type="Texture2D" uid="uid://ckd327d63qc2d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png" id="1_qt7fv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwum7"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2y5g"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kpyp"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7afq6"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke5pw"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym3fx"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o37f3"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44nmm"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mewp8"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7db1y"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov7su"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko64m"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aubuy"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o005k"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxpyc"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1mie"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10jtp"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3dbd"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mvis"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1bhf"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwyfq"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ugu"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81r2b"] +atlas = ExtResource("1_qt7fv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymqx8"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_attsb"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm7kb"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63um4"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6t3q"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnwuc"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31118"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5sie"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i2p1"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvmde"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwg0c"] +atlas = ExtResource("1_qt7fv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlu6i"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcgmx"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f6pr"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2emt"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqy1n"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nluuv"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aig0"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocot1"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxaty"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow4s3"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eowpa"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjkg5"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hq1u"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw24a"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mdwe"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd78d"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adti0"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14jwe"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evq27"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_004uq"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76ad6"] +atlas = ExtResource("1_qt7fv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj6f7"] +atlas = ExtResource("1_qt7fv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3pe7"] +atlas = ExtResource("1_qt7fv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j68tf"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nmwl"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_617vl"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nkru"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07cyt"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrwmd"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goe6r"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8jxl"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3guet"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0wle"] +atlas = ExtResource("1_qt7fv") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwum7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2y5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kpyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7afq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke5pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym3fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o37f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44nmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mewp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7db1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov7su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko64m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aubuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o005k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxpyc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1mie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10jtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3dbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mvis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1bhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwyfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ugu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81r2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymqx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_attsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm7kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63um4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6t3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnwuc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_31118") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5sie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i2p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvmde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwg0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlu6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcgmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f6pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2emt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqy1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nluuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aig0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocot1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxaty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow4s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eowpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjkg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hq1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw24a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mdwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd78d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adti0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14jwe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evq27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_004uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76ad6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj6f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3pe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j68tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nmwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_617vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nkru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07cyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrwmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goe6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8jxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3guet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0wle") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windgiver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windgiver.tres new file mode 100644 index 0000000..f6cace8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windgiver.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://cs6gutct4uq40"] + +[ext_resource type="Texture2D" uid="uid://c6f1xccn5nriw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png" id="1_kuy82"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewlpf"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0tbm"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghvw7"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkpp"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi7xu"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab2ly"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4qi6"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw4s4"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wiii"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvgo3"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tp8f"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tes3s"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygr44"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5que6"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j76p6"] +atlas = ExtResource("1_kuy82") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vmvg"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ino0t"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfc8c"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw5lc"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3336a"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmjsi"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnqyn"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3komd"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ytm"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00225"] +atlas = ExtResource("1_kuy82") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mx4q"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o07ie"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ejxj"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boxj1"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb2v2"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye2c1"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqlnb"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of3l6"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jqam"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hdwt"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y53i2"] +atlas = ExtResource("1_kuy82") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp8nu"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw2n6"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux38u"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8osg3"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6s0i"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ck6d"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g34cc"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spxku"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i75jf"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tmry"] +atlas = ExtResource("1_kuy82") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaa4n"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0rao"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thqb8"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uelrf"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4shh"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lskqr"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rtjr"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrbvl"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyutm"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ult2w"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvfk4"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip0dc"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmmuy"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngq2w"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y4jl"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e07n1"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kecha"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj1d0"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fhkx"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n20o0"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi11b"] +atlas = ExtResource("1_kuy82") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ux4r"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdgch"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0w4g"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk2nr"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufhpi"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvqtg"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cnjt"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcxfh"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40je6"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3log"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jgp0"] +atlas = ExtResource("1_kuy82") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0rte"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvua2"] +atlas = ExtResource("1_kuy82") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utdta"] +atlas = ExtResource("1_kuy82") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a78o"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f1vq"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niefc"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5js4"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwgn5"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2cll"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfknp"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_131p8"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73qbr"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh8ft"] +atlas = ExtResource("1_kuy82") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kni0"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq13i"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycja8"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gka3v"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t0ny"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d126y"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wotch"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ab76"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2cbc"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usti1"] +atlas = ExtResource("1_kuy82") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewlpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0tbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghvw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwkpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi7xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab2ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4qi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw4s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wiii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvgo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tp8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tes3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygr44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5que6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j76p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vmvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ino0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfc8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw5lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3336a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmjsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnqyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3komd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ytm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00225") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mx4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o07ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ejxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boxj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb2v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye2c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqlnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of3l6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jqam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hdwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y53i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp8nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw2n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux38u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8osg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6s0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ck6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g34cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spxku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i75jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tmry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaa4n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0rao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thqb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uelrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4shh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lskqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rtjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrbvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyutm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ult2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvfk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip0dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmmuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngq2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y4jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e07n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kecha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fhkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n20o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi11b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ux4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdgch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0w4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk2nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufhpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvqtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cnjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcxfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40je6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3log") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jgp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0rte") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvua2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utdta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a78o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f1vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niefc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5js4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwgn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2cll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfknp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_131p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73qbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh8ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kni0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq13i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycja8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gka3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t0ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d126y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wotch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ab76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2cbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usti1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windshriek.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windshriek.tres new file mode 100644 index 0000000..91cdc0d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windshriek.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://tq8m6en55k3u"] + +[ext_resource type="Texture2D" uid="uid://1qiwk0vt07xp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png" id="1_t8347"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_htky8"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3la74"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpbsj"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u64a2"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo3ry"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0fes"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb81p"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc80h"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xac7"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6c3d"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdkfp"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqie5"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jp3r"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qrtq"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uij2"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_badft"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ky34"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snagu"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0mdt"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifiyf"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxije"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqwja"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwyny"] +atlas = ExtResource("1_t8347") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycxgw"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj4sj"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbjry"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fcbi"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg10o"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtl81"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7aji"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxo3w"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3ges"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0yv8"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h1vx"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3k3d"] +atlas = ExtResource("1_t8347") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx42y"] +atlas = ExtResource("1_t8347") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gjjp"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgftj"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdrka"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cjfq"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htgm3"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk4wy"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66vyp"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah2vj"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydkkw"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3gbl"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiqfv"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2md4q"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6l3r"] +atlas = ExtResource("1_t8347") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmn2u"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kslau"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqf5f"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir656"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir6bt"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8gka"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tynom"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3ia0"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phcta"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05cla"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y1jr"] +atlas = ExtResource("1_t8347") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1cpf"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj7dr"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b5lx"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4fik"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoj35"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fpne"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua2uo"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2oex"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cowh8"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh0pc"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p60eo"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j34v4"] +atlas = ExtResource("1_t8347") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_htky8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3la74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpbsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u64a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo3ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0fes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb81p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc80h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xac7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6c3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdkfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqie5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jp3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qrtq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uij2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_badft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ky34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snagu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0mdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifiyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxije") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqwja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwyny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycxgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj4sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbjry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fcbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg10o") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtl81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7aji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxo3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3ges") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0yv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h1vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3k3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx42y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gjjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgftj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdrka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cjfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htgm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk4wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66vyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah2vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydkkw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3gbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiqfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2md4q") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6l3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmn2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kslau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqf5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir656") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir6bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8gka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tynom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3ia0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phcta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05cla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y1jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1cpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj7dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b5lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4fik") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoj35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fpne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua2uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2oex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cowh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh0pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p60eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j34v4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windslicer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windslicer.tres new file mode 100644 index 0000000..395e83c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windslicer.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://b37b65hcwtgro"] + +[ext_resource type="Texture2D" uid="uid://4y8j7or74nvd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png" id="1_4lx54"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ub3l"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r7g8"] +atlas = ExtResource("1_4lx54") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4smhm"] +atlas = ExtResource("1_4lx54") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdx0e"] +atlas = ExtResource("1_4lx54") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p70of"] +atlas = ExtResource("1_4lx54") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4dv6"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpqjd"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00kxh"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqf0f"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ggh4"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy46c"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0h1c"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkug4"] +atlas = ExtResource("1_4lx54") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0psk"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnl88"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0cxq"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa1w2"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_087n2"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e7jh"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_358o0"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4xol"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xmwo"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ymty"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0vll"] +atlas = ExtResource("1_4lx54") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p12rh"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kh0k"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmshb"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnd0f"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4cxr"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrcvr"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv0fx"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5ca4"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgpvc"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi78u"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msvkk"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chgqp"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cdfl"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0lcn"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3nad"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkkkh"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxnjt"] +atlas = ExtResource("1_4lx54") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuj32"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mkby"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm2ln"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmf32"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65071"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tx31"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh68c"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oheh"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjw1t"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt37w"] +atlas = ExtResource("1_4lx54") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6rn3"] +atlas = ExtResource("1_4lx54") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bigkh"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn0uj"] +atlas = ExtResource("1_4lx54") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmor6"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpqc"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouekr"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rynwh"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5yn4"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lij6n"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixl4s"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gnmr"] +atlas = ExtResource("1_4lx54") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkk0w"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd72s"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eso4v"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8ffk"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hflt"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxdtj"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qscvj"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf0tm"] +atlas = ExtResource("1_4lx54") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5e24"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2amb0"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fhce"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxviy"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dfec"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ilvt"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7jng"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qyos"] +atlas = ExtResource("1_4lx54") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ub3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r7g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4smhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdx0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p70of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4dv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpqjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00kxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqf0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ggh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy46c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0h1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkug4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0psk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnl88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0cxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa1w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_087n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e7jh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_358o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4xol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xmwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ymty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0vll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p12rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kh0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmshb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnd0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4cxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrcvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv0fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5ca4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgpvc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi78u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msvkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chgqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cdfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0lcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3nad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkkkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxnjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuj32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mkby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm2ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmf32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65071") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tx31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh68c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oheh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjw1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt37w") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6rn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bigkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn0uj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmor6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouekr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rynwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5yn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lij6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixl4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gnmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkk0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd72s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eso4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8ffk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hflt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxdtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qscvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf0tm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5e24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2amb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fhce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxviy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dfec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ilvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7jng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qyos") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windstriker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windstriker.tres new file mode 100644 index 0000000..af4d03f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_windstriker.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://jg0nbncyhjg5"] + +[ext_resource type="Texture2D" uid="uid://4s2vek70dbbe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png" id="1_ek3q1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky8df"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1mcx"] +atlas = ExtResource("1_ek3q1") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84tp0"] +atlas = ExtResource("1_ek3q1") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj005"] +atlas = ExtResource("1_ek3q1") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p5jq"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuxkd"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5qjv"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ab4o"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xga48"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aotse"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohrje"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljn3f"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lx1q"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2u3f"] +atlas = ExtResource("1_ek3q1") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upgvr"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t478g"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a63wx"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8618l"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8wqx"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oakw2"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvu3y"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g56vj"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bdlx"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axe6a"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uylbs"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jbn8"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg4i4"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ka42"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv2qd"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n267r"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqy7m"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl16r"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af6tc"] +atlas = ExtResource("1_ek3q1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns58j"] +atlas = ExtResource("1_ek3q1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aexo"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dcaa"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4e1j"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfc4l"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf602"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3dvg"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f5sh"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpbqn"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iasiv"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l3md"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rakb"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql65c"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds1dx"] +atlas = ExtResource("1_ek3q1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n64s"] +atlas = ExtResource("1_ek3q1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ry0w"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tngkr"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vmne"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h45kf"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id453"] +atlas = ExtResource("1_ek3q1") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elmit"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8ati"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pqbb"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3ye0"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l83rt"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c32xs"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwjke"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acu73"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcny2"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nktw"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slu7u"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iykj7"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujqq8"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yri73"] +atlas = ExtResource("1_ek3q1") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky8df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1mcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84tp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj005") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p5jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuxkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5qjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ab4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xga48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aotse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohrje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljn3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lx1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2u3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upgvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t478g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a63wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8618l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8wqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oakw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvu3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g56vj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bdlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axe6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uylbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jbn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg4i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ka42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv2qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n267r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqy7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl16r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af6tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns58j") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aexo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dcaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4e1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfc4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf602") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3dvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f5sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpbqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iasiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l3md") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rakb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql65c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds1dx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n64s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ry0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tngkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vmne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h45kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id453") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elmit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8ati") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pqbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3ye0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l83rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c32xs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwjke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acu73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcny2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slu7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iykj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujqq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yri73") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zephyr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zephyr.tres new file mode 100644 index 0000000..894986e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zephyr.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://djuirev34ol2q"] + +[ext_resource type="Texture2D" uid="uid://d2nd5lxpnmonu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png" id="1_gjhd4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5djxr"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqafa"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufp3w"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0cch"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1qwb"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k68f"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cco4k"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygeg8"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyauq"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7oix"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5160"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbxmh"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcinr"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpj25"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8n6n"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uj7s"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj3qd"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxdrx"] +atlas = ExtResource("1_gjhd4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ix2f"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqlmp"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkqwj"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iym0d"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk27k"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pnlo"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efhu8"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ui18"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfrc6"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fckhr"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p5qs"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwxl2"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl5gr"] +atlas = ExtResource("1_gjhd4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqiee"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csdet"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pecr0"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l37wo"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ob1a"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_853nj"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sguk"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_011eh"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4u57"] +atlas = ExtResource("1_gjhd4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjlcj"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjk0s"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn70h"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05oo7"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gvgr"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dha4l"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiio7"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yue4p"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhppa"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63s7o"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk45a"] +atlas = ExtResource("1_gjhd4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aycfd"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwquj"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbwt2"] +atlas = ExtResource("1_gjhd4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0tb4"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0a6j"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb8s6"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3q3w"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q4yj"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt5dq"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8nod"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxju4"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bll54"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pik2m"] +atlas = ExtResource("1_gjhd4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7xv1"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ukp"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfndt"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_612s2"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4rww"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh1mw"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ntuu"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umf85"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80qfs"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ghf8"] +atlas = ExtResource("1_gjhd4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5djxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqafa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufp3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0cch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1qwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k68f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cco4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygeg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyauq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7oix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5160") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbxmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcinr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpj25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8n6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uj7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj3qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxdrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ix2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqlmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkqwj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iym0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk27k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pnlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efhu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ui18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfrc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fckhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p5qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwxl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl5gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqiee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csdet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pecr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l37wo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ob1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_853nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sguk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_011eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4u57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjlcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjk0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn70h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05oo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gvgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dha4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiio7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yue4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhppa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63s7o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk45a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aycfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwquj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbwt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0tb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0a6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb8s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3q3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q4yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt5dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8nod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxju4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bll54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pik2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7xv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ukp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfndt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_612s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4rww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh1mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ntuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umf85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80qfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ghf8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zirixfestive.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zirixfestive.tres new file mode 100644 index 0000000..acb87f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zirixfestive.tres @@ -0,0 +1,819 @@ +[gd_resource type="SpriteFrames" load_steps=111 format=3 uid="uid://bsd12bey837j5"] + +[ext_resource type="Texture2D" uid="uid://b42bsfpy5rdqa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png" id="1_cvhs0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_so5e8"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuh5w"] +atlas = ExtResource("1_cvhs0") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26i0u"] +atlas = ExtResource("1_cvhs0") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksgs7"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkje8"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iawyg"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tym8f"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ijhh"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kms7i"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppvqo"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydq76"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x5my"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l38y1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3kun"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_let0e"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsifo"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp4ld"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lfjd"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iicbg"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56kns"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5jkt"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rjkd"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvfhu"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj0n0"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sqfn"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brbvk"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnfxg"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dumon"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f68vl"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7lws"] +atlas = ExtResource("1_cvhs0") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk1qe"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdar1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gk15"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4jvl"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu2k6"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spoe3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2hvl"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrmip"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlcgn"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr2d1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txaul"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eglf3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0ne4"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofk2g"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1py4"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vevds"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axsxv"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8hmm"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5big"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbuqd"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaei3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02c4h"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pbk1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ate"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsu78"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hgol"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu4uf"] +atlas = ExtResource("1_cvhs0") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tu87"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov6vv"] +atlas = ExtResource("1_cvhs0") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1sfb"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuey1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vlv4"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3nld"] +atlas = ExtResource("1_cvhs0") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v76bq"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujvv1"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1lgb"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wak6a"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm338"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uonv"] +atlas = ExtResource("1_cvhs0") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krh1j"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ik7b"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aqov"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7u76"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax785"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpf00"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2fyc"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmmpo"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wtev"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8jkl"] +atlas = ExtResource("1_cvhs0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwcqr"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7hm3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7jwb"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kj6u"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmhd2"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv70i"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnt0r"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2ji2"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yijst"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wexh"] +atlas = ExtResource("1_cvhs0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1khc"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8amb"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m53on"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06umr"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2vuu"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y11gg"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2g52"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v81yi"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8wcn"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jevy3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srxeq"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yvw2"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lln16"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_572sg"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdi4h"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1etb"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj7gy"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j3hu"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slar3"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riojx"] +atlas = ExtResource("1_cvhs0") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so5e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuh5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26i0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksgs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkje8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iawyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tym8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ijhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kms7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppvqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydq76") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x5my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l38y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3kun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_let0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsifo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp4ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lfjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iicbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56kns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5jkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rjkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvfhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj0n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sqfn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_brbvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnfxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dumon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f68vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7lws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk1qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdar1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gk15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4jvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu2k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spoe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2hvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrmip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlcgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr2d1") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_txaul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eglf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0ne4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofk2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1py4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vevds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axsxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8hmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5big") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbuqd") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaei3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02c4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pbk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ate") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsu78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hgol") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu4uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tu87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov6vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1sfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuey1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vlv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3nld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v76bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujvv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1lgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wak6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm338") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uonv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krh1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ik7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aqov") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7u76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax785") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpf00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2fyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmmpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wtev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8jkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwcqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7hm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7jwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kj6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmhd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv70i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnt0r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2ji2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yijst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wexh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1khc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8amb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m53on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06umr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2vuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y11gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2g52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v81yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8wcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jevy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srxeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yvw2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lln16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_572sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdi4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1etb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj7gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j3hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slar3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riojx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac.tres new file mode 100644 index 0000000..03d2cf0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://c6t672erbxlq6"] + +[ext_resource type="Texture2D" uid="uid://chr06q7hf0uj0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png" id="1_m2gv5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2mr7"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db3xv"] +atlas = ExtResource("1_m2gv5") +region = Rect2(606, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m17sy"] +atlas = ExtResource("1_m2gv5") +region = Rect2(606, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0k8w"] +atlas = ExtResource("1_m2gv5") +region = Rect2(606, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4sch"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgu81"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeeha"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6f5l"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4chv8"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmsa6"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_danof"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tqjc"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub1cl"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sm7s"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujwoe"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfg2i"] +atlas = ExtResource("1_m2gv5") +region = Rect2(505, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6pvt"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttqq7"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laqky"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kyg"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptmwp"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6snf"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oubuj"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdp5x"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gypgl"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anoy3"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tjmr"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nlsw"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6krn"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uoi5"] +atlas = ExtResource("1_m2gv5") +region = Rect2(404, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ejy"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a41ss"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xsls"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyocl"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgb5d"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rjte"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g33mv"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwmyh"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsrdp"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s5yk"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oph3"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1otia"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ar1g"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8qhn"] +atlas = ExtResource("1_m2gv5") +region = Rect2(606, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y87mv"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d44cq"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xyvo"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6lc7"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qx3w"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk3eo"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu2ma"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uai2y"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiktc"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgd6l"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04q1x"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4e7r"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sivie"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uq5x"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74h1u"] +atlas = ExtResource("1_m2gv5") +region = Rect2(303, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kicyq"] +atlas = ExtResource("1_m2gv5") +region = Rect2(202, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lche6"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y35xs"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aru4r"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyoqt"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an3m7"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8df3v"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afx4j"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udcfg"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po43r"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vhvg"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73rsf"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ds5t"] +atlas = ExtResource("1_m2gv5") +region = Rect2(101, 0, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymekv"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 891, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4bjh"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 810, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8fve"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 729, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6scs"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 648, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beh67"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 567, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehwbr"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 486, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_722n5"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 405, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g2ft"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 324, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np75m"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 243, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3eql"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 162, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xi6w"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 81, 100, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hnx6"] +atlas = ExtResource("1_m2gv5") +region = Rect2(0, 0, 100, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2mr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db3xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m17sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0k8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4sch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgu81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeeha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6f5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4chv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmsa6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_danof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tqjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub1cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sm7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujwoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfg2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6pvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttqq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laqky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6kyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptmwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6snf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oubuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdp5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gypgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anoy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tjmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nlsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6krn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uoi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ejy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a41ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xsls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyocl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgb5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rjte") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g33mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwmyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsrdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s5yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oph3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1otia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ar1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8qhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y87mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d44cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xyvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6lc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qx3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk3eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu2ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uai2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiktc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgd6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04q1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4e7r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sivie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uq5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74h1u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kicyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lche6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y35xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aru4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyoqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an3m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8df3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afx4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udcfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po43r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vhvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73rsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ds5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymekv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4bjh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8fve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6scs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beh67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehwbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_722n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g2ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np75m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3eql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xi6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hnx6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac02.tres new file mode 100644 index 0000000..b058040 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f3_zodiac02.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://c16asqc1cbdxh"] + +[ext_resource type="Texture2D" uid="uid://b11s6mnvfkekw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png" id="1_7wc5s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj4nq"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haacq"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6phhv"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6edh"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj3g4"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c71u"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jv27"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anbak"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l38ve"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg20s"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv5bq"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htwxh"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr20s"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw47p"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwxno"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7dcm"] +atlas = ExtResource("1_7wc5s") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihnjc"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxm61"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cobo"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx51m"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slhg8"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtjwx"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mv7b"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtw2i"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii1hg"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl5d8"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yubdg"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wutn6"] +atlas = ExtResource("1_7wc5s") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuq30"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aab2w"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3d07"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqm2f"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g65nj"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euwcm"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40a8q"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kgm1"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biiu3"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6eyk"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0s38"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kyvn"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6few"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irh5r"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axbr2"] +atlas = ExtResource("1_7wc5s") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp5ei"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwclm"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfewm"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir4a2"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2gia"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skp4m"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3ba"] +atlas = ExtResource("1_7wc5s") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eelxy"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mit27"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xd5l"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41878"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7tw"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv5am"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rocfv"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajvvw"] +atlas = ExtResource("1_7wc5s") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it1g5"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auhdq"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeobi"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ev1"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3sbr"] +atlas = ExtResource("1_7wc5s") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klm6w"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxy4x"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht6wg"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f83xl"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3qrd"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie4ay"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfcvs"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7fos"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32whb"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnpqn"] +atlas = ExtResource("1_7wc5s") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b72oj"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bark3"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ebov"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmef"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqegb"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iux6k"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxo67"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7fby"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00h3p"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2efn"] +atlas = ExtResource("1_7wc5s") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj4nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haacq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6phhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6edh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj3g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c71u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jv27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anbak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l38ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg20s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv5bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htwxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr20s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw47p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwxno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7dcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihnjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxm61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cobo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx51m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slhg8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtjwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mv7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtw2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii1hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl5d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yubdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wutn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuq30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aab2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3d07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqm2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g65nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euwcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40a8q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kgm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biiu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6eyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0s38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kyvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6few") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irh5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axbr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp5ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwclm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfewm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir4a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2gia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skp4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no3ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eelxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mit27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xd5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7tw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv5am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rocfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajvvw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_it1g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auhdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeobi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ev1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3sbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klm6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxy4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht6wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f83xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3qrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie4ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfcvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7fos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32whb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnpqn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b72oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bark3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ebov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqegb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iux6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxo67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7fby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00h3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2efn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_3rdgeneral.tres new file mode 100644 index 0000000..13fb0c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_3rdgeneral.tres @@ -0,0 +1,882 @@ +[gd_resource type="SpriteFrames" load_steps=120 format=3 uid="uid://cnus8shq8hiqf"] + +[ext_resource type="Texture2D" uid="uid://bqmkst3ladndd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png" id="1_488ce"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dats7"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oky41"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfxrv"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kplbi"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smwho"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1xw4"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajiao"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmsmy"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui336"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7drsm"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwoks"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrv5j"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs5kp"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd88v"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tvnd"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uphle"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhvvo"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sllka"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tolne"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itfxg"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krpke"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cifgb"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxk6e"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb878"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1edhe"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvk0r"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjkpp"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdqjm"] +atlas = ExtResource("1_488ce") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45n40"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo0p4"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ho5"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmt42"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfe1l"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaljf"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo0n1"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c58a"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6vno"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_756v3"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w67bp"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulvxq"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6leg"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evbew"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f82mn"] +atlas = ExtResource("1_488ce") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4eks"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig6ij"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohtlw"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ldrf"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcffn"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlauu"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfhr0"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3clyg"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nuxp"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox022"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5d7p"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ui02"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saskq"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo8u2"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uewe4"] +atlas = ExtResource("1_488ce") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxlw0"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_221cn"] +atlas = ExtResource("1_488ce") +region = Rect2(917, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3pgp"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c7ms"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_femm2"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymahv"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm1xb"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qhnp"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbr4w"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7jcu"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gycmk"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7t4h"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bw7f"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp8wt"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waosa"] +atlas = ExtResource("1_488ce") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1usq0"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ank67"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwms2"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roogi"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tls0l"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmew8"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weoa4"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj156"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5u4i"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3g3u"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep4yj"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaspu"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22moo"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44lnq"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfaqh"] +atlas = ExtResource("1_488ce") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a85e8"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p1ja"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17xf3"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao8p3"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5tgl"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnjr2"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmfgd"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu234"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7ygg"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbmjx"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpgbf"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hj5u"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7t3c"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmb1e"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt1wl"] +atlas = ExtResource("1_488ce") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_davj8"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23njh"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31vhb"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e5qe"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrayy"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3mte"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqyyv"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdvvd"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4aa7"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckmko"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78qve"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lax0"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pks7k"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1shpp"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd2vl"] +atlas = ExtResource("1_488ce") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dats7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oky41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfxrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kplbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smwho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1xw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajiao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmsmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui336") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7drsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwoks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrv5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs5kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd88v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tvnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uphle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhvvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sllka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tolne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itfxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krpke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cifgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxk6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1edhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvk0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjkpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdqjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45n40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo0p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ho5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmt42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfe1l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaljf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo0n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c58a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6vno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_756v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w67bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulvxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6leg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evbew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f82mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4eks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig6ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohtlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ldrf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcffn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlauu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfhr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3clyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nuxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox022") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5d7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ui02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saskq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo8u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uewe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxlw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_221cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3pgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c7ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_femm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymahv") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm1xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qhnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbr4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7jcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gycmk") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7t4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bw7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp8wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waosa") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1usq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ank67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwms2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roogi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tls0l") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmew8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weoa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj156") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5u4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3g3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep4yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaspu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22moo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44lnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfaqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a85e8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p1ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17xf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao8p3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5tgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnjr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmfgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu234") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7ygg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbmjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpgbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hj5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7t3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmb1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt1wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_davj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23njh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31vhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e5qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrayy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3mte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqyyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdvvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4aa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckmko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78qve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lax0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pks7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1shpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd2vl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abomination.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abomination.tres new file mode 100644 index 0000000..e452253 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abomination.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://eigtt8pgxe1g"] + +[ext_resource type="Texture2D" uid="uid://d4hjbeqfnns5d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png" id="1_v64cw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvddv"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81wr1"] +atlas = ExtResource("1_v64cw") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6rxc"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf1c3"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cki1b"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjcox"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ej2d"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0xas"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lonjr"] +atlas = ExtResource("1_v64cw") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxl3q"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od575"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvvd"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg1iu"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4har"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqs0s"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jh0w"] +atlas = ExtResource("1_v64cw") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsuqo"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u2c8"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j8oc"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ahy"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kehhc"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob3b5"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lslrb"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt72v"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbepo"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s8d4"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxhyo"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj4hh"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxj6s"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl562"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8esvk"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56hjt"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2ig5"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu5ya"] +atlas = ExtResource("1_v64cw") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmv5f"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iuj8"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rarb3"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7s0t"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq36q"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqxul"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6g8t"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okgnq"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm18i"] +atlas = ExtResource("1_v64cw") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr2gw"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vawm"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h0fy"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjrc6"] +atlas = ExtResource("1_v64cw") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06tsw"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4seyb"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ps4f"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x5u1"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71tga"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1gxg"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uesun"] +atlas = ExtResource("1_v64cw") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6oup"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcm81"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfvpf"] +atlas = ExtResource("1_v64cw") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w81q"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilvm2"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dowvy"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na5us"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac010"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo43r"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfpiv"] +atlas = ExtResource("1_v64cw") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5te4"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsdpq"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks2he"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urnsd"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqica"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gghc"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ail5g"] +atlas = ExtResource("1_v64cw") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsty7"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru0s6"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkds6"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxs6o"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiqnq"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa5lk"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3p5q"] +atlas = ExtResource("1_v64cw") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvddv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81wr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6rxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf1c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cki1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjcox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ej2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0xas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lonjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxl3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od575") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg1iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4har") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqs0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jh0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsuqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u2c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j8oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ahy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kehhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob3b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lslrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt72v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbepo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s8d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxhyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj4hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxj6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl562") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8esvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56hjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2ig5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu5ya") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmv5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iuj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rarb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7s0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq36q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqxul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6g8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okgnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm18i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr2gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vawm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h0fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjrc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06tsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4seyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ps4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x5u1") +}], +"loop": true, +"name": &"death2", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_71tga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1gxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uesun") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6oup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcm81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfvpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w81q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilvm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dowvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na5us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac010") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo43r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfpiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5te4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsdpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks2he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urnsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqica") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gghc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ail5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsty7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru0s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkds6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxs6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiqnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa5lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3p5q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abyssiansentinel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abyssiansentinel.tres new file mode 100644 index 0000000..ffac805 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_abyssiansentinel.tres @@ -0,0 +1,778 @@ +[gd_resource type="SpriteFrames" load_steps=108 format=3 uid="uid://chk0rhbl2s4ns"] + +[ext_resource type="Texture2D" uid="uid://dmqv1pbkrksrg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png" id="1_a34px"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynqr7"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qho2s"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxfhp"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll2cv"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7l73"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ywr3"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuncj"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3oof"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncy3u"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3d3"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0mci"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttyni"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62m34"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dox6b"] +atlas = ExtResource("1_a34px") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4knst"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtcng"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubr5u"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmatf"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi7qj"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qyev"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cje8x"] +atlas = ExtResource("1_a34px") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l8pk"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6j6c"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uafpb"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83m51"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4gvr"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dwqc"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waa38"] +atlas = ExtResource("1_a34px") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ep3j"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jioqv"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no0rv"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bug2"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoi31"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kctnm"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft1ls"] +atlas = ExtResource("1_a34px") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f0w1"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc5c5"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhyre"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sn4i"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_823uf"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2olu"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opkv7"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02nbm"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itfqw"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2eg6"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyadd"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42k81"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf58k"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avf8r"] +atlas = ExtResource("1_a34px") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vmx1"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwqnj"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckuux"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv5pd"] +atlas = ExtResource("1_a34px") +region = Rect2(1834, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xl0j"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imsaq"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la6fy"] +atlas = ExtResource("1_a34px") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c7sb"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e4k0"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vimny"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieaf6"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj3j2"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4f4u"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdakw"] +atlas = ExtResource("1_a34px") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaudd"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm066"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33tmd"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqg3s"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8t2f"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuqh1"] +atlas = ExtResource("1_a34px") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dc3"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oi4m"] +atlas = ExtResource("1_a34px") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd78f"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qurox"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5tnb"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66we8"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeuec"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38k84"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iice1"] +atlas = ExtResource("1_a34px") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_equcd"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf2l0"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru78d"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pogm"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh6bh"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu3ob"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxyqi"] +atlas = ExtResource("1_a34px") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lepf"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlg1m"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7qta"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ovxt"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85cfw"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84s2k"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqrrr"] +atlas = ExtResource("1_a34px") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyvhh"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfx6q"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb51w"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egxet"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nawa"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgw8t"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrq8v"] +atlas = ExtResource("1_a34px") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh0jt"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxoe2"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2am0v"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qym8a"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsgvs"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w37h"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp1e8"] +atlas = ExtResource("1_a34px") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynqr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qho2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxfhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll2cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7l73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ywr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuncj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3oof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncy3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0mci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttyni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62m34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dox6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4knst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtcng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubr5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmatf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi7qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qyev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cje8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l8pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6j6c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uafpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83m51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4gvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dwqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waa38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ep3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jioqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no0rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bug2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoi31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kctnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft1ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f0w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc5c5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhyre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sn4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_823uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2olu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opkv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02nbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itfqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2eg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyadd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42k81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf58k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avf8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vmx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwqnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckuux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv5pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xl0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imsaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la6fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c7sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e4k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vimny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieaf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj3j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4f4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdakw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaudd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm066") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33tmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqg3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8t2f") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuqh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oi4m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd78f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qurox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5tnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66we8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeuec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38k84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iice1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_equcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf2l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru78d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pogm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh6bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu3ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxyqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lepf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlg1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7qta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ovxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85cfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84s2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqrrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyvhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfx6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb51w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egxet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nawa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgw8t") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrq8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh0jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxoe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2am0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qym8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsgvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w37h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp1e8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneral.tres new file mode 100644 index 0000000..1fad740 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneral.tres @@ -0,0 +1,819 @@ +[gd_resource type="SpriteFrames" load_steps=111 format=3 uid="uid://mox24e6reka4"] + +[ext_resource type="Texture2D" uid="uid://bjvcxnrh1csjf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png" id="1_2r7ke"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n84f"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn0rg"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unrs6"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoq6k"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjh2w"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuopa"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn07a"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emx1b"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bog4j"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0v8a"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gvfr"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we8si"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq7pi"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pn1f"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8xks"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdjxm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no5dk"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4uw3"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7ovb"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcblu"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juhi4"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ebj"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfcam"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvj42"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlkds"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_630vp"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aypgb"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wyek"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7vea"] +atlas = ExtResource("1_2r7ke") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edxau"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olknm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r50jl"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x3uj"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nwql"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8ycu"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu5xd"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5640k"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gmss"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqoau"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfnmm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl4hg"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gt0f"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp4is"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65k3g"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hucmu"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7elp"] +atlas = ExtResource("1_2r7ke") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsmch"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_416hb"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evmsh"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgu50"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wucfo"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tegq"] +atlas = ExtResource("1_2r7ke") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t4tq"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2kty"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30kjx"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haru2"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1noaj"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdrm6"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms0nl"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yoyj"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_401pi"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2qxi"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibv66"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkfpr"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uawiq"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uvk6"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffslw"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lum3"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvhla"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sbqa"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptufc"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t84s"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mi0j"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m4vu"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiasm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8mqh"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nem7q"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjqo4"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1ojj"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6y85"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pye56"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al2j2"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovwtm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mhda"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igcrq"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m8o1"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkana"] +atlas = ExtResource("1_2r7ke") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwy2w"] +atlas = ExtResource("1_2r7ke") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vutg"] +atlas = ExtResource("1_2r7ke") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcg5x"] +atlas = ExtResource("1_2r7ke") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhsgm"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5nau"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2brp"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mopyh"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc44v"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjrtd"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3tns"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ff0u"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e02p"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr0ty"] +atlas = ExtResource("1_2r7ke") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itbhg"] +atlas = ExtResource("1_2r7ke") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k33yq"] +atlas = ExtResource("1_2r7ke") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nopmv"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nia8d"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1pj3"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5cjl"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pb7c"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hijj4"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q7lk"] +atlas = ExtResource("1_2r7ke") +region = Rect2(786, 1048, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n84f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn0rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unrs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoq6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjh2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuopa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn07a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emx1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bog4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0v8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gvfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we8si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq7pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pn1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8xks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdjxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no5dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4uw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7ovb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcblu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juhi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ebj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfcam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvj42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlkds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_630vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aypgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wyek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7vea") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_edxau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olknm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r50jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x3uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nwql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8ycu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu5xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5640k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gmss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqoau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfnmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl4hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gt0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp4is") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_65k3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hucmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7elp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsmch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_416hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evmsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgu50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wucfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tegq") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t4tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2kty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30kjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haru2") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1noaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdrm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms0nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yoyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_401pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2qxi") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibv66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkfpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uawiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uvk6") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffslw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lum3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvhla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sbqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptufc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t84s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mi0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m4vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiasm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8mqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nem7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjqo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1ojj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6y85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pye56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al2j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovwtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mhda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igcrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m8o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkana") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwy2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vutg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcg5x") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhsgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5nau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2brp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mopyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc44v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjrtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3tns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ff0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e02p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr0ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itbhg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k33yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nopmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nia8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1pj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5cjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pb7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hijj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q7lk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneraltier2.tres new file mode 100644 index 0000000..9ee1614 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_altgeneraltier2.tres @@ -0,0 +1,805 @@ +[gd_resource type="SpriteFrames" load_steps=109 format=3 uid="uid://bywmqkhjcimi"] + +[ext_resource type="Texture2D" uid="uid://cu7klt6hjjni" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png" id="1_qg21j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0tbk"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpqt0"] +atlas = ExtResource("1_qg21j") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q418d"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cx0j"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0a65"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72kxe"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0su72"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a51pp"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wslye"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxgis"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrsqw"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nq1b"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ija8"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qgtg"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db8wn"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snhhl"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72tno"] +atlas = ExtResource("1_qg21j") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5bf6"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w01ne"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6vvb"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmhd2"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7kyr"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adwle"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq414"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4f6l"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntyib"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7m0f"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b826w"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrgkf"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbppy"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faty0"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxaoc"] +atlas = ExtResource("1_qg21j") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iahn"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q31rl"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8yhv"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eje54"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dltxy"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kiil"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qqjv"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c0p6"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oti8d"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvfa4"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tobqg"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swbh1"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlsgc"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w48d7"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0mwm"] +atlas = ExtResource("1_qg21j") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odahm"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5oa7"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfef"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6dpy"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wsou"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i523j"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2aep"] +atlas = ExtResource("1_qg21j") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaor2"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lsoq"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl0mf"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj4ub"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tk23"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkxql"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q4ug"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlko5"] +atlas = ExtResource("1_qg21j") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta3oi"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbsmj"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ithlk"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at646"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq5ic"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a53w"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs5he"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sme6h"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p78gn"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgupb"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhvnd"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wcia"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_474ba"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxlwm"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo8bd"] +atlas = ExtResource("1_qg21j") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxm1j"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsy14"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jthq0"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t3hc"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jue6f"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3kv3"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k55l"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk0s2"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qam5o"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlwod"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7728h"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2xyq"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bjrv"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk0yo"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp14h"] +atlas = ExtResource("1_qg21j") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sir8"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ma3"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62t3w"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ielm"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5s0t"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi31j"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1q4k"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41gug"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0s21"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t0tj"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voexi"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ce2"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m6hb"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_temhb"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeaoe"] +atlas = ExtResource("1_qg21j") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0tbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpqt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q418d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cx0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0a65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72kxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0su72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a51pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wslye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxgis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrsqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nq1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ija8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qgtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db8wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snhhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72tno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5bf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w01ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6vvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmhd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7kyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adwle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq414") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4f6l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntyib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7m0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b826w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrgkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbppy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faty0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxaoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q31rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8yhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eje54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dltxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kiil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qqjv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c0p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oti8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvfa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tobqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swbh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlsgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w48d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0mwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odahm") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5oa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6dpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wsou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i523j") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2aep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaor2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lsoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl0mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj4ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tk23") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkxql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q4ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlko5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta3oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbsmj") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ithlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at646") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq5ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a53w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs5he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sme6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p78gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgupb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhvnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wcia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_474ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxlwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo8bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxm1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsy14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jthq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t3hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jue6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3kv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k55l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk0s2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qam5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlwod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7728h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2xyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bjrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk0yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp14h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sir8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ma3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62t3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ielm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5s0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi31j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1q4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41gug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0s21") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t0tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voexi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ce2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m6hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_temhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeaoe") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arachne.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arachne.tres new file mode 100644 index 0000000..6519b31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arachne.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://cukchg3pwlots"] + +[ext_resource type="Texture2D" uid="uid://dknq40vkv3ldo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png" id="1_n6prv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysaoo"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugr2y"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkhbn"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nsqf"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vju3"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h87cx"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnssi"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grd08"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hidkk"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0l0v"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ecao"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_issgh"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llwum"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbloj"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2hbs"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fihbf"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2hal"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7th0"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34dl8"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80sjy"] +atlas = ExtResource("1_n6prv") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oejvu"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43dhy"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2ow2"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p6n4"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fqe1"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wyxw"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0alh"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87e02"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8lal"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rca3d"] +atlas = ExtResource("1_n6prv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q2r7"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipwsj"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejfhs"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ylr7"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu02a"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia8xe"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfl62"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5lsc"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x80d8"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnudn"] +atlas = ExtResource("1_n6prv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s88al"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk2q0"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffcdh"] +atlas = ExtResource("1_n6prv") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1be3w"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6e1t"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od27e"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6orc0"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyj6o"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyfoe"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1npwi"] +atlas = ExtResource("1_n6prv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrb6f"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rep38"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cadd"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybg38"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lynk1"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8bh7"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tahn6"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4pe0"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly7ii"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2562k"] +atlas = ExtResource("1_n6prv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c078"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ddli"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cht11"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql1q2"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82q52"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id4kg"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr4hl"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tonku"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k26rl"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpmqi"] +atlas = ExtResource("1_n6prv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_novmv"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i7gu"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a62n2"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrynk"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbkcp"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16c73"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewt3w"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or4pr"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p6wn"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhgsl"] +atlas = ExtResource("1_n6prv") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysaoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugr2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkhbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nsqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vju3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h87cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnssi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grd08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hidkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0l0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ecao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_issgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llwum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbloj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2hbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fihbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2hal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7th0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34dl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80sjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oejvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43dhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2ow2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p6n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fqe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wyxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0alh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87e02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8lal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rca3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q2r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipwsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejfhs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ylr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu02a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia8xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfl62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5lsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x80d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnudn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s88al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk2q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffcdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1be3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6e1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od27e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6orc0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyj6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyfoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1npwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrb6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rep38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cadd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybg38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lynk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8bh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tahn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4pe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly7ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2562k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c078") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ddli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cht11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql1q2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_82q52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id4kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr4hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tonku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k26rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpmqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_novmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i7gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a62n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrynk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbkcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16c73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewt3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or4pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p6wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhgsl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arcanedevourer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arcanedevourer.tres new file mode 100644 index 0000000..10f6b23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_arcanedevourer.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://buwr0fsiqblue"] + +[ext_resource type="Texture2D" uid="uid://bajfpsv44q331" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png" id="1_gxt60"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln8kn"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i81cd"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haqwo"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjy7d"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l6i8"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuw8v"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6dpp"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htuvh"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5o27"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ighc"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1tik"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vh38"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw0mq"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h65ni"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6ktx"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oirkp"] +atlas = ExtResource("1_gxt60") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl4ud"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x72qw"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfccq"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6n7n"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lwjc"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uipa"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdbns"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfh5c"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvr05"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f31o3"] +atlas = ExtResource("1_gxt60") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amkok"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ootnn"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io686"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yhi4"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qhmt"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i82ia"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxfa5"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14cax"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjdvp"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmclh"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etxxm"] +atlas = ExtResource("1_gxt60") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yix3m"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7ao4"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erbj8"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfs8k"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1grnb"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltc18"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjwgy"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tb8k"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxf6i"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq3gp"] +atlas = ExtResource("1_gxt60") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1tbh"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4bqw"] +atlas = ExtResource("1_gxt60") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gatv"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cul1"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvu64"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3akj"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16m5t"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdqem"] +atlas = ExtResource("1_gxt60") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5244a"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3hq0"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk064"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhi0r"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1huxb"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pfcs"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh6wg"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyo5w"] +atlas = ExtResource("1_gxt60") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mseas"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fxw8"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnx41"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxrs4"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_astm4"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0gp1"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_755ke"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai34q"] +atlas = ExtResource("1_gxt60") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln8kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i81cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haqwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjy7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l6i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuw8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6dpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htuvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5o27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ighc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1tik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vh38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw0mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h65ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6ktx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oirkp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl4ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x72qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfccq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6n7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lwjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uipa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdbns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfh5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvr05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f31o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amkok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ootnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io686") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yhi4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qhmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i82ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxfa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14cax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjdvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmclh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etxxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yix3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7ao4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erbj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfs8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1grnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltc18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjwgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tb8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxf6i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq3gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1tbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4bqw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gatv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cul1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvu64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3akj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16m5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdqem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5244a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3hq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk064") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhi0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1huxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pfcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh6wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyo5w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mseas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fxw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnx41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxrs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_astm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0gp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_755ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai34q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_blacksolus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_blacksolus.tres new file mode 100644 index 0000000..9fce9c2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_blacksolus.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://ceb47o6yqgfg5"] + +[ext_resource type="Texture2D" uid="uid://bbw8h2jv1red" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png" id="1_ofmrp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yuan"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7wur"] +atlas = ExtResource("1_ofmrp") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgsrf"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lsk6"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfsvj"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j500s"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttjeu"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhrua"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gclks"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihede"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4spe"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wvj0"] +atlas = ExtResource("1_ofmrp") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4pox"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8vtf"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyuwv"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xbko"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq4m2"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qluva"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho6cd"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eim15"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp537"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76s65"] +atlas = ExtResource("1_ofmrp") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl61d"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hnrg"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s74p"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24iey"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5mru"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nce3"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbp11"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an62b"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n75po"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqfb8"] +atlas = ExtResource("1_ofmrp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8h2v"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g4lm"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jypi"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lohju"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyhu1"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwlpb"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wey4m"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynae1"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fvw4"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnidf"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35qhm"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h7ij"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luxty"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6xd0"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6djn0"] +atlas = ExtResource("1_ofmrp") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hin7o"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks5xv"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqdy4"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooddu"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybkwe"] +atlas = ExtResource("1_ofmrp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlh7a"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qu7b"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs3wi"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw74b"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ommo6"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lwgs"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5nlf"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3le8"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw4te"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v04bi"] +atlas = ExtResource("1_ofmrp") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2j7e"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwngm"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r0yt"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnho3"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqwt6"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyv8o"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn0tf"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0etx"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tyim"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ec8b"] +atlas = ExtResource("1_ofmrp") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqunk"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjoul"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r0mm"] +atlas = ExtResource("1_ofmrp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdj1x"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpnos"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3423"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v106o"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh6lr"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yn51"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uhwh"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfpjc"] +atlas = ExtResource("1_ofmrp") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orokh"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7cyg"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixl5x"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpugn"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_661bu"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5akwx"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42h8y"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ka0"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5u25"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r15q7"] +atlas = ExtResource("1_ofmrp") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yuan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7wur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgsrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lsk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfsvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j500s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttjeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhrua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gclks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihede") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4spe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wvj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4pox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8vtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyuwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xbko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq4m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qluva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho6cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eim15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp537") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76s65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl61d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hnrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s74p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24iey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5mru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbp11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an62b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n75po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqfb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8h2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g4lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jypi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lohju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyhu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwlpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wey4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynae1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fvw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnidf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35qhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h7ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luxty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6xd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6djn0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hin7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks5xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqdy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooddu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybkwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlh7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qu7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs3wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw74b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ommo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lwgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5nlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3le8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw4te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v04bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2j7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwngm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r0yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnho3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqwt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyv8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn0tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0etx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tyim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ec8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqunk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjoul") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r0mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdj1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpnos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3423") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v106o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh6lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yn51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uhwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfpjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orokh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7cyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixl5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpugn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_661bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5akwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42h8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ka0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5u25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r15q7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodbaronette.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodbaronette.tres new file mode 100644 index 0000000..f82b45e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodbaronette.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://c2mdmpffixyax"] + +[ext_resource type="Texture2D" uid="uid://bbkogelxsaqai" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png" id="1_3hmwl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o825m"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq8pv"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyy7r"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qcln"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gds0i"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wseow"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef8gd"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au3dy"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u0hn"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58xxi"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk7he"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rye6l"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wex6w"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbnj4"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_245vu"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qbtt"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rt2q"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggklw"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cydw"] +atlas = ExtResource("1_3hmwl") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d81hp"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8bp0"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc0l1"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glfpc"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hps2s"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrmil"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64wyl"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ajfi"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by0yp"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxskc"] +atlas = ExtResource("1_3hmwl") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eva2"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx8vg"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqxoc"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maexd"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nkjv"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsefy"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5igd7"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5g3e"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d287"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwo6k"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc07s"] +atlas = ExtResource("1_3hmwl") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl12q"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uj1k"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if2yq"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6dos"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gria"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5krl"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81w6v"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c66at"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya520"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1k44"] +atlas = ExtResource("1_3hmwl") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvb16"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kewbt"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m458m"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxjgr"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvjju"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlgfa"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj1ae"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eygyo"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37hh1"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8u0"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ykw8"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiwt3"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dap7"] +atlas = ExtResource("1_3hmwl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oksqk"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qe3p"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka7vn"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w278r"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tih3x"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u137d"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4ykf"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi4h1"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d4jx"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qneng"] +atlas = ExtResource("1_3hmwl") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbras"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcgn1"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eofsp"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1gs"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxuni"] +atlas = ExtResource("1_3hmwl") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h66ox"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncqlu"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho4xx"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug3am"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q06lj"] +atlas = ExtResource("1_3hmwl") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghb0d"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j2ul"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khv5b"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mms2k"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2p07"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h01ce"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2uc3"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdj4t"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v6fn"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5hpl"] +atlas = ExtResource("1_3hmwl") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3xa1"] +atlas = ExtResource("1_3hmwl") +region = Rect2(202, 909, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o825m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq8pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyy7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qcln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gds0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wseow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef8gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au3dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u0hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58xxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk7he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rye6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wex6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbnj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_245vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qbtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rt2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggklw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cydw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d81hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8bp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc0l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glfpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hps2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrmil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64wyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ajfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by0yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxskc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eva2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx8vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqxoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maexd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nkjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsefy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5igd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5g3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d287") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwo6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc07s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl12q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uj1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if2yq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6dos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gria") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5krl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81w6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c66at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya520") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1k44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvb16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kewbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m458m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxjgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvjju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlgfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj1ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eygyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37hh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ykw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiwt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dap7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oksqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qe3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka7vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w278r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tih3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u137d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4ykf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi4h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d4jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qneng") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbras") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcgn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eofsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxuni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h66ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncqlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho4xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug3am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q06lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghb0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j2ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khv5b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mms2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2p07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h01ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2uc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdj4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v6fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5hpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3xa1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodmoon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodmoon.tres new file mode 100644 index 0000000..8a40cf1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_bloodmoon.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://c2k4ockfx0auu"] + +[ext_resource type="Texture2D" uid="uid://cu5pp03hhjlfa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png" id="1_fl07f"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8nm8"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynkjl"] +atlas = ExtResource("1_fl07f") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cck7"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aypuh"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kki0g"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjagk"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pd1y"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3khk"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5lyw"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onsjg"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uplxq"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hciu5"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhuay"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h1rs"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6kuq"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y72h"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dswyy"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lgfs"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2njyx"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki5jc"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj4qk"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4hu5"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6t22"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k1me"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gapx"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7omh3"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33gfh"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwjrj"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wjgy"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpoq7"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_816mw"] +atlas = ExtResource("1_fl07f") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcrlr"] +atlas = ExtResource("1_fl07f") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byfed"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay5sd"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocixq"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1f8c"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci54w"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kaee"] +atlas = ExtResource("1_fl07f") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr8vs"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6jwm"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wrc4"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvi1s"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5vy0"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny8ch"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87t7l"] +atlas = ExtResource("1_fl07f") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwhlp"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flx7s"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7gsg"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpamx"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da5g2"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rcoh"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsght"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j52o"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuweg"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0vay"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0g8x"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1wbw"] +atlas = ExtResource("1_fl07f") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8nm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynkjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cck7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aypuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kki0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjagk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pd1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3khk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5lyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onsjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uplxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hciu5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhuay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h1rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6kuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y72h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dswyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lgfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2njyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki5jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj4qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4hu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6t22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k1me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gapx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7omh3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33gfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwjrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wjgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpoq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_816mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcrlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byfed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay5sd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocixq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1f8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci54w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kaee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr8vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6jwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wrc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvi1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5vy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny8ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87t7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwhlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flx7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7gsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpamx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_da5g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rcoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsght") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j52o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuweg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0vay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0g8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1wbw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildcommon.tres new file mode 100644 index 0000000..204190d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildcommon.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://dx5f3lr33q8bj"] + +[ext_resource type="Texture2D" uid="uid://cg4l04w5b2car" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png" id="1_57ntk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xgwo"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkpvv"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37was"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt2tb"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4i7y"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e0mw"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icfwn"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rh8g"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnsbb"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3wq8"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvr8r"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwifh"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lof6"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kvr6"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1128"] +atlas = ExtResource("1_57ntk") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b8q0"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u86o"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb2p7"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ypx0"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb7i2"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyinh"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqsoh"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a3as"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfnkf"] +atlas = ExtResource("1_57ntk") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3yt5"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwco7"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50b8p"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqcq"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8t3b"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjlkk"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl2vj"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxfv0"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7do0"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc055"] +atlas = ExtResource("1_57ntk") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af56e"] +atlas = ExtResource("1_57ntk") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcchp"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhxgb"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nwgk"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56m84"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6enw6"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtgy6"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82xhv"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mymt2"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_730cs"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilrpx"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ffj"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_she4x"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25iyl"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ax6h"] +atlas = ExtResource("1_57ntk") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uujyf"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf5cg"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afhyq"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b5y3"] +atlas = ExtResource("1_57ntk") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21s5m"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcjmn"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpdfi"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rskr"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkkyv"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ghw"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lpfi"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r4cd"] +atlas = ExtResource("1_57ntk") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3bkk"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq0l7"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8ehr"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br6g6"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53kor"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wj3k"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkekb"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2egxv"] +atlas = ExtResource("1_57ntk") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xgwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkpvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37was") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt2tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4i7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e0mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icfwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rh8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnsbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3wq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvr8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lof6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kvr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1128") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b8q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u86o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb2p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ypx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb7i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyinh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqsoh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a3as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfnkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3yt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwco7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50b8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8t3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjlkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl2vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxfv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7do0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc055") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af56e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcchp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhxgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nwgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56m84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6enw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtgy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82xhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mymt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_730cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilrpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ffj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_she4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25iyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ax6h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uujyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf5cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afhyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b5y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21s5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcjmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpdfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rskr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkkyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ghw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lpfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r4cd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3bkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq0l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8ehr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br6g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53kor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wj3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkekb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2egxv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildlegendary.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildlegendary.tres new file mode 100644 index 0000000..cc04247 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildlegendary.tres @@ -0,0 +1,528 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://b42lqlwv33u7j"] + +[ext_resource type="Texture2D" uid="uid://nyb1i4gjbyd1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png" id="1_trms3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gponn"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7jlc"] +atlas = ExtResource("1_trms3") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wr46"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2srh"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk48j"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2o1d"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytp8g"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1ucp"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guij7"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f44yk"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vht5a"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdni0"] +atlas = ExtResource("1_trms3") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0isyo"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h1nf"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mv2p"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwo5l"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edg7x"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efd6t"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi7wn"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idgd8"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e8gu"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxf13"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y16pi"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa2eu"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ereel"] +atlas = ExtResource("1_trms3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61c7m"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4sur"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d16yn"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6tmc"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwmpj"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xsx4"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynurf"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_318su"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkse3"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bymre"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5u6k"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uesmf"] +atlas = ExtResource("1_trms3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfx1t"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajskf"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksaue"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6tdk"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqrqm"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krfxw"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cttib"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvn0r"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s781c"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g524v"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heqyg"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5jh0"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owb0b"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y27lk"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb8d0"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rri7b"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0ubc"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfj2c"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk1nv"] +atlas = ExtResource("1_trms3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o53bb"] +atlas = ExtResource("1_trms3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1a8"] +atlas = ExtResource("1_trms3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0a8t"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixcgl"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o34wu"] +atlas = ExtResource("1_trms3") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw47i"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sldmw"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_177lb"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmppm"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg5wb"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6fox"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5qbp"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5h61"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyrqv"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvf8u"] +atlas = ExtResource("1_trms3") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gponn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7jlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wr46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2srh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk48j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2o1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytp8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1ucp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guij7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f44yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vht5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdni0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0isyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h1nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mv2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwo5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edg7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efd6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi7wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idgd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e8gu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxf13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y16pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa2eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ereel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61c7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4sur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d16yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6tmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwmpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xsx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynurf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_318su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkse3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bymre") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5u6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uesmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfx1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajskf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksaue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6tdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqrqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krfxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cttib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvn0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s781c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g524v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heqyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5jh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owb0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y27lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb8d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rri7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0ubc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfj2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk1nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o53bb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0a8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixcgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o34wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw47i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sldmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_177lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmppm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg5wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6fox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5qbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5h61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyrqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvf8u") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildminion.tres new file mode 100644 index 0000000..b1d0c71 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://7ta48sxk6oqm"] + +[ext_resource type="Texture2D" uid="uid://b6r8sp53b4pmj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png" id="1_6ss26"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr72m"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncob7"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62p6j"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk8yb"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxq72"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuaqq"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b4k8"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yg0r"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uv2g"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2kl4"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebbbd"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2vgc"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24w1i"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flqkl"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gsmj"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs4m4"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaetv"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjc5a"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc25n"] +atlas = ExtResource("1_6ss26") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yoah"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npifn"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7iox"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkb6i"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfqup"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3w72"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6s6b"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqlli"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s21c"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52qn0"] +atlas = ExtResource("1_6ss26") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joe21"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx1hf"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq5hv"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgqjd"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt3m6"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvsie"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugtaq"] +atlas = ExtResource("1_6ss26") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an1cp"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub17w"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmr04"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq0lh"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jng6r"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnbom"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohh8b"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncgnw"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhfau"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drv6s"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_315oy"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk576"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6bm1"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lu4b"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l36ry"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38t2e"] +atlas = ExtResource("1_6ss26") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fyhh"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nv8c"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_add77"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn014"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcyfn"] +atlas = ExtResource("1_6ss26") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poewb"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rii7p"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thb2r"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stq0u"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6trf7"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gdbl"] +atlas = ExtResource("1_6ss26") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f12w"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr7g6"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6kdl"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4js6"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqa5o"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71ser"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oiiw"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slkxf"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o7la"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bd4u"] +atlas = ExtResource("1_6ss26") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr72m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncob7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62p6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk8yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuaqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b4k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yg0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uv2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2kl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebbbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2vgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24w1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flqkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gsmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs4m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaetv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjc5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc25n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yoah") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_npifn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7iox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkb6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfqup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3w72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6s6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqlli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s21c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52qn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joe21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx1hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq5hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgqjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt3m6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvsie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugtaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an1cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub17w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmr04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq0lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jng6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnbom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohh8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncgnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhfau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drv6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_315oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk576") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6bm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lu4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l36ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38t2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fyhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nv8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_add77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn014") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcyfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poewb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rii7p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_thb2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stq0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6trf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gdbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f12w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr7g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6kdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4js6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqa5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71ser") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oiiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slkxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o7la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bd4u") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_crawler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_crawler.tres new file mode 100644 index 0000000..6542c7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_crawler.tres @@ -0,0 +1,407 @@ +[gd_resource type="SpriteFrames" load_steps=55 format=3 uid="uid://jok8ckpyh4tn"] + +[ext_resource type="Texture2D" uid="uid://b6js386aotl3o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png" id="1_8oe1u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xscaa"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8t5l"] +atlas = ExtResource("1_8oe1u") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kuxb"] +atlas = ExtResource("1_8oe1u") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0raal"] +atlas = ExtResource("1_8oe1u") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2hj5"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iii2r"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d6n7"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yitdr"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nysv5"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkiok"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pabm"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpkx0"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61513"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06foi"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ehh"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nee2e"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngp5i"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mls8i"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8isgt"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4riqr"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4tyn"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dpap"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi0qc"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5oxv"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiux2"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fu6n"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lma2w"] +atlas = ExtResource("1_8oe1u") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ngnx"] +atlas = ExtResource("1_8oe1u") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6p57"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lna1"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agd4o"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjalh"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6d0q"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phbep"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7pjw"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32nf0"] +atlas = ExtResource("1_8oe1u") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y723b"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krkgc"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8a8d"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ox35"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oesy"] +atlas = ExtResource("1_8oe1u") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rxia"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdumb"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p865q"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4laak"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la2xt"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ejtk"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1fw8"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awxxd"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pearc"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xleq4"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4dk5"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3vc2"] +atlas = ExtResource("1_8oe1u") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xscaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8t5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kuxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0raal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2hj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iii2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d6n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yitdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nysv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkiok") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pabm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpkx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61513") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06foi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ehh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nee2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngp5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mls8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8isgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4riqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4tyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dpap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi0qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5oxv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiux2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fu6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lma2w") +}], +"loop": true, +"name": &"damage", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ngnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6p57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lna1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agd4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjalh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6d0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phbep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7pjw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_32nf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y723b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krkgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8a8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ox35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oesy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rxia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdumb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p865q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4laak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la2xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ejtk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1fw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awxxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pearc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xleq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4dk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3vc2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepmangler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepmangler.tres new file mode 100644 index 0000000..7b674d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepmangler.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://0v7mo4hrbnua"] + +[ext_resource type="Texture2D" uid="uid://07ktj8gbal5t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png" id="1_l1nbf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_htf83"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvgfq"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qosu0"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u2pv"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k24hb"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h62rk"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ck8"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hmxd"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqlfw"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4fls"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgewd"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a47bn"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pxn5"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0troa"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guibn"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55haa"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdco8"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52vmx"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbyv7"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_302a2"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8534b"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gfxw"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e2fs"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg3fm"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qmpj"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vjkv"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ids4l"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op3h4"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eonfe"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ntth"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqm1o"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxs7a"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj82g"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3pll"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j15j5"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ees0c"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21exk"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiwy1"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wb6x"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2er0j"] +atlas = ExtResource("1_l1nbf") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqr1b"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exps0"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcxl5"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwc7a"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lwhf"] +atlas = ExtResource("1_l1nbf") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkb1r"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pml0y"] +atlas = ExtResource("1_l1nbf") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6hrd"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piq7c"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwgx7"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyond"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fskfm"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvgrh"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml85l"] +atlas = ExtResource("1_l1nbf") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv6xd"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghcbw"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hfdt"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2whrc"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsj4l"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmuyc"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j65xf"] +atlas = ExtResource("1_l1nbf") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqv8a"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdb00"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw375"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0roxc"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj8ar"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj4gh"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilikv"] +atlas = ExtResource("1_l1nbf") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt4pn"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leksl"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fymr"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj2r0"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iavev"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g22lb"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42kh5"] +atlas = ExtResource("1_l1nbf") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25lmj"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n3ng"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usn7r"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsuq2"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqufq"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh7ru"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lojkb"] +atlas = ExtResource("1_l1nbf") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txew7"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxqoo"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sij0j"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k31q2"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1yyq"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gelmh"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pqox"] +atlas = ExtResource("1_l1nbf") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_htf83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvgfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qosu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u2pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k24hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h62rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ck8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hmxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqlfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4fls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgewd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a47bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pxn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0troa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guibn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55haa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdco8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52vmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbyv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_302a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8534b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gfxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg3fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qmpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vjkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ids4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op3h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eonfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ntth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqm1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxs7a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj82g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3pll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j15j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ees0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21exk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiwy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wb6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2er0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqr1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exps0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcxl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwc7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lwhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkb1r") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pml0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6hrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piq7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwgx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyond") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fskfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvgrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml85l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv6xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghcbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hfdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2whrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsj4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmuyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j65xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqv8a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdb00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw375") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0roxc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj8ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj4gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilikv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt4pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leksl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fymr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj2r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iavev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g22lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42kh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25lmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n3ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usn7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsuq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqufq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh7ru") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lojkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txew7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxqoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sij0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k31q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1yyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gelmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pqox") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepydemon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepydemon.tres new file mode 100644 index 0000000..f3980f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_creepydemon.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://c835v0cdg6k53"] + +[ext_resource type="Texture2D" uid="uid://cdp1lqfwo1ju7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png" id="1_adbof"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kv8j"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3l7e"] +atlas = ExtResource("1_adbof") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6yel"] +atlas = ExtResource("1_adbof") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38a1s"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nous3"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yd2l"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2pky"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5xqg"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1s5k"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkdq3"] +atlas = ExtResource("1_adbof") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evr40"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nobt5"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5airn"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll0xm"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osrj3"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxe0n"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc2n7"] +atlas = ExtResource("1_adbof") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y745"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7mpj"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_345cf"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gprt"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vrht"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8v68"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1jkw"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m73k4"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16xr1"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqgeb"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83nn5"] +atlas = ExtResource("1_adbof") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e57a4"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnf41"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijl1w"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evd7i"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3fax"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihtj2"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lccm6"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov2us"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoip4"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rex5j"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nmmr"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk514"] +atlas = ExtResource("1_adbof") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_676dh"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aaid"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50mlb"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlxjd"] +atlas = ExtResource("1_adbof") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frcmb"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jd8l"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l472"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p63qa"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14cx2"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ritev"] +atlas = ExtResource("1_adbof") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajbqa"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68los"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiuih"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeur4"] +atlas = ExtResource("1_adbof") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wckpp"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6sdk"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tic86"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8rbl"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svfr3"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fso2l"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mphxr"] +atlas = ExtResource("1_adbof") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0atc3"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viklo"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5co2s"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqu5a"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0es0r"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ika0t"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fttja"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8orxp"] +atlas = ExtResource("1_adbof") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udkg2"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s6v7"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8784n"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvmrc"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceq52"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tv4g"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldawh"] +atlas = ExtResource("1_adbof") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kv8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3l7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6yel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38a1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nous3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yd2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2pky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5xqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1s5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkdq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evr40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nobt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5airn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll0xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osrj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxe0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc2n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y745") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7mpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_345cf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gprt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vrht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8v68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1jkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m73k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16xr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqgeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83nn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e57a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnf41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijl1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evd7i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3fax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihtj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lccm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov2us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoip4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rex5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nmmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk514") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_676dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aaid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50mlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlxjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frcmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jd8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l472") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p63qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14cx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ritev") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajbqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68los") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiuih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wckpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6sdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tic86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8rbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svfr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fso2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mphxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0atc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viklo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5co2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqu5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0es0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ika0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fttja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8orxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udkg2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s6v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8784n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvmrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceq52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tv4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldawh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemondeep.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemondeep.tres new file mode 100644 index 0000000..495bdab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemondeep.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://cy4wga27oqf6y"] + +[ext_resource type="Texture2D" uid="uid://gyfggnis78un" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png" id="1_j2s0l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxwwe"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww7j2"] +atlas = ExtResource("1_j2s0l") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urum0"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nik0u"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brcbq"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn37f"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udnad"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q28dh"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_770d0"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl7ml"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46m4q"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8tgt"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae6jw"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqbqr"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt40n"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i3r6"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyylh"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhjgy"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucr77"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0hjl"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxrhk"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obgyh"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duras"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdwkp"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4whmp"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od3sf"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyril"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6ikl"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdru6"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33l7d"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3012y"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i5qq"] +atlas = ExtResource("1_j2s0l") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyn8p"] +atlas = ExtResource("1_j2s0l") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13ii2"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6qfe"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je45w"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_satti"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61h5q"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bta82"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heqrw"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1jsl"] +atlas = ExtResource("1_j2s0l") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urjg1"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c2ay"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf1dp"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxc08"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nykhw"] +atlas = ExtResource("1_j2s0l") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi8j1"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_118qh"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2or01"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fex3d"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvkfo"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eck1k"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxpg7"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rymq"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xndgk"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy0o6"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r86v"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltr0l"] +atlas = ExtResource("1_j2s0l") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxwwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww7j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urum0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nik0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brcbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn37f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udnad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q28dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_770d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl7ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46m4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8tgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae6jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqbqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt40n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i3r6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyylh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhjgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucr77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0hjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxrhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obgyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duras") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdwkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4whmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od3sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyril") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6ikl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdru6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33l7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3012y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i5qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyn8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13ii2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6qfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je45w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_satti") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_61h5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bta82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heqrw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1jsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urjg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c2ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf1dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxc08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nykhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi8j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_118qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2or01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fex3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvkfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eck1k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxpg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rymq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xndgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy0o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r86v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltr0l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemongate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemongate.tres new file mode 100644 index 0000000..1807102 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemongate.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://srmoo27sfx55"] + +[ext_resource type="Texture2D" uid="uid://cmkv8xalg7wgi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png" id="1_dohsx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3wvh"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxllk"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfre5"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adptf"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3efd"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtxt6"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iteoe"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88gac"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiguq"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pfyb"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8bd"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mrng"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1iw3"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upwop"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaatc"] +atlas = ExtResource("1_dohsx") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35382"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwytg"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrm6o"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jynk3"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5122b"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcyhg"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lhpq"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqjm6"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btgg8"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6fil"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o0ob"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv1j3"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elvv8"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvw15"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtq1s"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36uji"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhjjx"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlesl"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcgrj"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42lfk"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t27s"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7qdl"] +atlas = ExtResource("1_dohsx") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph72e"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y610a"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujtl4"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yolev"] +atlas = ExtResource("1_dohsx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4prsc"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpoxt"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ose8o"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0cg2"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blhl6"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0akhh"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pi2x"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frdmc"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ni3i"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xthd"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whrof"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr854"] +atlas = ExtResource("1_dohsx") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpij0"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwgns"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmxkm"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5whg5"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjlgj"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx860"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h2pj"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv1sb"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfelu"] +atlas = ExtResource("1_dohsx") +region = Rect2(162, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3wvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxllk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfre5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adptf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3efd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtxt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iteoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88gac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiguq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pfyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mrng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1iw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upwop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaatc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35382") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwytg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrm6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jynk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5122b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcyhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lhpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqjm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btgg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6fil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o0ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv1j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elvv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvw15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtq1s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_36uji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhjjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlesl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcgrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42lfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t27s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7qdl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph72e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y610a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujtl4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yolev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4prsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpoxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ose8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0cg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blhl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0akhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pi2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frdmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ni3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xthd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whrof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr854") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpij0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwgns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmxkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5whg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjlgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx860") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h2pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv1sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfelu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemonvoid.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemonvoid.tres new file mode 100644 index 0000000..fa0dffc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_daemonvoid.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://bmbsr6plohwig"] + +[ext_resource type="Texture2D" uid="uid://c63hf4vi5sxfm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png" id="1_36ld5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6hmy"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3seoa"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ibj"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32gte"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0clte"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f65kf"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2lxh"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a1y6"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ca7v"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qagu4"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r3ch"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ni2"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odmyn"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmtnf"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oatug"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsw5h"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26j1u"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rouh"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f8yf"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaxqg"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kml2h"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okjw5"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gck1s"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i8tl"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cln74"] +atlas = ExtResource("1_36ld5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2nv7"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khtig"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ho4"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o60k3"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73bmg"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hiyb"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2soc"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtge0"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac0ib"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx3u2"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u28ta"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcqtv"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lof6p"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x30rp"] +atlas = ExtResource("1_36ld5") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mgs3"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6bsu"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh22i"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1xes"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rclhj"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0qht"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlgfq"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jxkw"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhv1d"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6rev"] +atlas = ExtResource("1_36ld5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_habiv"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_416ng"] +atlas = ExtResource("1_36ld5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7335"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5ypl"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiiyf"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o448g"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b257x"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn6qm"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oir8"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g3si"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avw21"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clewy"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocb8b"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w63w8"] +atlas = ExtResource("1_36ld5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpq5a"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10y4u"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqhli"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvwte"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph4an"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8b5p"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7b7v"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rafep"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmwcb"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_limx4"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geyip"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsvyv"] +atlas = ExtResource("1_36ld5") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6hmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3seoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ibj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32gte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0clte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f65kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2lxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a1y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ca7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qagu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r3ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odmyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmtnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oatug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsw5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26j1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rouh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f8yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaxqg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kml2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okjw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gck1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i8tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cln74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2nv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khtig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ho4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o60k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73bmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hiyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2soc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtge0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac0ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx3u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u28ta") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcqtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lof6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x30rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mgs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6bsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh22i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1xes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rclhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0qht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlgfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jxkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhv1d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6rev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_habiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_416ng") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7335") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5ypl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiiyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o448g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b257x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn6qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oir8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g3si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avw21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clewy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocb8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w63w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpq5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10y4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqhli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvwte") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph4an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8b5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7b7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rafep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmwcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_limx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geyip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsvyv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_darkspine.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_darkspine.tres new file mode 100644 index 0000000..2185c35 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_darkspine.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://dndyjvqyqeljt"] + +[ext_resource type="Texture2D" uid="uid://bdyyhxwid16me" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png" id="1_swb2n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_giex1"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkcu0"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qono1"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1icn"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3raid"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueqsv"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2nio"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcic0"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ckhs"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yode1"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_refpd"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gts4"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph88l"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6av8o"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnp75"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46b8p"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3fx8"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aifb1"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60gor"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hbgw"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xybis"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2utsr"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72nld"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f62x2"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8yl0"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt4n0"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gebji"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r2k2"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aluij"] +atlas = ExtResource("1_swb2n") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd3y0"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mhj5"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbslc"] +atlas = ExtResource("1_swb2n") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2ple"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmjfb"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gunv1"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ura"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfogc"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjx5a"] +atlas = ExtResource("1_swb2n") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hjeq"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccln4"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwxnd"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q33hu"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k61qo"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5801"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6ma4"] +atlas = ExtResource("1_swb2n") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxsxo"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr5dg"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeho5"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g6sg"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q1a5"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvw6t"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne85q"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udhi8"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51qot"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc4hq"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uf3f"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13fm2"] +atlas = ExtResource("1_swb2n") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_giex1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkcu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qono1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1icn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3raid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueqsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2nio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcic0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ckhs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yode1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_refpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gts4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph88l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6av8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnp75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46b8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3fx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aifb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60gor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hbgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xybis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2utsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72nld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f62x2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8yl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt4n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gebji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r2k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aluij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd3y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mhj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbslc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2ple") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmjfb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gunv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ura") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfogc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjx5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hjeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccln4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwxnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q33hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k61qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5801") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6ma4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxsxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr5dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeho5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g6sg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q1a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvw6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne85q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udhi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51qot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc4hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uf3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13fm2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_deathknell.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_deathknell.tres new file mode 100644 index 0000000..1b796b6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_deathknell.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://cj1vrgia6uq55"] + +[ext_resource type="Texture2D" uid="uid://di754ybmmakxi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png" id="1_2ub7j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ao8x"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n860f"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxtow"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8yf7"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h0pn"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4li0"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo2w0"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2qnr"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndbdc"] +atlas = ExtResource("1_2ub7j") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxs2g"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_721yw"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fx2r"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62kww"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n22gf"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ndib"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc1a3"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr8kp"] +atlas = ExtResource("1_2ub7j") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2wwn"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plyv"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvuio"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3krs"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv381"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcse8"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6xxh"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i78j"] +atlas = ExtResource("1_2ub7j") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ejg"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iis6"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1jes"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwpsc"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxtsc"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gmdo"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p4kr"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf0du"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0y1h"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jef3o"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe5wo"] +atlas = ExtResource("1_2ub7j") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ynoe"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ukw"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21hn1"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goppr"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22sd8"] +atlas = ExtResource("1_2ub7j") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbooq"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exypo"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tlc4"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsvm0"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb37y"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67jw3"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se00c"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e66qk"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1vv3"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64eif"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypkqv"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r1rp"] +atlas = ExtResource("1_2ub7j") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p44tt"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jthcb"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05ady"] +atlas = ExtResource("1_2ub7j") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nc8o"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf3lc"] +atlas = ExtResource("1_2ub7j") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tofdt"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hahg"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4gy1"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hcbp"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12wy0"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qixna"] +atlas = ExtResource("1_2ub7j") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oigud"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccqfi"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kttv0"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7106f"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no3wu"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg24g"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvqyn"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q8xi"] +atlas = ExtResource("1_2ub7j") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2iiw"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et3le"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pji5y"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fah3s"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d3hh"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn1n8"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfc62"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qnor"] +atlas = ExtResource("1_2ub7j") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ao8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n860f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxtow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8yf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h0pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4li0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo2w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2qnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndbdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxs2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_721yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fx2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62kww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n22gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ndib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc1a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr8kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2wwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvuio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3krs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv381") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcse8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6xxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i78j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ejg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iis6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1jes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwpsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxtsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gmdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p4kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf0du") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0y1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jef3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe5wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ynoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ukw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21hn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goppr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_22sd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbooq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exypo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tlc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsvm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb37y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67jw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se00c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e66qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1vv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64eif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypkqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r1rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p44tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jthcb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_05ady") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nc8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf3lc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tofdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hahg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4gy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hcbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12wy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qixna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oigud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccqfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kttv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7106f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no3wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg24g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvqyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q8xi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2iiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et3le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pji5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fah3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d3hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn1n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfc62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qnor") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_demonofeternity.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_demonofeternity.tres new file mode 100644 index 0000000..22a90cb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_demonofeternity.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://b3ja5phrerch5"] + +[ext_resource type="Texture2D" uid="uid://c8wijmq1fc5ki" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png" id="1_3ew6u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl38t"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5h5e"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5adj2"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjif1"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1acsx"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khbq4"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0135j"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxndm"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkxw2"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xwv2"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj7i1"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_053np"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s7jm"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40tdd"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bay5n"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy4ci"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1akm"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si3ky"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wkdi"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2vnp"] +atlas = ExtResource("1_3ew6u") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t84fe"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6uk4"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggmym"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuuwv"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x76s"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53ery"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o53p3"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7pvd"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybkxl"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8bd6"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkltp"] +atlas = ExtResource("1_3ew6u") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20pkl"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2hni"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr4x3"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im87v"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3rvh"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pol6y"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2rkm"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8raxw"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgp3m"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kspcn"] +atlas = ExtResource("1_3ew6u") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgavs"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3448"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0byq"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmi1y"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrh0w"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcteq"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8saw3"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onasb"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8ybl"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgojr"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73cnd"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n3ce"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk4d5"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sjjq"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csla8"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuu0a"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylds5"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w87st"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk7q3"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3k70"] +atlas = ExtResource("1_3ew6u") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w867"] +atlas = ExtResource("1_3ew6u") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n2mn"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emq3g"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl1me"] +atlas = ExtResource("1_3ew6u") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jia1q"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtwe5"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiva1"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kyuo"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg3ad"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lg5y"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux6ln"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fksqu"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01y6o"] +atlas = ExtResource("1_3ew6u") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a6e7"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlqe0"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb66x"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u3g0"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjdnr"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u823m"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14gv4"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udcha"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqdvl"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emjpb"] +atlas = ExtResource("1_3ew6u") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snm1v"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8itq"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj1bw"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86ts6"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gf4t"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ela3x"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h5vg"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm2ni"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0wir"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh287"] +atlas = ExtResource("1_3ew6u") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl38t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5h5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5adj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjif1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1acsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khbq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0135j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxndm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkxw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xwv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj7i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_053np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s7jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40tdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bay5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy4ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1akm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si3ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wkdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2vnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t84fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6uk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggmym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuuwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x76s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53ery") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o53p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7pvd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybkxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8bd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkltp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20pkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2hni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr4x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im87v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3rvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pol6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2rkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8raxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgp3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kspcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgavs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3448") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0byq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmi1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrh0w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcteq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8saw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onasb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8ybl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgojr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73cnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n3ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk4d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sjjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csla8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuu0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylds5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w87st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk7q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3k70") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w867") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n2mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emq3g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl1me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jia1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtwe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiva1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kyuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg3ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lg5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux6ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fksqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01y6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a6e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlqe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb66x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u3g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjdnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u823m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14gv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udcha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqdvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emjpb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_snm1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8itq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj1bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86ts6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gf4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ela3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h5vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm2ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0wir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh287") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_desolater.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_desolater.tres new file mode 100644 index 0000000..c90c91f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_desolater.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://cjq1ylajqpeor"] + +[ext_resource type="Texture2D" uid="uid://kxpyjxoy5jlf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png" id="1_k20ne"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_awg17"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26dr0"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci8hd"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uru7"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdg2w"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1ago"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya42t"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbmec"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sibek"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3xll"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axi50"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_104ly"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yajfv"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1u0k"] +atlas = ExtResource("1_k20ne") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32mqc"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upv32"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfj72"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skaue"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03lqc"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf7fa"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh7ma"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m66es"] +atlas = ExtResource("1_k20ne") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0tk2"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qdqe"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbday"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjq2p"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jav5k"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20een"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nr7x"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xon7"] +atlas = ExtResource("1_k20ne") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mb6g"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk5la"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctmjg"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt0kn"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c371y"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5phr"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uitp5"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u4ir"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8ouj"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hnah"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgov4"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hahm"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t0q6"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wwld"] +atlas = ExtResource("1_k20ne") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upxcs"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oebee"] +atlas = ExtResource("1_k20ne") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qmoa"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx5px"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1vjj"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifewr"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42wi0"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quqcs"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q78qk"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw4sx"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mf41"] +atlas = ExtResource("1_k20ne") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn3hj"] +atlas = ExtResource("1_k20ne") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0svft"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u02jb"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc6l4"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q04g7"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpuy6"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiw6y"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlyd6"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb8gg"] +atlas = ExtResource("1_k20ne") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haji7"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faudk"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmoho"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs7fj"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45qod"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sns52"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7neo"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ie48"] +atlas = ExtResource("1_k20ne") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqhl0"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36tnv"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mis4"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edejd"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwi4n"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugorp"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqekf"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27a80"] +atlas = ExtResource("1_k20ne") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j22pj"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kds4x"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfo8i"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnea0"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htoev"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7spmc"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rmxc"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c3l3"] +atlas = ExtResource("1_k20ne") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_awg17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26dr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci8hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uru7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdg2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1ago") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya42t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbmec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sibek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3xll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axi50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_104ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yajfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1u0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32mqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upv32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfj72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skaue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03lqc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf7fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh7ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m66es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0tk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qdqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbday") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjq2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jav5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20een") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nr7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xon7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mb6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctmjg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt0kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c371y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5phr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uitp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u4ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8ouj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hnah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgov4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hahm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t0q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wwld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upxcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oebee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qmoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx5px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1vjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifewr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42wi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quqcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q78qk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw4sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mf41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn3hj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0svft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u02jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc6l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q04g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpuy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiw6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlyd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb8gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haji7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faudk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmoho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs7fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45qod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sns52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7neo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ie48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqhl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36tnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mis4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edejd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwi4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugorp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqekf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27a80") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j22pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kds4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfo8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnea0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htoev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7spmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rmxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c3l3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_engulfingshadow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_engulfingshadow.tres new file mode 100644 index 0000000..8fe208a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_engulfingshadow.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://b25jd6m6wj2lt"] + +[ext_resource type="Texture2D" uid="uid://d1g3h6du76i72" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png" id="1_6y5xk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjqo0"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4suw7"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cim8"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkg6i"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4ur4"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac83f"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n021y"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxw16"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i54pj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otepm"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxpjn"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k048a"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6furh"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b33a"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrsol"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar27l"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1njt"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxfiq"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0t12"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk4ak"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa4b4"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpyny"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b66af"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw3uo"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btt5b"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg6yw"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4du7e"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhr8b"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsn2"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu8cj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebjlt"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt78o"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n2g3"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r1wk"] +atlas = ExtResource("1_6y5xk") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o035"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj56u"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x80pr"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4igy2"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr0rm"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ga85"] +atlas = ExtResource("1_6y5xk") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj8oc"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mtdj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr418"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gadwj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5mty"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohraq"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs0xj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mc6s"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8e5p"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws1yj"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_761lf"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwp5w"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3awn"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mxyq"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5j5f"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4quk"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0yuy"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8owwe"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1gdt"] +atlas = ExtResource("1_6y5xk") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjqo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4suw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cim8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkg6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4ur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac83f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n021y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxw16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i54pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otepm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxpjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k048a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6furh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b33a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrsol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar27l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1njt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxfiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0t12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk4ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa4b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpyny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b66af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw3uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btt5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg6yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4du7e") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhr8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu8cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebjlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt78o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n2g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r1wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o035") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj56u") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x80pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4igy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr0rm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ga85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj8oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mtdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr418") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gadwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5mty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohraq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs0xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mc6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8e5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws1yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_761lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwp5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3awn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mxyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5j5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4quk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0yuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8owwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1gdt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_fallenaspect.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_fallenaspect.tres new file mode 100644 index 0000000..229b058 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_fallenaspect.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://dij227ijk7nyo"] + +[ext_resource type="Texture2D" uid="uid://bwj2m2l5rsvow" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png" id="1_imugj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvl43"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40y8s"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1g4f"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l67m"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjrmm"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8wks"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbmhr"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ggy0"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxas1"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58nlq"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qv8h"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkicn"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq22h"] +atlas = ExtResource("1_imugj") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbb4k"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj441"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxj8u"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6uha"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh0hi"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq3v6"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxyp4"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1geis"] +atlas = ExtResource("1_imugj") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky8bv"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_104xo"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxqut"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te6iu"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdngd"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plcul"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u7lo"] +atlas = ExtResource("1_imugj") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cneui"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr0b4"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad543"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7sg6"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ordkx"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qac1d"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr2qw"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8dqd"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4wts"] +atlas = ExtResource("1_imugj") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddl5v"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5pbk"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7oig"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pfg0"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ji2l"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arfro"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnrxo"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t55in"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr5fa"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w81gp"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enq7e"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ac3"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6kcn"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ef3n"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6mlw"] +atlas = ExtResource("1_imugj") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_613lh"] +atlas = ExtResource("1_imugj") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dankm"] +atlas = ExtResource("1_imugj") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4dhk"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b3oy"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbpex"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l760t"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3wb4"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy5xk"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj1u4"] +atlas = ExtResource("1_imugj") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwv4m"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s78ek"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80mwe"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0vff"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdktk"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bedri"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yta6t"] +atlas = ExtResource("1_imugj") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74fqq"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k20g"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vur2m"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqslt"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfka7"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0nqm"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk7hg"] +atlas = ExtResource("1_imugj") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvl43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40y8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1g4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l67m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjrmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8wks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbmhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ggy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxas1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58nlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qv8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkicn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq22h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbb4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj441") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxj8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6uha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh0hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq3v6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxyp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1geis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky8bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_104xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxqut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te6iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdngd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plcul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u7lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cneui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr0b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad543") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7sg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ordkx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qac1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr2qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8dqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4wts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddl5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5pbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7oig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pfg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ji2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arfro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnrxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t55in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr5fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w81gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enq7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ac3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6kcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ef3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6mlw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_613lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dankm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4dhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b3oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbpex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l760t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3wb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy5xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj1u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwv4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s78ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80mwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0vff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdktk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bedri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yta6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74fqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k20g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vur2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqslt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfka7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0nqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk7hg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_furosa.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_furosa.tres new file mode 100644 index 0000000..86c71ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_furosa.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://rr58mpq3uisq"] + +[ext_resource type="Texture2D" uid="uid://cj4ysmwjqylxn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png" id="1_vwukl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n12p4"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m515y"] +atlas = ExtResource("1_vwukl") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r86rt"] +atlas = ExtResource("1_vwukl") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4kf7"] +atlas = ExtResource("1_vwukl") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3xiv"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y038b"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gkr4"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj5ei"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ehal"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd8f1"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4nn8"] +atlas = ExtResource("1_vwukl") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xisr6"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w203c"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqfcn"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h058"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0riu"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev3pb"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_una1d"] +atlas = ExtResource("1_vwukl") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxac0"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xypqr"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vacka"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5uaq"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s3cq"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0irnx"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15tx6"] +atlas = ExtResource("1_vwukl") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qupn8"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf6d6"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwllg"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hftcw"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbcy3"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwtnx"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbbkm"] +atlas = ExtResource("1_vwukl") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4orbb"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxa5v"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvq0v"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgkg6"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmup7"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e82g"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p33wo"] +atlas = ExtResource("1_vwukl") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k4rb"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4e3"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smmw8"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2nte"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra7qg"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jfcs"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i51q5"] +atlas = ExtResource("1_vwukl") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6lmm"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xj2a"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mwsr"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0tl6"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3aty"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54bc7"] +atlas = ExtResource("1_vwukl") +region = Rect2(1834, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc8wh"] +atlas = ExtResource("1_vwukl") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7dau"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlp3r"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esvoj"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylhkm"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvudd"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygyl1"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhs3a"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v444g"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htpsu"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbsfw"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy7bv"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjdwj"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqtpi"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4153x"] +atlas = ExtResource("1_vwukl") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u2j0"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv36n"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg54t"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo7ie"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t7hq"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frhyx"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oplcw"] +atlas = ExtResource("1_vwukl") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpd5r"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gueu"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n75vs"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43adw"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2cby"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2sy3"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jjfm"] +atlas = ExtResource("1_vwukl") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a05w"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usexi"] +atlas = ExtResource("1_vwukl") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhpo8"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1it"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2irc"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at6hf"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeitd"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0p8a"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i62c4"] +atlas = ExtResource("1_vwukl") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0n0o"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slud2"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omcgq"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g5ya"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j35bg"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uixud"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swllt"] +atlas = ExtResource("1_vwukl") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cebyj"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01wgi"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaj0d"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwh4u"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tprxc"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjq16"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf4pq"] +atlas = ExtResource("1_vwukl") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n12p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m515y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r86rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4kf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3xiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y038b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gkr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj5ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ehal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd8f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4nn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xisr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w203c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqfcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h058") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0riu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev3pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_una1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxac0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xypqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vacka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5uaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s3cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0irnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15tx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qupn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf6d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwllg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hftcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbcy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwtnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbbkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4orbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxa5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvq0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgkg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmup7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e82g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p33wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k4rb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smmw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2nte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra7qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jfcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i51q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6lmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xj2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mwsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0tl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3aty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54bc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc8wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7dau") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlp3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esvoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylhkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvudd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygyl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhs3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v444g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htpsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbsfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy7bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjdwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqtpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4153x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u2j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv36n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg54t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo7ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t7hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frhyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oplcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpd5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gueu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n75vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43adw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2cby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2sy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jjfm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a05w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usexi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhpo8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2irc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at6hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeitd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0p8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i62c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0n0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slud2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omcgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g5ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j35bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uixud") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_swllt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cebyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01wgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaj0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwh4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tprxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjq16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf4pq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_general.tres new file mode 100644 index 0000000..51121be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_general.tres @@ -0,0 +1,651 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://boy44ej37t6ur"] + +[ext_resource type="Texture2D" uid="uid://boff7bseo21d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png" id="1_7mcye"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_63olu"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhrny"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to1rm"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edrm6"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm6b3"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku27i"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydk6b"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frd8q"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avhuw"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l26r"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hxxm"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lgla"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7gye"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cli26"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur0mv"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2kmi"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blil8"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hts3"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1tiy"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bixuy"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kgqf"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxx6u"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh53m"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgjxl"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kta4r"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mi6l"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oouk"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s8p6"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2pcl"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rdr6"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e82bd"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l7lx"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbbyl"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnq2l"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c00lw"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh31f"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4b2p"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o08sy"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hj4a"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ysu"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc6en"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tjuo"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywdip"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3606"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xx4m"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3xco"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgyo3"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx7op"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itwyw"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jvyp"] +atlas = ExtResource("1_7mcye") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnx6o"] +atlas = ExtResource("1_7mcye") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw0dt"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xxtg"] +atlas = ExtResource("1_7mcye") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0uwb"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krf51"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyxy3"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmxc3"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xy7a"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7pdv"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuyou"] +atlas = ExtResource("1_7mcye") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12k51"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb6qf"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkrsf"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85k35"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlq2n"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o607g"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2itm1"] +atlas = ExtResource("1_7mcye") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0ym5"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2jba"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj1xe"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnmyi"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2kmb"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7plc"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvlns"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwv5h"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk3gn"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a777d"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7aaa"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvpp3"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aegdn"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d013m"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me6nk"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc7mc"] +atlas = ExtResource("1_7mcye") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueddi"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uccsu"] +atlas = ExtResource("1_7mcye") +region = Rect2(0, 810, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_63olu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhrny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to1rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edrm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm6b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku27i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydk6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frd8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avhuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l26r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hxxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lgla") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7gye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cli26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur0mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2kmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blil8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hts3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1tiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bixuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kgqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxx6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh53m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgjxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kta4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mi6l") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oouk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s8p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2pcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rdr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e82bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l7lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbbyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnq2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c00lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh31f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4b2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o08sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hj4a") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ysu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc6en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tjuo") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywdip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3606") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xx4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3xco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx7op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itwyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jvyp") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnx6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw0dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xxtg") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0uwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krf51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyxy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmxc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xy7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7pdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuyou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12k51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb6qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkrsf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_85k35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlq2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o607g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2itm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0ym5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2jba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj1xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnmyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2kmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7plc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvlns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwv5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk3gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a777d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7aaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvpp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aegdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d013m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me6nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc7mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uccsu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gloomchaser.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gloomchaser.tres new file mode 100644 index 0000000..8a7497a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gloomchaser.tres @@ -0,0 +1,510 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://bm60nsjlnf562"] + +[ext_resource type="Texture2D" uid="uid://d5agb306xv44" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png" id="1_fc5mc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_irakd"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ptr"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7tjb"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baf7x"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31x2t"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwvhh"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qti8n"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4teq"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khek0"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6hke"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je02m"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvuqr"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrsil"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp8ah"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4c0l"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7ets"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf4qi"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udnj0"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2mqy"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26ct3"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51hqv"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iec5"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc5vb"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv2wx"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4hab"] +atlas = ExtResource("1_fc5mc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e62gv"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj8la"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr44v"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v71w3"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opb8p"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xstdl"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytg7r"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wom4n"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rcbj"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcqhw"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoxw1"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqs2d"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjek3"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giw7r"] +atlas = ExtResource("1_fc5mc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgfmk"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xdhx"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb4lk"] +atlas = ExtResource("1_fc5mc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs227"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sneqy"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25s3u"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lrw8"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhytp"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ycc3"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58oxh"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asqpc"] +atlas = ExtResource("1_fc5mc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j7t5"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 972, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67noo"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 989, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p40q"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 1006, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3rxg"] +atlas = ExtResource("1_fc5mc") +region = Rect2(17, 972, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qnbf"] +atlas = ExtResource("1_fc5mc") +region = Rect2(17, 989, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yomba"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh3jg"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuikh"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lgye"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wesng"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwkml"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v0vn"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxbue"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x2bi"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljejb"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orlqc"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykqqd"] +atlas = ExtResource("1_fc5mc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_irakd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ptr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7tjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baf7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31x2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwvhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qti8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4teq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khek0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6hke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je02m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvuqr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrsil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp8ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4c0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7ets") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf4qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udnj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2mqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26ct3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51hqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iec5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc5vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv2wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4hab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e62gv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj8la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr44v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v71w3") +}], +"loop": true, +"name": &"damage", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opb8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xstdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytg7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wom4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rcbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcqhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoxw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqs2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjek3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_giw7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgfmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xdhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb4lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs227") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sneqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25s3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lrw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhytp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ycc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58oxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asqpc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j7t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67noo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p40q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3rxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qnbf") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yomba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh3jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuikh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lgye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wesng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwkml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v0vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxbue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x2bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljejb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orlqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykqqd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gor.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gor.tres new file mode 100644 index 0000000..01504de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_gor.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://dlvbbtoksfhy3"] + +[ext_resource type="Texture2D" uid="uid://dv28g4lqlca2r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png" id="1_onbxt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2e5t"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ni5"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxtou"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jepmn"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n11l0"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnm4t"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7amy7"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yteoi"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhajg"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkaxo"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxr1p"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hslxo"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak4b5"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqtws"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1xxk"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc400"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l8ii"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b64r6"] +atlas = ExtResource("1_onbxt") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp4aq"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42meh"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xebi"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w1hd"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km884"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kca1"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkc3t"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jjqv"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ui6x"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb2ta"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkpms"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw03q"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhryv"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd6xp"] +atlas = ExtResource("1_onbxt") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n41o7"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j5y4"] +atlas = ExtResource("1_onbxt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auv2n"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n3qv"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1cqy"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqxhv"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c07xl"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kl38"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sff83"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y8vm"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn8fh"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byqsj"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8y5i"] +atlas = ExtResource("1_onbxt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fsay"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jktci"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wobmh"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oayc"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp43p"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qpa2"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so0mb"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vibg8"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fpki"] +atlas = ExtResource("1_onbxt") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7qy8"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w6b3"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8n21"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l50y"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpv01"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtnls"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wovl"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84a0k"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxksc"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6o8a"] +atlas = ExtResource("1_onbxt") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2e5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ni5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxtou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jepmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n11l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnm4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7amy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yteoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhajg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkaxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxr1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hslxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak4b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqtws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1xxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc400") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l8ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b64r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp4aq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42meh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xebi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w1hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km884") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kca1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkc3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jjqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ui6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb2ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkpms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw03q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhryv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd6xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n41o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j5y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auv2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n3qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1cqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqxhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c07xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kl38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sff83") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y8vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn8fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byqsj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8y5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fsay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jktci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wobmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oayc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp43p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qpa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so0mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vibg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fpki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7qy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w6b3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8n21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l50y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpv01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtnls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wovl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84a0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxksc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6o8a") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_grandmastervariax.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_grandmastervariax.tres new file mode 100644 index 0000000..7292c2c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_grandmastervariax.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://cannag31sshef"] + +[ext_resource type="Texture2D" uid="uid://dy28bwoe0wbwt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png" id="1_26q40"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3ydi"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n4h6"] +atlas = ExtResource("1_26q40") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_800ol"] +atlas = ExtResource("1_26q40") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bobf5"] +atlas = ExtResource("1_26q40") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m78v5"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqd26"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkv3l"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jofo"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t1x1"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dek07"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wike"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn6c0"] +atlas = ExtResource("1_26q40") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwfu7"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aoa5"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy1if"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahxqr"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3rne"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etqwn"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f680a"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cdqf"] +atlas = ExtResource("1_26q40") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emesu"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02pbx"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2sam"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v4hm"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_512bs"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0221e"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drxew"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyh7p"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssfr7"] +atlas = ExtResource("1_26q40") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4rnl"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqypa"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7iev"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sro6x"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj6wm"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2rhd"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mevab"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1dff"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnrjs"] +atlas = ExtResource("1_26q40") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahrbw"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5v0w"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ndoj"] +atlas = ExtResource("1_26q40") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el85k"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3irf"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kprfo"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdjkj"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6vuk"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k3vm"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ux0x"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us6qa"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvsyn"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl522"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3et7w"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3dj5"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8owi"] +atlas = ExtResource("1_26q40") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ul05"] +atlas = ExtResource("1_26q40") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nutq8"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1rwj"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhidl"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls7tf"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khc64"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lffy"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x4wr"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttojl"] +atlas = ExtResource("1_26q40") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5pus"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li83o"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sphp"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxuvs"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enepx"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6rh1"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrpe1"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulhqi"] +atlas = ExtResource("1_26q40") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4onh"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxn2o"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0i3l"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r28m"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8lnu"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c3x3"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u11yn"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o4l"] +atlas = ExtResource("1_26q40") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3ydi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n4h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_800ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bobf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m78v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqd26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkv3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jofo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t1x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dek07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wike") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn6c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwfu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aoa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy1if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahxqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3rne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etqwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f680a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cdqf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emesu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02pbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2sam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v4hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_512bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0221e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drxew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyh7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssfr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4rnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqypa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7iev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sro6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj6wm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2rhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mevab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1dff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnrjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahrbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5v0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ndoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el85k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3irf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kprfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdjkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6vuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k3vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ux0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us6qa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvsyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl522") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3et7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3dj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8owi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ul05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nutq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1rwj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhidl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls7tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khc64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lffy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x4wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttojl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5pus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li83o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sphp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxuvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enepx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6rh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrpe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulhqi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4onh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxn2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0i3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r28m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8lnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c3x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u11yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o4l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horror.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horror.tres new file mode 100644 index 0000000..33f43fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horror.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://c5dosej7q534v"] + +[ext_resource type="Texture2D" uid="uid://drbtdbrvxjipm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png" id="1_hyqiu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuoiy"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv6kw"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o54o2"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ds4s"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftq1g"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bxba"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xybft"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0fl2"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7gli"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8srp"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mwrm"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjar7"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2h2x"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biec6"] +atlas = ExtResource("1_hyqiu") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cg0q"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48i3t"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j54g"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxrp7"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om2g4"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikg66"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykmnl"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216rx"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7omg"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq823"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4mnl"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8sed"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21xfw"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxave"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpo20"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laix3"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_103nk"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwy1c"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k4qt"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ya7e"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkhlr"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63bgx"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul0wu"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmk2n"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dmid"] +atlas = ExtResource("1_hyqiu") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ig2n"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br4sr"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6jkp"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3afpk"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riyru"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on5db"] +atlas = ExtResource("1_hyqiu") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt7l7"] +atlas = ExtResource("1_hyqiu") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kq2j"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsag5"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejqd6"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83dd8"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0oi"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4kpu"] +atlas = ExtResource("1_hyqiu") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po5r6"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbqw2"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4qlt"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0o61"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko6k5"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcmq1"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0dsa"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48j73"] +atlas = ExtResource("1_hyqiu") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx2ni"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bv7x"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf1fe"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5tc7"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsd0k"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlb84"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iavel"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xm76"] +atlas = ExtResource("1_hyqiu") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuoiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv6kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o54o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ds4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftq1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bxba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xybft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0fl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7gli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8srp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mwrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2h2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biec6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cg0q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_48i3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j54g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxrp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om2g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikg66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykmnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7omg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq823") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4mnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8sed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21xfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxave") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpo20") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_laix3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_103nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwy1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k4qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ya7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkhlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63bgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul0wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmk2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dmid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ig2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br4sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6jkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3afpk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_riyru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on5db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt7l7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kq2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsag5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejqd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83dd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4kpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po5r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbqw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4qlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0o61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko6k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcmq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0dsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48j73") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx2ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bv7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf1fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5tc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsd0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlb84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iavel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xm76") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horrorburster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horrorburster.tres new file mode 100644 index 0000000..82a695d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_horrorburster.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cfqlfbyjva6k7"] + +[ext_resource type="Texture2D" uid="uid://u2hpdphh7ee" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png" id="1_o0o4f"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3sva"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc2fa"] +atlas = ExtResource("1_o0o4f") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdgm4"] +atlas = ExtResource("1_o0o4f") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q740e"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xu1x"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqsc5"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gxv1"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k5nj"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qmt3"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfsxm"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukxjq"] +atlas = ExtResource("1_o0o4f") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyqe1"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fe7y"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qgkn"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4iot"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqjfh"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5gac"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ytkg"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xraq7"] +atlas = ExtResource("1_o0o4f") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lajps"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djnpp"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujbrq"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmh33"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oluxw"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfa2n"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ugqh"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4of3d"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1rhb"] +atlas = ExtResource("1_o0o4f") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neqxa"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g80tc"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03oy7"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6mgl"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpobh"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bvak"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0c3s"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at3ei"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ilvl"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltfnf"] +atlas = ExtResource("1_o0o4f") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3633j"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woqaf"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc63v"] +atlas = ExtResource("1_o0o4f") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp8hq"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etxjx"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8uq4"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvp8r"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spfgw"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmph1"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knl3v"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4atil"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3wc0"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj7t5"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3foq"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slgyv"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdxow"] +atlas = ExtResource("1_o0o4f") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3pcj"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlbtc"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm3tw"] +atlas = ExtResource("1_o0o4f") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j4wv"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6bl4"] +atlas = ExtResource("1_o0o4f") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dst3f"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qrw7"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plah7"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6fnm"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s2bs"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqn7e"] +atlas = ExtResource("1_o0o4f") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ye3p"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmxd1"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vamwa"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swf6g"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs7th"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqg6"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u7if"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vatcl"] +atlas = ExtResource("1_o0o4f") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md26m"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_har3m"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waqoq"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57h6t"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sowgg"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl3f8"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocair"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lry71"] +atlas = ExtResource("1_o0o4f") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3sva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc2fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdgm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q740e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xu1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqsc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gxv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k5nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qmt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfsxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukxjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyqe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fe7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qgkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4iot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqjfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5gac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ytkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xraq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lajps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djnpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujbrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmh33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oluxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfa2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ugqh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4of3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1rhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neqxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g80tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03oy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6mgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpobh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bvak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0c3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at3ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ilvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltfnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3633j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woqaf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc63v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp8hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etxjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8uq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvp8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spfgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmph1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knl3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4atil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3wc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj7t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3foq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slgyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdxow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3pcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlbtc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm3tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6bl4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dst3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qrw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plah7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6fnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s2bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqn7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ye3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vamwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swf6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs7th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u7if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vatcl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_md26m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_har3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waqoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57h6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sowgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl3f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocair") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lry71") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_husk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_husk.tres new file mode 100644 index 0000000..a4dbf28 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_husk.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://dqefd1npwbfyt"] + +[ext_resource type="Texture2D" uid="uid://botdjq16ofss1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png" id="1_hyfs2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh0vt"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2xwh"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52f8c"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8tqm"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aempw"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdg3j"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0682n"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in6ah"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuu22"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgs43"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cwb6"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k87k"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86j2n"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxj8n"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jdwh"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5du1i"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwiun"] +atlas = ExtResource("1_hyfs2") +region = Rect2(906, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl00q"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvxu7"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nke86"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsabs"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcf6b"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jgtm"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rip3"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri8b3"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbb7b"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vx6f"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rjqa"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g06n"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awa3h"] +atlas = ExtResource("1_hyfs2") +region = Rect2(302, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lobmm"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07jdy"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvdg6"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpt5l"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpgvu"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g48pv"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxlsr"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu7qv"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcxiy"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5fyf"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi68o"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8025"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3wm7"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52jir"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gloqr"] +atlas = ExtResource("1_hyfs2") +region = Rect2(151, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c315d"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d0ck"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kex5x"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62gax"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m0hj"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nusvf"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd1wx"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw0cv"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b54a"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6d1j"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxgw1"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ibmn"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ofw"] +atlas = ExtResource("1_hyfs2") +region = Rect2(0, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfjq0"] +atlas = ExtResource("1_hyfs2") +region = Rect2(453, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrycc"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk1s5"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqk6y"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tli7l"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pj8x"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xatfb"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8syf"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6f08"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvprb"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 604, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwswb"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 453, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q63o3"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 302, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d51el"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 151, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihu7j"] +atlas = ExtResource("1_hyfs2") +region = Rect2(755, 0, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2d5c"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1812, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iyeg"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1661, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hrwe"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1510, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r4ct"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1359, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e4q6"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1208, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6u2d"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 1057, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukyhf"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 906, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc7x6"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 755, 150, 150) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai1cr"] +atlas = ExtResource("1_hyfs2") +region = Rect2(604, 604, 150, 150) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh0vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2xwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52f8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8tqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aempw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdg3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0682n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in6ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuu22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgs43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cwb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k87k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86j2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxj8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jdwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5du1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwiun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl00q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvxu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nke86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsabs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcf6b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jgtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rip3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri8b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbb7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vx6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rjqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g06n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awa3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lobmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07jdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvdg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpt5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpgvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g48pv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxlsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu7qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcxiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5fyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi68o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8025") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3wm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52jir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gloqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c315d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d0ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kex5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62gax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m0hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nusvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd1wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw0cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b54a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6d1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxgw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ibmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ofw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfjq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrycc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk1s5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqk6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tli7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pj8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xatfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8syf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6f08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvprb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwswb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q63o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d51el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihu7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2d5c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iyeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hrwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r4ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e4q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6u2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukyhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc7x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai1cr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_juggernaut.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_juggernaut.tres new file mode 100644 index 0000000..7a8e4f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_juggernaut.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://dx8jflg0b06ua"] + +[ext_resource type="Texture2D" uid="uid://ck1xtbgjmt1m4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png" id="1_1ke7b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo0tu"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0etn"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvw25"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eque"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arqfw"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vag1a"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7qb4"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u10t"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qio2h"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hv4c"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhv2p"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcq3i"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oauhn"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayban"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6q7o"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsfhx"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y48ta"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc86n"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfcn7"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iic6u"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apl5g"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs58s"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h6tu"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lntw"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxwx1"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w5mv"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsxx3"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3r6f"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxhrq"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1epa"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loyqu"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ole"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2u2q"] +atlas = ExtResource("1_1ke7b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvgh4"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vonb"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkjmt"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjghv"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djlys"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aojk"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mve1u"] +atlas = ExtResource("1_1ke7b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc40u"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4mpk"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyh7d"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mix53"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uj7i"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofrw2"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nctlc"] +atlas = ExtResource("1_1ke7b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwshh"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igowu"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2pco"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjb6c"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs1o1"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aic2"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6edb"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4iyd"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86a68"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fe06"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bidf"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trj26"] +atlas = ExtResource("1_1ke7b") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo0tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0etn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvw25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eque") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arqfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vag1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7qb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u10t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qio2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hv4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhv2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcq3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oauhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayban") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6q7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsfhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y48ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc86n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfcn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iic6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apl5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs58s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h6tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lntw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxwx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w5mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsxx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3r6f") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxhrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1epa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loyqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ole") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2u2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvgh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vonb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkjmt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjghv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djlys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aojk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mve1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc40u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4mpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyh7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mix53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uj7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofrw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nctlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwshh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igowu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2pco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjb6c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs1o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aic2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6edb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4iyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86a68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fe06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bidf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trj26") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_klaxon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_klaxon.tres new file mode 100644 index 0000000..f7df18c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_klaxon.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://7uu2oc2bsunt"] + +[ext_resource type="Texture2D" uid="uid://dlcbcecs1gvqy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png" id="1_r8wn4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_leh0a"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvuv0"] +atlas = ExtResource("1_r8wn4") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdr8t"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0cg4"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c10le"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c1vf"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5ccf"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58c01"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd6e8"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emjre"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj6lh"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu2k8"] +atlas = ExtResource("1_r8wn4") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vktnq"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owfxo"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmisl"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70p65"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuvpo"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aku5a"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38r7q"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pywp"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlxy8"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73cvb"] +atlas = ExtResource("1_r8wn4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2y5p"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqb25"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acj3k"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccuog"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_277dy"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugliu"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r6ao"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd3lg"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkltj"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x8hk"] +atlas = ExtResource("1_r8wn4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h58mu"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbg32"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78cux"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv2jj"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g6uy"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gggkb"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh1bd"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yghrx"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhkn7"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7yys"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2po4j"] +atlas = ExtResource("1_r8wn4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag8qh"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7nt"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfvot"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrkam"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbv4"] +atlas = ExtResource("1_r8wn4") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6oo3"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yaqc"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi5lw"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0rff"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2yyf"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p7i3"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkxsi"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op42q"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5bfg"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmjw7"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0mcl"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjg1k"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdm71"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao1ad"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3son"] +atlas = ExtResource("1_r8wn4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkv3s"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqx1i"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42rft"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pj63"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_065ys"] +atlas = ExtResource("1_r8wn4") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1b80"] +atlas = ExtResource("1_r8wn4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufo0c"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s54e"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvfmw"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjnbl"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m2lr"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv8sm"] +atlas = ExtResource("1_r8wn4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyh4r"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8poo7"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtkdw"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7b4g"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01x55"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmbfv"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdp5i"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdfb1"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eklp"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gw2x"] +atlas = ExtResource("1_r8wn4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0h23"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaqwl"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5a5d"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lsb3"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pab77"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkwlf"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfgd8"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tntx5"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_varwt"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u14t"] +atlas = ExtResource("1_r8wn4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_leh0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvuv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdr8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0cg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c10le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c1vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5ccf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58c01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd6e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emjre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj6lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu2k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vktnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owfxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmisl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70p65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuvpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aku5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38r7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pywp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlxy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73cvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2y5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqb25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acj3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccuog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_277dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugliu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r6ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd3lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkltj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x8hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h58mu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbg32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78cux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv2jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g6uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gggkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh1bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yghrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhkn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7yys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2po4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag8qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfvot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrkam") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fbv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6oo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yaqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi5lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0rff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2yyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p7i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkxsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op42q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5bfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmjw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0mcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjg1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdm71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao1ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3son") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkv3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqx1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42rft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pj63") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_065ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1b80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufo0c") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s54e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvfmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjnbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m2lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv8sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyh4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8poo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtkdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7b4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01x55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmbfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdp5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdfb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eklp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gw2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0h23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaqwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5a5d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lsb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pab77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkwlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfgd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tntx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_varwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u14t") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_limbodweller.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_limbodweller.tres new file mode 100644 index 0000000..f659341 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_limbodweller.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://cb5invwk252k"] + +[ext_resource type="Texture2D" uid="uid://dmvwmw8ywnckr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png" id="1_543ta"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sva26"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffafp"] +atlas = ExtResource("1_543ta") +region = Rect2(1110, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1ncu"] +atlas = ExtResource("1_543ta") +region = Rect2(1110, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o63d"] +atlas = ExtResource("1_543ta") +region = Rect2(1110, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cpy4"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1q3g"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca755"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ih1u"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nwkv"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10018"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7mmq"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5fje"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th5sr"] +atlas = ExtResource("1_543ta") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0trns"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eimip"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vok4"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_406ap"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv2ai"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t416v"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7t0f"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bjun"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx3ff"] +atlas = ExtResource("1_543ta") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u824u"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aaq6"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp51g"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htdbi"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v03mw"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwewq"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eso4n"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55icu"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btusb"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epmxj"] +atlas = ExtResource("1_543ta") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v3ln"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq3ly"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3loc"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwfq6"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sjie"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01b6l"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbxrk"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci0hc"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgk82"] +atlas = ExtResource("1_543ta") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss85h"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fthml"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q8gt"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok60h"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw3h6"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k2g8"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy4hr"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxmay"] +atlas = ExtResource("1_543ta") +region = Rect2(1110, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34vsj"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffv58"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhlfa"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkaav"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcdi2"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xwxx"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hupag"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwoj7"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s01wg"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybwxv"] +atlas = ExtResource("1_543ta") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0xku"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5qgx"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf7jk"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dkwe"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qefta"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2pms"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnfy8"] +atlas = ExtResource("1_543ta") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gumoc"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_semkv"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t114f"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6h1u"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clomk"] +atlas = ExtResource("1_543ta") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m32g6"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v57e2"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n4yr"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjuor"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciqt3"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hneql"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w385"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s4id"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31mtp"] +atlas = ExtResource("1_543ta") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8jfc"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox4jr"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j53h"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikkdl"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcp8p"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rncmc"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik2hm"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w7ru"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g10aj"] +atlas = ExtResource("1_543ta") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fldeq"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrsd3"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43s61"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbeic"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieijl"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehka1"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpcbm"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eox5g"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqo6u"] +atlas = ExtResource("1_543ta") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sva26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffafp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1ncu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o63d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cpy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1q3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca755") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ih1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nwkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10018") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7mmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5fje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th5sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0trns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eimip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vok4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_406ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv2ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t416v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7t0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bjun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx3ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u824u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aaq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp51g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htdbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v03mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwewq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eso4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55icu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btusb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epmxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v3ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq3ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3loc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwfq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sjie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01b6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbxrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci0hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgk82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss85h") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fthml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q8gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok60h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw3h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k2g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy4hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxmay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34vsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffv58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhlfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkaav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcdi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xwxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hupag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwoj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s01wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybwxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0xku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5qgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf7jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dkwe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qefta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2pms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnfy8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gumoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_semkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t114f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6h1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clomk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m32g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v57e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n4yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjuor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciqt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hneql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w385") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s4id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31mtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8jfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox4jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j53h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikkdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcp8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rncmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik2hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w7ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g10aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fldeq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrsd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43s61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbeic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieijl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehka1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpcbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eox5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqo6u") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_maehvmk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_maehvmk2.tres new file mode 100644 index 0000000..3d3ab60 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_maehvmk2.tres @@ -0,0 +1,882 @@ +[gd_resource type="SpriteFrames" load_steps=120 format=3 uid="uid://s4m6updmc53"] + +[ext_resource type="Texture2D" uid="uid://3erehs3718hq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png" id="1_7kj3b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i8ci"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0u74"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpwf0"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw81q"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8w6x"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7aa0"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqin4"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m133e"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rv54"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyaly"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62jjc"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm8lv"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikw7a"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kfsi"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ll6"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyfg6"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_814u0"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euuft"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffejr"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un1kf"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_403cx"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j5pe"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2wap"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00arr"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i8qr"] +atlas = ExtResource("1_7kj3b") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3w87"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp5jc"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk57e"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1jd5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awnbb"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tab88"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gll5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jbe"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4a1d"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfjy8"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfcct"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgugr"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15epv"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8vlo"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j40j7"] +atlas = ExtResource("1_7kj3b") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5epk"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iui6u"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_844c3"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqcxd"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh80e"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dk4r"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qetaq"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61xcg"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_damk3"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ag1"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpe0q"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p87dq"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1baa5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdgqf"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxexd"] +atlas = ExtResource("1_7kj3b") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgbaa"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2lrk"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwhix"] +atlas = ExtResource("1_7kj3b") +region = Rect2(917, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upnlj"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x6m5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b82c"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5iwk"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae7qk"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1638d"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkj54"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr3a5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8qh5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x0of"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_516a4"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0opdm"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8p2x"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl6ks"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh8ic"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v32yk"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uafsg"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2kjp"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soahn"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv0la"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg6a5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0uqa"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxrv1"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdl6m"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcy43"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi6l5"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nue3"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rlha"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqby2"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66jf2"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j43xd"] +atlas = ExtResource("1_7kj3b") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljed1"] +atlas = ExtResource("1_7kj3b") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u08oh"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsh27"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6sx7"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcyp1"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie58w"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3px0c"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y656"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0igvg"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2eks"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md632"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e3ac"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eu1c"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88yyw"] +atlas = ExtResource("1_7kj3b") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvo5r"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nodla"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwuy4"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jse4q"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1sw4"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kpp"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwm3g"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0e7j"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cshoh"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eppjt"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbfss"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x4bx"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poa81"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knx8y"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swsop"] +atlas = ExtResource("1_7kj3b") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i8ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0u74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpwf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw81q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8w6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7aa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqin4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m133e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rv54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyaly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62jjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm8lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikw7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kfsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ll6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyfg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_814u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euuft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffejr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un1kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_403cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j5pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2wap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00arr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i8qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3w87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp5jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk57e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1jd5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_awnbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tab88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gll5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01jbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4a1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfjy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfcct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgugr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15epv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8vlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j40j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5epk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iui6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_844c3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqcxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh80e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dk4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qetaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61xcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_damk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ag1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpe0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p87dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1baa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdgqf") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxexd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgbaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2lrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwhix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upnlj") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x6m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b82c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5iwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae7qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1638d") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkj54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr3a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8qh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x0of") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_516a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0opdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8p2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl6ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh8ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v32yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uafsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2kjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv0la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg6a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0uqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxrv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdl6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcy43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi6l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nue3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rlha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqby2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_66jf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j43xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljed1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u08oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsh27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6sx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcyp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie58w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3px0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y656") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0igvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2eks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md632") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e3ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eu1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88yyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvo5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nodla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwuy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jse4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1sw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6kpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwm3g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0e7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cshoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eppjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbfss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x4bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poa81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knx8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swsop") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mech.tres new file mode 100644 index 0000000..bcbe85c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mech.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://1sp2ovpgu8hg"] + +[ext_resource type="Texture2D" uid="uid://bdst4a147nkt0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png" id="1_be2xe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2vye"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tims8"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sbrx"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbu20"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixww0"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfpnj"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd6fm"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfpaj"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew1bj"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usu3w"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8bjj"] +atlas = ExtResource("1_be2xe") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb7ly"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvpe0"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juh4d"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcnc5"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrh5e"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jrxi"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vtlw"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u63b"] +atlas = ExtResource("1_be2xe") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbefk"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jglms"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7uk5"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvsmj"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42caw"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8b4i"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01pyq"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0nh8"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcs3d"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63obk"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bkld"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3gc2"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0s8i"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l57o3"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a071"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maw24"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuvec"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md61r"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ove58"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4v53"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqy6k"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feyrx"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfn7"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtuvj"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h8xn"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6o4g"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v428w"] +atlas = ExtResource("1_be2xe") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t5vq"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78egv"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_176yf"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umjqc"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhaad"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqbfo"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n8g7"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8paf"] +atlas = ExtResource("1_be2xe") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pawku"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7sr6"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cafb6"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ran2r"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j16qh"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i3y7"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebfup"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btaan"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfngb"] +atlas = ExtResource("1_be2xe") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlmsk"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ogpt"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu0n8"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjnw8"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hffhm"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6w3c"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owfcx"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1my6"] +atlas = ExtResource("1_be2xe") +region = Rect2(0, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aptn5"] +atlas = ExtResource("1_be2xe") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g206"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lekg"] +atlas = ExtResource("1_be2xe") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6yoa"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v03g7"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwair"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4y1v"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygto6"] +atlas = ExtResource("1_be2xe") +region = Rect2(882, 378, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2vye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tims8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sbrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbu20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixww0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfpnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd6fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfpaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew1bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usu3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8bjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb7ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvpe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juh4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcnc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrh5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jrxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vtlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u63b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbefk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jglms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7uk5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvsmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42caw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8b4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01pyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0nh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcs3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63obk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bkld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3gc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0s8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l57o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a071") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maw24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuvec") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_md61r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ove58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4v53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqy6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feyrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtuvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h8xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6o4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v428w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t5vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78egv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_176yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umjqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhaad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqbfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n8g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8paf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pawku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7sr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cafb6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ran2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j16qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i3y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebfup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btaan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfngb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlmsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ogpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu0n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjnw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hffhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6w3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owfcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1my6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aptn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g206") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lekg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6yoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v03g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwair") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4y1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygto6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_megafiend.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_megafiend.tres new file mode 100644 index 0000000..6175831 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_megafiend.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://b2k0kpij8f5no"] + +[ext_resource type="Texture2D" uid="uid://bgu3gdbm3fsnk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png" id="1_5v3aa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhwe4"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vfqc"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3l7h"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twvy"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u50pb"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjmun"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o1gc"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miyvg"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoraa"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38q3o"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5goxx"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxsht"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yktat"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjrdq"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37g72"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2kfy"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_662xa"] +atlas = ExtResource("1_5v3aa") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f8gd"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfnkt"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w4x2"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgsw8"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckyxf"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ntah"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ei0"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ta8c"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0xxs"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ee06"] +atlas = ExtResource("1_5v3aa") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvv2x"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfeiu"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phe1f"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qgxu"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi251"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyy6x"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyme0"] +atlas = ExtResource("1_5v3aa") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fecxl"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dya22"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a076u"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lil6"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ngx"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l2qh"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qb1t"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nl8a"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx0o1"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s158k"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei3ba"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4rsj"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckl2d"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w0c6"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkjjm"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp1wa"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc0ka"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p36mu"] +atlas = ExtResource("1_5v3aa") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2x2v"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqgkg"] +atlas = ExtResource("1_5v3aa") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eep0j"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8jtu"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12gt0"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y32ec"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkvpj"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s4p4"] +atlas = ExtResource("1_5v3aa") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68mlc"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaydy"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icotj"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqoc5"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd08v"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s0wr"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kds3x"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwupy"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okcnm"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppmwl"] +atlas = ExtResource("1_5v3aa") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhwe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vfqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3l7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u50pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjmun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o1gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miyvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoraa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38q3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5goxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxsht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yktat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjrdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37g72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2kfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_662xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f8gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfnkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w4x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgsw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckyxf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ntah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ei0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ta8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0xxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ee06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvv2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfeiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phe1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qgxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi251") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyy6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyme0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fecxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dya22") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a076u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lil6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ngx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l2qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qb1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nl8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx0o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s158k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei3ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4rsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckl2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w0c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkjjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp1wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc0ka") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p36mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2x2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqgkg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eep0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8jtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12gt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y32ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkvpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s4p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68mlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaydy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_icotj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqoc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd08v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s0wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kds3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwupy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okcnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppmwl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_miniminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_miniminion.tres new file mode 100644 index 0000000..6305ba7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_miniminion.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://bsku2orgfhsh6"] + +[ext_resource type="Texture2D" uid="uid://byf7jqq6scvqy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png" id="1_oxgj5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x5wo"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e70ps"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_474rb"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pd3j"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7pir"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0clu"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl2no"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7xpc"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrlo0"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwomk"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xeit"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m50by"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1hln"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22lp8"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4i64"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwedm"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmjen"] +atlas = ExtResource("1_oxgj5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynphq"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5841c"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex0y7"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiahx"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kg1d"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8xql"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss68w"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v82ye"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stmig"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj1es"] +atlas = ExtResource("1_oxgj5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu1gw"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ansfw"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iej7j"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daguv"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkhav"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j75c4"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx2g6"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfg7r"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k18wx"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohani"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brfda"] +atlas = ExtResource("1_oxgj5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u06gv"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn2oy"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3facq"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whf84"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ane74"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qovtb"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtg7h"] +atlas = ExtResource("1_oxgj5") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eil2d"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aotpq"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyri5"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gdra"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm8mo"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp7at"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8kiw"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w4xj"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qxc4"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhiuj"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1thdc"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uh8t"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5us7p"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwcnv"] +atlas = ExtResource("1_oxgj5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7wve"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3nmq"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqhor"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82d8g"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydi55"] +atlas = ExtResource("1_oxgj5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ledsr"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5gca"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04g1u"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtg40"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp1yr"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu6it"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck3yt"] +atlas = ExtResource("1_oxgj5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oj4r"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la3u0"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1edl8"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfasq"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_762lb"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvr8p"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7ecj"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pbnc"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys4fc"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uftr0"] +atlas = ExtResource("1_oxgj5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf6g5"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bphgx"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3tue"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu8fm"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7xss"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkcdr"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qkwv"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e83v"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bb2v"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7la6"] +atlas = ExtResource("1_oxgj5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x5wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e70ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_474rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pd3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7pir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0clu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl2no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7xpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrlo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwomk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xeit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m50by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1hln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22lp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4i64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwedm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmjen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynphq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5841c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex0y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiahx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kg1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8xql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss68w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v82ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stmig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj1es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu1gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ansfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iej7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daguv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkhav") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j75c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx2g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfg7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k18wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohani") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brfda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u06gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn2oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3facq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whf84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ane74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qovtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtg7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eil2d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aotpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyri5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gdra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm8mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp7at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8kiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w4xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qxc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhiuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1thdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uh8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5us7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwcnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7wve") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3nmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqhor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82d8g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydi55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ledsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5gca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04g1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtg40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp1yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu6it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck3yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oj4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la3u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1edl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfasq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_762lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvr8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7ecj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pbnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys4fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uftr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf6g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bphgx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3tue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu8fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7xss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkcdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qkwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e83v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bb2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7la6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mistressofcommands.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mistressofcommands.tres new file mode 100644 index 0000000..4c899ed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_mistressofcommands.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cune3bdi1o3tl"] + +[ext_resource type="Texture2D" uid="uid://w1ai8yt735mf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png" id="1_c75mc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmoa0"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbn6f"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ldj0"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syb2r"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqjle"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn8a5"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dug5b"] +atlas = ExtResource("1_c75mc") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvdxr"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63hdr"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g42k"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp31p"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4hbr"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qagv4"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n77yh"] +atlas = ExtResource("1_c75mc") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axn74"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8pu6"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e60d"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asdya"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b30bt"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e8u6"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cone7"] +atlas = ExtResource("1_c75mc") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pa2o"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru3ae"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh11a"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0t1e"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cleqd"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dj7m"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwnxe"] +atlas = ExtResource("1_c75mc") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwvmq"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aay8"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4sma"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joo8o"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8omn"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibb8m"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuhlj"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7ufj"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8srbu"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03v61"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3d6c"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dya51"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qnxa"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amsdr"] +atlas = ExtResource("1_c75mc") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nieuw"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cobn2"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1vpm"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osi16"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw5l0"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ors2"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5uxt"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2n0b"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eff3m"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17fy3"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmurq"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p2wp"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ujbd"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e65cp"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_753tt"] +atlas = ExtResource("1_c75mc") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n0ol"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5u77"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ushh"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ep5d"] +atlas = ExtResource("1_c75mc") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1b4c"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbs4f"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lkdp"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1tik"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7s2v"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqtkb"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktv82"] +atlas = ExtResource("1_c75mc") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi72d"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajayk"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4jja"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4lpx"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bawaj"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiaqt"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw0qa"] +atlas = ExtResource("1_c75mc") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjdhy"] +atlas = ExtResource("1_c75mc") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_627jk"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lobfs"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m101"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmosx"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dauvw"] +atlas = ExtResource("1_c75mc") +region = Rect2(1310, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmoa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbn6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ldj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syb2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqjle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn8a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dug5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvdxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63hdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g42k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp31p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4hbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qagv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n77yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axn74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8pu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e60d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asdya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b30bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e8u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cone7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pa2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru3ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh11a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0t1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cleqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dj7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwnxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwvmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aay8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4sma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joo8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8omn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibb8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuhlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7ufj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8srbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03v61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3d6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dya51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qnxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amsdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nieuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cobn2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1vpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osi16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw5l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ors2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5uxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2n0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eff3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17fy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmurq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p2wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ujbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e65cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_753tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n0ol") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5u77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ushh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ep5d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1b4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbs4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lkdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1tik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7s2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqtkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktv82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi72d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajayk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4jja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4lpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bawaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiaqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw0qa") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjdhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_627jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lobfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m101") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmosx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dauvw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_moonrider.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_moonrider.tres new file mode 100644 index 0000000..63a81d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_moonrider.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://ce54l8wtqgupq"] + +[ext_resource type="Texture2D" uid="uid://17wbnfsv0hf2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png" id="1_hqbxi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1iaa"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o65x"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fh8g"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omcj0"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3us0"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7wq1"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8mdy"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v6q5"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bqjv"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb45m"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndhnu"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtkgc"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prnse"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xioi"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7yy3"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2fp3"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eceo"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reeon"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1vay"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0ynk"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sihq1"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4mbr"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aatda"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2f7r"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n861"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twk8r"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn35w"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se0g4"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ctm"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02a8d"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atdgr"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1806m"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx0na"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnt4b"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a5eo"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sgc5"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq67i"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x8fn"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vqiv"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_550sl"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awucy"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh1v6"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srhxw"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm8jg"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jgy8"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5socy"] +atlas = ExtResource("1_hqbxi") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31md1"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq02d"] +atlas = ExtResource("1_hqbxi") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qys7"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfa6i"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s525q"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00fxn"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0edbj"] +atlas = ExtResource("1_hqbxi") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxwcf"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt5ek"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm0ib"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frwbt"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bma5x"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy0vb"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd4nc"] +atlas = ExtResource("1_hqbxi") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vufxw"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g7qs"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwvyw"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v7w3"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwh7i"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft251"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00u8x"] +atlas = ExtResource("1_hqbxi") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oi01"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45vnb"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbjqb"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8g2w"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7omr6"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxkr8"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c01b6"] +atlas = ExtResource("1_hqbxi") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6r3y"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqypi"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lu2e"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_662ic"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkr3p"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imyx5"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgxd0"] +atlas = ExtResource("1_hqbxi") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ariat"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vall8"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7utu"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxymb"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evwiq"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwpvn"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfm1o"] +atlas = ExtResource("1_hqbxi") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbqpy"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al8gf"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsdpo"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmjsh"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b6vi"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivky7"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryjkc"] +atlas = ExtResource("1_hqbxi") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1iaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o65x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fh8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omcj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3us0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7wq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8mdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v6q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bqjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb45m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndhnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtkgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prnse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xioi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7yy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2fp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eceo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reeon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1vay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0ynk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sihq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4mbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aatda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2f7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n861") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twk8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn35w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se0g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ctm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02a8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atdgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1806m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx0na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnt4b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a5eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sgc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq67i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x8fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vqiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_550sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh1v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srhxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm8jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jgy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5socy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31md1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq02d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qys7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfa6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s525q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00fxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0edbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxwcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt5ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm0ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frwbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bma5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy0vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd4nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vufxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g7qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwvyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v7w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwh7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft251") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00u8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oi01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45vnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbjqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8g2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7omr6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxkr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c01b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6r3y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqypi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lu2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_662ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkr3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imyx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgxd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ariat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vall8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7utu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxymb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evwiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwpvn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfm1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbqpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al8gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsdpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmjsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b6vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivky7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryjkc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightfiend.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightfiend.tres new file mode 100644 index 0000000..b927cfd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightfiend.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://ded255cv77424"] + +[ext_resource type="Texture2D" uid="uid://c1nholymwojpl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png" id="1_o7lfm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jomqu"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfs0u"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hfs8"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h6mm"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nk6o"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q860q"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtq8d"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62q0u"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc34c"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k702o"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgwpt"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjk0t"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvukf"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63lw4"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aa5u"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8fox"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrsmc"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bntls"] +atlas = ExtResource("1_o7lfm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd2tc"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5muti"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qret0"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6khx"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj7k8"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uprn"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63pfo"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak4hh"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggkhn"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ceqf"] +atlas = ExtResource("1_o7lfm") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmd3k"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn7y8"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er18h"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ngu4"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03utq"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_567o7"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmv8s"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unw47"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owgtw"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rucsx"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj0s4"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri2yc"] +atlas = ExtResource("1_o7lfm") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02tqh"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne5sa"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aib27"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x10yt"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avbjy"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xveym"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00p1w"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jop63"] +atlas = ExtResource("1_o7lfm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e2ig"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pcyh"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyxwc"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq5eq"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03npv"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3lu2"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klsbv"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju4m6"] +atlas = ExtResource("1_o7lfm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2qsm"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxw6e"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v3gr"] +atlas = ExtResource("1_o7lfm") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeco3"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olni6"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj2he"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lco5"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c787v"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yq1x"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg7sl"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utixd"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl6mt"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfcqi"] +atlas = ExtResource("1_o7lfm") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndiq3"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3uxo"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qcn5"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thfes"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tivr7"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjciy"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fekqc"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klahl"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euo21"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auysi"] +atlas = ExtResource("1_o7lfm") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jomqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfs0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hfs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h6mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nk6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q860q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtq8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62q0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc34c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k702o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgwpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjk0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvukf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63lw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aa5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8fox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrsmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bntls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd2tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5muti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qret0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6khx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj7k8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uprn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63pfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak4hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggkhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ceqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmd3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn7y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er18h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ngu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03utq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_567o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmv8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unw47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owgtw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rucsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj0s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri2yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02tqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne5sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aib27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x10yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avbjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xveym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00p1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jop63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e2ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pcyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyxwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq5eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03npv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3lu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klsbv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju4m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2qsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxw6e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v3gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeco3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olni6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj2he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lco5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c787v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yq1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg7sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utixd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl6mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfcqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndiq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3uxo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qcn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thfes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tivr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjciy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fekqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klahl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euo21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auysi") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightsorrow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightsorrow.tres new file mode 100644 index 0000000..d47ff9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nightsorrow.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://tr4yrm442cuu"] + +[ext_resource type="Texture2D" uid="uid://5mex6r8y8eiy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png" id="1_eqa1m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_scvtl"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx2ss"] +atlas = ExtResource("1_eqa1m") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsjsc"] +atlas = ExtResource("1_eqa1m") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7obqu"] +atlas = ExtResource("1_eqa1m") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hragy"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvowe"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igp3f"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o538"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjkjs"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vvh5"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apkoq"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk16e"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7cws"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3n08"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhbv8"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsf2m"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44wct"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k64mr"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54ixy"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cvaf"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21xcv"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vywxb"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy55e"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obbdv"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_484po"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11sk8"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcsj8"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14b6q"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20jod"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug11y"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxux3"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edu4m"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlhob"] +atlas = ExtResource("1_eqa1m") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22fb0"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oma2p"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6hdx"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rissh"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82w8e"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm1lc"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3fhj"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at13f"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcpbk"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsyg6"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31cu2"] +atlas = ExtResource("1_eqa1m") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rq2n"] +atlas = ExtResource("1_eqa1m") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjat"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tivqd"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15g0o"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fry4a"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftcf"] +atlas = ExtResource("1_eqa1m") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85dug"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vsup"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4i7u"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm84k"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wlbc"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym5x6"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdumu"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cijwy"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u74df"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfqux"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3tvo"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tskp5"] +atlas = ExtResource("1_eqa1m") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_scvtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx2ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsjsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7obqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hragy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvowe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igp3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o538") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjkjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vvh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apkoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk16e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7cws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3n08") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhbv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsf2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44wct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k64mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54ixy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cvaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21xcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vywxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy55e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obbdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_484po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11sk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcsj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14b6q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_20jod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug11y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxux3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edu4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlhob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22fb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oma2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6hdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rissh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82w8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm1lc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3fhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at13f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcpbk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsyg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31cu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rq2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgjat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tivqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15g0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fry4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85dug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vsup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4i7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm84k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wlbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym5x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdumu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cijwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u74df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfqux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3tvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tskp5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nocturn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nocturn.tres new file mode 100644 index 0000000..8f16dde --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_nocturn.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://cy87eveqai8v"] + +[ext_resource type="Texture2D" uid="uid://cnvpgx7bspyl5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png" id="1_ecv6o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddxs5"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r74cj"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clw6f"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv6xx"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy6on"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8071"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc5my"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vkop"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd4m6"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j80va"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pjlx"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebqdk"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybug5"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlg50"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7g8f"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgihh"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08mjx"] +atlas = ExtResource("1_ecv6o") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbew5"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7co4c"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35r1p"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abwgi"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5pfr"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tm73"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oicxu"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcmuc"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi6l7"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0fbj"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2rfj"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmrn2"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmwd2"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnfbj"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn4x3"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yral"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyiip"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp2es"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yj5e"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yp8h"] +atlas = ExtResource("1_ecv6o") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x4c6"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od6qk"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ok7w"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4snp"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w0jq"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x846c"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3hao"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqn47"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv4r8"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02f3x"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4wp3"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr6yy"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drp3a"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjy1o"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfgmp"] +atlas = ExtResource("1_ecv6o") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ty6r"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ui7u"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hkrd"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mckcp"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cvqe"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sa6a"] +atlas = ExtResource("1_ecv6o") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87pei"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvjtm"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blefl"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es0cv"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd5p6"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88ma8"] +atlas = ExtResource("1_ecv6o") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkg36"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voc4o"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv76m"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gqv3"] +atlas = ExtResource("1_ecv6o") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxmc1"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcm7u"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yx4p"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owutu"] +atlas = ExtResource("1_ecv6o") +region = Rect2(303, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddxs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r74cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clw6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv6xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy6on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8071") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc5my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vkop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd4m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j80va") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pjlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybug5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlg50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7g8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgihh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08mjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbew5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7co4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35r1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abwgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5pfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tm73") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oicxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcmuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi6l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0fbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2rfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmrn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmwd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnfbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn4x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yral") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyiip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp2es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yj5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yp8h") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x4c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od6qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ok7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4snp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w0jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x846c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3hao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqn47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv4r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02f3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4wp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr6yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drp3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjy1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfgmp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ty6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ui7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hkrd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mckcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cvqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sa6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87pei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvjtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blefl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es0cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd5p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88ma8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkg36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voc4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv76m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gqv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxmc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcm7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yx4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owutu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_ooz.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_ooz.tres new file mode 100644 index 0000000..8d5bca6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_ooz.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://b63ekdhmmm838"] + +[ext_resource type="Texture2D" uid="uid://dq4v4k3qef4hl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png" id="1_rftrt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1n3m"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayxaa"] +atlas = ExtResource("1_rftrt") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1405"] +atlas = ExtResource("1_rftrt") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p7ml"] +atlas = ExtResource("1_rftrt") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tvns"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74kom"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pje1"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cexhn"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uewrb"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq1sw"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71pil"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msto0"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsb0t"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ld2q"] +atlas = ExtResource("1_rftrt") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnsae"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is0tq"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpi2b"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60nxl"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytvkd"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2gom"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4n5h"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhj8j"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjudy"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baoi1"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_886js"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmte4"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh0mt"] +atlas = ExtResource("1_rftrt") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5ao"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2dcd"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qp4n"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um1f5"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkyxg"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j230c"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0mf8"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxmep"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_408lw"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4c6n"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llnll"] +atlas = ExtResource("1_rftrt") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7m5m"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xjk"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ctgb"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1sbt"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5rkc"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqbx7"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l68fg"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njb24"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jh1i"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvf1y"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24o6n"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgkuk"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iewqf"] +atlas = ExtResource("1_rftrt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqakc"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ily70"] +atlas = ExtResource("1_rftrt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7nst"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csspt"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhd8k"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn4qx"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oih6e"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn4d8"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk0qd"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdepj"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o38kh"] +atlas = ExtResource("1_rftrt") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yheh"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq8vv"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lws0n"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo2ux"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp3ft"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icmim"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8om"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxhjm"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxf58"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_740rl"] +atlas = ExtResource("1_rftrt") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1n3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayxaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1405") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p7ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tvns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74kom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pje1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cexhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uewrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq1sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71pil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msto0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsb0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ld2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnsae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is0tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpi2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60nxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytvkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2gom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4n5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhj8j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjudy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baoi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_886js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmte4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh0mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2dcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qp4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um1f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkyxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j230c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0mf8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxmep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_408lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4c6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llnll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7m5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ctgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1sbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5rkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqbx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l68fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njb24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jh1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvf1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24o6n") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgkuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iewqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqakc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ily70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7nst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csspt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhd8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn4qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oih6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn4d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk0qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdepj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o38kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yheh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq8vv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lws0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo2ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp3ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icmim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba8om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxhjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxf58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_740rl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_phantasm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_phantasm.tres new file mode 100644 index 0000000..0c7a80f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_phantasm.tres @@ -0,0 +1,855 @@ +[gd_resource type="SpriteFrames" load_steps=119 format=3 uid="uid://nyb6ua3leec2"] + +[ext_resource type="Texture2D" uid="uid://baouxv5qra7e5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png" id="1_hqoom"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpxrc"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkm01"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xy31"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw5vo"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yl2c"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i00ou"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s11ls"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ir68"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s82xq"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_losqn"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q10ig"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxiu3"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v5ka"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ipd"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwqu5"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g6e4"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48wya"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl4mc"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqq3i"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfjce"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhl08"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0nb8"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xpnp"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibvw8"] +atlas = ExtResource("1_hqoom") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hnnv"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unb3a"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlt05"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l0c5"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07rbf"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayti8"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1hyr"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haxb2"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecosd"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w51n6"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycs1k"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtir0"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx1ab"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61jbu"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_finnl"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjfp4"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckq40"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72e3m"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ug3j"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osxga"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5byqg"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuknp"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obmnp"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_empys"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrb4k"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x0jh"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fup67"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv3oo"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmqal"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plb6u"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy36c"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tcbs"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_885x6"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08u4g"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5atug"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vg1a"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilheu"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7hck"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xg14"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8heat"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6el13"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtg5f"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyilp"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mitn"] +atlas = ExtResource("1_hqoom") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2h33"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq5r7"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bskl0"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e6et"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7kxs"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6aiu"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3t4k"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hskbj"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuct7"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgmxy"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qefhx"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbd6p"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1k7bd"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjxwv"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3wcu"] +atlas = ExtResource("1_hqoom") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q34t8"] +atlas = ExtResource("1_hqoom") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nw3y"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cooau"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gihou"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp4ks"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn0dc"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr1pk"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qft2i"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpubd"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1tmf"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mtxm"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv2e2"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxcv7"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbcp3"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyu6g"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx3gt"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slbs1"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gg1s"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emniy"] +atlas = ExtResource("1_hqoom") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l6c2"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wohkk"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cprim"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tybho"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfhjh"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpwb"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aw2g"] +atlas = ExtResource("1_hqoom") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfgie"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfg13"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkv20"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mujah"] +atlas = ExtResource("1_hqoom") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2hcw"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksjgc"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4nrk"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5gq4"] +atlas = ExtResource("1_hqoom") +region = Rect2(524, 1441, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpxrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkm01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xy31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw5vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yl2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i00ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s11ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ir68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s82xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_losqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q10ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxiu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v5ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ipd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwqu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g6e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48wya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl4mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqq3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfjce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhl08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0nb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xpnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibvw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hnnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unb3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlt05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l0c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07rbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayti8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1hyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haxb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecosd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w51n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycs1k") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtir0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx1ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61jbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_finnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjfp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckq40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72e3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ug3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osxga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5byqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuknp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obmnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_empys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrb4k") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x0jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fup67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv3oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmqal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plb6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy36c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tcbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_885x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08u4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5atug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vg1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilheu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7hck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xg14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8heat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6el13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtg5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyilp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mitn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2h33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq5r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bskl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e6et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7kxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6aiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3t4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hskbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuct7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgmxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qefhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbd6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1k7bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjxwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3wcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q34t8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nw3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cooau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gihou") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp4ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn0dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr1pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qft2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpubd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1tmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mtxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv2e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxcv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbcp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyu6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx3gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slbs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gg1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emniy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l6c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wohkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cprim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tybho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfhjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aw2g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfgie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfg13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkv20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mujah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2hcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksjgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4nrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5gq4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_pitstrider.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_pitstrider.tres new file mode 100644 index 0000000..3c55a43 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_pitstrider.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://cdxbxfcub4kys"] + +[ext_resource type="Texture2D" uid="uid://cykna0u1n2yof" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png" id="1_201vk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxk2o"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sklhn"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpvui"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2of40"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bsjt"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg4ou"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmtcg"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb2hy"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krfqg"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eybfp"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds235"] +atlas = ExtResource("1_201vk") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fktns"] +atlas = ExtResource("1_201vk") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjyc5"] +atlas = ExtResource("1_201vk") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5moxy"] +atlas = ExtResource("1_201vk") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyukx"] +atlas = ExtResource("1_201vk") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvxr1"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bldv"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddqqe"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh74t"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32b53"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4dli"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilrgt"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bss60"] +atlas = ExtResource("1_201vk") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fee4v"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx4yy"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bygib"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jemv"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkovo"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2lmr"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xitnc"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cghx1"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8pbe"] +atlas = ExtResource("1_201vk") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i0u1"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iip7x"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlbi8"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md2x8"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pyo0"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgyee"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uooh"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpsre"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu76f"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1eb7"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aspql"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfr3l"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t02ch"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx265"] +atlas = ExtResource("1_201vk") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yldm6"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaksq"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3kbg"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bujir"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wme0x"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjmiu"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqgg"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxf5k"] +atlas = ExtResource("1_201vk") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn4t3"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anb4c"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fglis"] +atlas = ExtResource("1_201vk") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag7g6"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g11c6"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50pbt"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5mjh"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51l3i"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnraq"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j6pk"] +atlas = ExtResource("1_201vk") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy1ye"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1433"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p842"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muprl"] +atlas = ExtResource("1_201vk") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vock"] +atlas = ExtResource("1_201vk") +region = Rect2(0, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpnx6"] +atlas = ExtResource("1_201vk") +region = Rect2(202, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvjti"] +atlas = ExtResource("1_201vk") +region = Rect2(303, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu0et"] +atlas = ExtResource("1_201vk") +region = Rect2(101, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxbqb"] +atlas = ExtResource("1_201vk") +region = Rect2(505, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kbcx"] +atlas = ExtResource("1_201vk") +region = Rect2(606, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71d6q"] +atlas = ExtResource("1_201vk") +region = Rect2(404, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mraaw"] +atlas = ExtResource("1_201vk") +region = Rect2(808, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir3ir"] +atlas = ExtResource("1_201vk") +region = Rect2(909, 917, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yafud"] +atlas = ExtResource("1_201vk") +region = Rect2(707, 917, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxk2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sklhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpvui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2of40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bsjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg4ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmtcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb2hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krfqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eybfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds235") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fktns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjyc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5moxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyukx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvxr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bldv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddqqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh74t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32b53") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4dli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilrgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bss60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fee4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx4yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bygib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jemv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkovo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2lmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xitnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cghx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8pbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i0u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iip7x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlbi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md2x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pyo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgyee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uooh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpsre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu76f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1eb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aspql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfr3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t02ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx265") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yldm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaksq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3kbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bujir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wme0x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjmiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxf5k") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn4t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anb4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fglis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag7g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g11c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50pbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5mjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51l3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnraq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j6pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy1ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1433") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p842") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muprl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vock") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpnx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvjti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu0et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxbqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kbcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71d6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mraaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir3ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yafud") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_plaguedr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_plaguedr.tres new file mode 100644 index 0000000..63db4f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_plaguedr.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://uibpmsn6wiuh"] + +[ext_resource type="Texture2D" uid="uid://c0b86tr7x38au" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png" id="1_mh0v4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxcgk"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkt2s"] +atlas = ExtResource("1_mh0v4") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjxn0"] +atlas = ExtResource("1_mh0v4") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3jyb"] +atlas = ExtResource("1_mh0v4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrlej"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ugq"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohe3b"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbt61"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsfwg"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru61b"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olkpd"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5uwq"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_japqr"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5up5x"] +atlas = ExtResource("1_mh0v4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwttm"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j1tr"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti6mx"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1353g"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2gtd"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f842"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s3y2"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2hcs"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnkrf"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brdih"] +atlas = ExtResource("1_mh0v4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4l1f"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waumq"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2jx7"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1f2c"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0cpk"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chgog"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv7em"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6yl4"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jolri"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjrod"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_futir"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2uk8"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dj6o"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5vam"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pcsm"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icn5s"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rycwl"] +atlas = ExtResource("1_mh0v4") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ugpx"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u28ab"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1grb"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iee2i"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0u7n"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwild"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fimt"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puhun"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcee6"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h30i0"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsggj"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7elr0"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxdsr"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtk37"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhatw"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24tbu"] +atlas = ExtResource("1_mh0v4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mww2t"] +atlas = ExtResource("1_mh0v4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ilq"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuesw"] +atlas = ExtResource("1_mh0v4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5lkn"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m6gt"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sno3m"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5jo5"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy5lh"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmwc5"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgwph"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvhd7"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7fhi"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d17if"] +atlas = ExtResource("1_mh0v4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs8vr"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrp2q"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w5pm"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi2gl"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy21q"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jywt"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx337"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km0ox"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qam4m"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvch4"] +atlas = ExtResource("1_mh0v4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxcgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkt2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjxn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3jyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrlej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ugq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohe3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbt61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsfwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru61b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olkpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5uwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_japqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5up5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwttm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j1tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti6mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1353g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2gtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f842") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s3y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2hcs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnkrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brdih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4l1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waumq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2jx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1f2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0cpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chgog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv7em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6yl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jolri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjrod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_futir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2uk8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dj6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5vam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pcsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icn5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rycwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ugpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u28ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1grb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iee2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0u7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwild") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fimt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puhun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcee6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h30i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsggj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7elr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxdsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtk37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhatw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24tbu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mww2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ilq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuesw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5lkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m6gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sno3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5jo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy5lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmwc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgwph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvhd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7fhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d17if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs8vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrp2q") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w5pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi2gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy21q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jywt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx337") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km0ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qam4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvch4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_reaperninemoons.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_reaperninemoons.tres new file mode 100644 index 0000000..4b8e475 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_reaperninemoons.tres @@ -0,0 +1,778 @@ +[gd_resource type="SpriteFrames" load_steps=108 format=3 uid="uid://dplpi00c12nhg"] + +[ext_resource type="Texture2D" uid="uid://b18xs55v4xnnl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png" id="1_210r4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkxgr"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2m3g"] +atlas = ExtResource("1_210r4") +region = Rect2(819, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeptg"] +atlas = ExtResource("1_210r4") +region = Rect2(819, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi81t"] +atlas = ExtResource("1_210r4") +region = Rect2(819, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kiun"] +atlas = ExtResource("1_210r4") +region = Rect2(819, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuo3e"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt7rf"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22jsh"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wknge"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2nxl"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhy0q"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puug5"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nqtm"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myfgc"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oyx7"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg5em"] +atlas = ExtResource("1_210r4") +region = Rect2(728, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyhi8"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs7c6"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raahm"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vshaa"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcui2"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkwk8"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o1q0"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hc35"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yui0c"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4cqf"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25wl1"] +atlas = ExtResource("1_210r4") +region = Rect2(637, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyoak"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncujy"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guukq"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr4j2"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w64e4"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61qgc"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1oh7"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmxj0"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7idj"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs3ha"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om6y0"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f74dx"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qfjm"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt8sa"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqc4h"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5cvr"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptau1"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnaa6"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o20l4"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4psxo"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6edj"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vim7w"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1mdp"] +atlas = ExtResource("1_210r4") +region = Rect2(455, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4egrw"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q7o7"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dool"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn0rq"] +atlas = ExtResource("1_210r4") +region = Rect2(819, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taxoe"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a568"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qvk3"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o7xp"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae38w"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xl0m"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu8fo"] +atlas = ExtResource("1_210r4") +region = Rect2(364, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jexi5"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kshhg"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsyph"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btbwf"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x13yx"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq18c"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdprb"] +atlas = ExtResource("1_210r4") +region = Rect2(546, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtx4s"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v23g"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g40v4"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip00u"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysd0b"] +atlas = ExtResource("1_210r4") +region = Rect2(273, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5amd"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pihpe"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruoin"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27h64"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oraou"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc830"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e35h"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i302g"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8wta"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dglrj"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d28x"] +atlas = ExtResource("1_210r4") +region = Rect2(182, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7q48"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcm4t"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_walup"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa1u4"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifrg3"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wuvu"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyemq"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo8d5"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8w8j"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dakt3"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtiax"] +atlas = ExtResource("1_210r4") +region = Rect2(91, 0, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntoub"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 910, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mop6b"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 819, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jyoo"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 728, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcarn"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 637, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arwe7"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 546, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ylc6"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 455, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp2ee"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 364, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfrle"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 273, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnbtf"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 182, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mayxu"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 91, 90, 90) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xuni"] +atlas = ExtResource("1_210r4") +region = Rect2(0, 0, 90, 90) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkxgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2m3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeptg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi81t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kiun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuo3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt7rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22jsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wknge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2nxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhy0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puug5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nqtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myfgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oyx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg5em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyhi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs7c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raahm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vshaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcui2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkwk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o1q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hc35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yui0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4cqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25wl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyoak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncujy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guukq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr4j2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w64e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61qgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1oh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmxj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7idj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs3ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om6y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f74dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qfjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt8sa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqc4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5cvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptau1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnaa6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o20l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4psxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6edj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vim7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1mdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4egrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q7o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dool") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn0rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taxoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a568") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qvk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o7xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae38w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xl0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu8fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jexi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kshhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsyph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btbwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x13yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq18c") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdprb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtx4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v23g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g40v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip00u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysd0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5amd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pihpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruoin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27h64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oraou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc830") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e35h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i302g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8wta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dglrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d28x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7q48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcm4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_walup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa1u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifrg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wuvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyemq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo8d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8w8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dakt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtiax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntoub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mop6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jyoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcarn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arwe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ylc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp2ee") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfrle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnbtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mayxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xuni") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_remora.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_remora.tres new file mode 100644 index 0000000..e420622 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_remora.tres @@ -0,0 +1,750 @@ +[gd_resource type="SpriteFrames" load_steps=104 format=3 uid="uid://bi5hbobfd2kuj"] + +[ext_resource type="Texture2D" uid="uid://vbejsx2442mm" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png" id="1_v2ik3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuw7i"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m8in"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovkfk"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gqdj"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkjr1"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnek6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66akj"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elhu4"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5je4y"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1eh4"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_215mx"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha14t"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl5my"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1bhs"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fij7a"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xqdl"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pur7h"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mk74"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_336wo"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rssi5"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqb44"] +atlas = ExtResource("1_v2ik3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj1d6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3gh1"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndbiv"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu1gq"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8qfp"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52soo"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcrl6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phwjg"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cx2e"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfm5g"] +atlas = ExtResource("1_v2ik3") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh741"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoena"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdniv"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgi0y"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn0mk"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgqge"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i4nu"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeu1a"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdc2h"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgj1g"] +atlas = ExtResource("1_v2ik3") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0nv8"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm3t6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agnmv"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufpqk"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ti7w"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke8mg"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f62nx"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wtdi"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcid2"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn7lb"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3e7w"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gd2r"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxtmm"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flv01"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb4yb"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vomqj"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lowds"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byqgx"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuaoe"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2dqa"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpknh"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xudv6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_letwg"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvm8t"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh6s6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xa2e"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj6b3"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twes5"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blqvu"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03voy"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx1oo"] +atlas = ExtResource("1_v2ik3") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uvxv"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk8e6"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mxpa"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k35na"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxoxd"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggn0i"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auj8e"] +atlas = ExtResource("1_v2ik3") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkq6s"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bn4d"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46uq8"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgrpu"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i877g"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wkim"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjw3n"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg03a"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcjdh"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67sks"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiw2y"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4fef"] +atlas = ExtResource("1_v2ik3") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry8jl"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjdv0"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a4ak"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0cyi"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c31f0"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hst86"] +atlas = ExtResource("1_v2ik3") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8g4f"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3hgg"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40cu4"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01x8u"] +atlas = ExtResource("1_v2ik3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4cv4"] +atlas = ExtResource("1_v2ik3") +region = Rect2(303, 909, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuw7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m8in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovkfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gqdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkjr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnek6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66akj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elhu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5je4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1eh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_215mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha14t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl5my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1bhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fij7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xqdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pur7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mk74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_336wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rssi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqb44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj1d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3gh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndbiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu1gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8qfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52soo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcrl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phwjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cx2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfm5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh741") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoena") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdniv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgi0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn0mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgqge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i4nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeu1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdc2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgj1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0nv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm3t6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_agnmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufpqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ti7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke8mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f62nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wtdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcid2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn7lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3e7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gd2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxtmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flv01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb4yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vomqj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lowds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byqgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuaoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2dqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpknh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xudv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_letwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvm8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh6s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xa2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj6b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twes5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blqvu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_03voy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx1oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uvxv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk8e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mxpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k35na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxoxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggn0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auj8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkq6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bn4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46uq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgrpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i877g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wkim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjw3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg03a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcjdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67sks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiw2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4fef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry8jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjdv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a4ak") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0cyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c31f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hst86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8g4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3hgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40cu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01x8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4cv4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_shadowdancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_shadowdancer.tres new file mode 100644 index 0000000..4fa4fd1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_shadowdancer.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://bhfehbjodc37q"] + +[ext_resource type="Texture2D" uid="uid://36j0golqossi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png" id="1_jxmuh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bb7"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pycji"] +atlas = ExtResource("1_jxmuh") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eo7a"] +atlas = ExtResource("1_jxmuh") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ja5e"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3kbw"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rexh"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgtsm"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddu6a"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfwun"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u77ar"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73llq"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq6x8"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv5gf"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kwlg"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2d5f"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8h42"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uanl"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kn5j"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yr1a"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqaxu"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l186e"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6cft"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p81ot"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tt0x"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00s0l"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25kkg"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6piw"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uylv0"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjwrt"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lwmh"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4uq1"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2bot"] +atlas = ExtResource("1_jxmuh") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcom8"] +atlas = ExtResource("1_jxmuh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yghii"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnbqo"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62k1p"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_com2l"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwfju"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ukl"] +atlas = ExtResource("1_jxmuh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_838q4"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0vtq"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp62q"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq30c"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64o7r"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lrog"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abpay"] +atlas = ExtResource("1_jxmuh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnxmf"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6qv1"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nw5c"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee3gp"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7qef"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfhh0"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b0ko"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhkvn"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vsmf"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tkr5"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wwim"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oslm"] +atlas = ExtResource("1_jxmuh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0bb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pycji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eo7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ja5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3kbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rexh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgtsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddu6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfwun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u77ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73llq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq6x8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv5gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kwlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2d5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8h42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uanl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kn5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yr1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqaxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l186e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6cft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p81ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tt0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00s0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25kkg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6piw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uylv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lwmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4uq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2bot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcom8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yghii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnbqo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62k1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_com2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwfju") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ukl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_838q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0vtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp62q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq30c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64o7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lrog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abpay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnxmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6qv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nw5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee3gp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7qef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfhh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b0ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhkvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vsmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tkr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wwim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oslm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sinergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sinergyunit.tres new file mode 100644 index 0000000..8d8d045 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sinergyunit.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://cocip7koqdgm5"] + +[ext_resource type="Texture2D" uid="uid://bdeck1u0sgup4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png" id="1_jdshr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3nbg"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plien"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1gmr"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4qd6"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okpv5"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_413st"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q5x6"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp1wa"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ld04"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa7sf"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t35ml"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6mmh"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj4av"] +atlas = ExtResource("1_jdshr") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyrj3"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3eko"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiv2c"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gbne"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r20ok"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eslm8"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgijo"] +atlas = ExtResource("1_jdshr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiwhm"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfh4p"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34n8g"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50j42"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckv0b"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1afh"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrd67"] +atlas = ExtResource("1_jdshr") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4hkk"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhayw"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbna5"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a165"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kofwh"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlx6c"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rc0h"] +atlas = ExtResource("1_jdshr") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6an2"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2w5c"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yq1b"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckx83"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2lpf"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pirbh"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv8pu"] +atlas = ExtResource("1_jdshr") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgi74"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1up63"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot2d5"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a036g"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wejxp"] +atlas = ExtResource("1_jdshr") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvvah"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puyt8"] +atlas = ExtResource("1_jdshr") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxglh"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij8e8"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgtff"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff3ep"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67tsf"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngew8"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvki"] +atlas = ExtResource("1_jdshr") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn810"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5fw0"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqh2r"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on64r"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87jp8"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba6li"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5t08"] +atlas = ExtResource("1_jdshr") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35dbo"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8wg6"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq8qo"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j285"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf5rw"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6gi5"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h72cn"] +atlas = ExtResource("1_jdshr") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47ur5"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsy5f"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2e04"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsiu5"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq0f3"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbh7g"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vxj5"] +atlas = ExtResource("1_jdshr") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp0qv"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrr5a"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6oxg"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cwh3"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duq4f"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d318k"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6to6"] +atlas = ExtResource("1_jdshr") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlmct"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6hik"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_031g6"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jneu"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrvyv"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbr3y"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d344g"] +atlas = ExtResource("1_jdshr") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3nbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plien") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1gmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4qd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okpv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_413st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q5x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp1wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ld04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa7sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t35ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6mmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj4av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyrj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3eko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiv2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gbne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r20ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eslm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgijo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiwhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfh4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34n8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50j42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckv0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1afh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrd67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4hkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhayw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbna5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a165") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kofwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlx6c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rc0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6an2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2w5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yq1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckx83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2lpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pirbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv8pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgi74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1up63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot2d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a036g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wejxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvvah") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_puyt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxglh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij8e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgtff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff3ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67tsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngew8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn810") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5fw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqh2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on64r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87jp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba6li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5t08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35dbo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8wg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq8qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j285") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf5rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6gi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h72cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47ur5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsy5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2e04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsiu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq0f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbh7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vxj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp0qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrr5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6oxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cwh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duq4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d318k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6to6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlmct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6hik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_031g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jneu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrvyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbr3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d344g") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_siren.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_siren.tres new file mode 100644 index 0000000..62b6795 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_siren.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://dflcmj5ox8pu7"] + +[ext_resource type="Texture2D" uid="uid://bfp7tqo71ek43" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png" id="1_uhcxk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1q7k"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haitq"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6eox"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v6vx"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22rsg"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xumcj"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1e5f"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1e0w"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bcuo"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8h8h"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycefc"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk3ni"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s0b2"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jby76"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0i6m"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqop5"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c28is"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d7fv"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri3wn"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s3jk"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1aqt"] +atlas = ExtResource("1_uhcxk") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ar35"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fob36"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23jcf"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l72c5"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pyib"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10os7"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hujip"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cljrs"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qua4n"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i48xb"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cwgg"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te70h"] +atlas = ExtResource("1_uhcxk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns23c"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdlqs"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxc8k"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf4xs"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpsu0"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md7ga"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxo2p"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcke8"] +atlas = ExtResource("1_uhcxk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5ybu"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrbe7"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81neb"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqfc5"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o34t"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ag1"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtu7g"] +atlas = ExtResource("1_uhcxk") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgqhj"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssxw5"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ial"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag7xd"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma0jw"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_501j8"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j5r7"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7xu8"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_627bx"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc5st"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86dfj"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojyd8"] +atlas = ExtResource("1_uhcxk") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1q7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haitq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6eox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v6vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22rsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xumcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1e5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1e0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bcuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8h8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycefc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk3ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s0b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jby76") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0i6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqop5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c28is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d7fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri3wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s3jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1aqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ar35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fob36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23jcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l72c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pyib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10os7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hujip") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cljrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qua4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i48xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cwgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te70h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns23c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdlqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxc8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf4xs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpsu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md7ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxo2p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcke8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5ybu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrbe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81neb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqfc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o34t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ag1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtu7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgqhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssxw5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ial") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag7xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma0jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_501j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j5r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7xu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_627bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc5st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86dfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojyd8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sister.tres new file mode 100644 index 0000000..94ff71d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_sister.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://kj2dw23qfi3d"] + +[ext_resource type="Texture2D" uid="uid://bxdnttldepg34" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png" id="1_tuk45"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g52jt"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3484"] +atlas = ExtResource("1_tuk45") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7qtc"] +atlas = ExtResource("1_tuk45") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2tm8"] +atlas = ExtResource("1_tuk45") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo6vi"] +atlas = ExtResource("1_tuk45") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d65if"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4dln"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhekf"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrw80"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc016"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37cui"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng28x"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esmx8"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4td74"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kimm4"] +atlas = ExtResource("1_tuk45") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cujwy"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvkr6"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raet5"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iirin"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn4l7"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iu77"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etnbb"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggt6x"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_defb3"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8dql"] +atlas = ExtResource("1_tuk45") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bgwi"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjgnq"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqdjm"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg2te"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hysso"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehxup"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugm2p"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh2ix"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dun7d"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ppj"] +atlas = ExtResource("1_tuk45") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rqjj"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1elym"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbc7k"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of8dd"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akrsm"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e65nk"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_630jj"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjqi6"] +atlas = ExtResource("1_tuk45") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eweki"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81p3s"] +atlas = ExtResource("1_tuk45") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt5yj"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak76p"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a5l7"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3rt0"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7rwr"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h0ix"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj3vb"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qvid"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7g1q"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1gu1"] +atlas = ExtResource("1_tuk45") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjkrd"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy7x5"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf2gj"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22f2y"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5juqh"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0hh2"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_342y4"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2j7k"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55bto"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oea02"] +atlas = ExtResource("1_tuk45") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7y68"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orypr"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey5ex"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ny3"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ngnw"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxqe2"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wm3m"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wl51"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mos0u"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leja3"] +atlas = ExtResource("1_tuk45") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g782y"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whr7n"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7cpb"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28ear"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxk3v"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulkdp"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hga66"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brpgi"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyoch"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anfei"] +atlas = ExtResource("1_tuk45") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g52jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3484") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7qtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2tm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo6vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d65if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4dln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhekf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrw80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc016") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37cui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng28x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esmx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4td74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kimm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cujwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvkr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raet5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iirin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn4l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iu77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etnbb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggt6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_defb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8dql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bgwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjgnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqdjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg2te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hysso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehxup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugm2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh2ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dun7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ppj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rqjj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1elym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbc7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of8dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akrsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e65nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_630jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjqi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eweki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81p3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt5yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak76p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a5l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3rt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7rwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h0ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj3vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qvid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7g1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1gu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjkrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy7x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf2gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22f2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5juqh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0hh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_342y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2j7k") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_55bto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oea02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7y68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orypr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey5ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ny3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ngnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxqe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wm3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wl51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mos0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leja3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g782y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whr7n") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7cpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28ear") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxk3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulkdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hga66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brpgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyoch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anfei") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_skullcaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_skullcaster.tres new file mode 100644 index 0000000..2118460 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_skullcaster.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://x3qvqls35a8"] + +[ext_resource type="Texture2D" uid="uid://ccg1abfwwo6rs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png" id="1_jw80y"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3udvp"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3uet"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2ps0"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsidq"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw4t0"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saq26"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny705"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sa2s"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi03j"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpq8h"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22arb"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4xtm"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo1bg"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17qxa"] +atlas = ExtResource("1_jw80y") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ne6"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i31o7"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pt0e"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s24nk"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwdvm"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fcqc"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t12bo"] +atlas = ExtResource("1_jw80y") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4tuw"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iynh8"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fobnv"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q35fc"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuhrd"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4xum"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okn6i"] +atlas = ExtResource("1_jw80y") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2sl3"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6e56"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idpk2"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5mku"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_056s8"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v568"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aduo"] +atlas = ExtResource("1_jw80y") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58b8x"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8acw"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo716"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_348tq"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v3ln"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqolt"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2vly"] +atlas = ExtResource("1_jw80y") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibjju"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjbmj"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trvhe"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1bw8"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hny0"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyfvh"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ave8"] +atlas = ExtResource("1_jw80y") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqgi0"] +atlas = ExtResource("1_jw80y") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odvsl"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh3tr"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1bac"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmef8"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqcga"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb0kc"] +atlas = ExtResource("1_jw80y") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywulm"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lpe2"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ych2p"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8j3u"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kxae"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weera"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfc4d"] +atlas = ExtResource("1_jw80y") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goqwb"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiiug"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3xki"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqero"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnk0u"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n5h6"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8ofm"] +atlas = ExtResource("1_jw80y") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3fk3"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw4y7"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27sng"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heplq"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssaag"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pklae"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfc14"] +atlas = ExtResource("1_jw80y") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3374"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f3n4"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns2ov"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix73b"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpt0i"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq0to"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irbxe"] +atlas = ExtResource("1_jw80y") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtjsw"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ij2c"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_licih"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syioq"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgaa4"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayk1f"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho5f5"] +atlas = ExtResource("1_jw80y") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy534"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc5eh"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfobp"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf8ur"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71l7x"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j50jc"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beess"] +atlas = ExtResource("1_jw80y") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3udvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3uet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2ps0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsidq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw4t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saq26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny705") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sa2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi03j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpq8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22arb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4xtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo1bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17qxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ne6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i31o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pt0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s24nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwdvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fcqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t12bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4tuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iynh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fobnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q35fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuhrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4xum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okn6i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2sl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6e56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idpk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5mku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_056s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v568") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aduo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58b8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8acw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo716") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_348tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v3ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqolt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2vly") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibjju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjbmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trvhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1bw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hny0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyfvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ave8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqgi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odvsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh3tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1bac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmef8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqcga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb0kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywulm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lpe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ych2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8j3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kxae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weera") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfc4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goqwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiiug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3xki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqero") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnk0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n5h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8ofm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3fk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw4y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27sng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heplq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssaag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pklae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfc14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3374") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f3n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns2ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix73b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpt0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq0to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irbxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtjsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ij2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_licih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syioq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgaa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayk1f") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho5f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy534") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc5eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfobp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf8ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71l7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j50jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beess") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_tier2general.tres new file mode 100644 index 0000000..5d4e61f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_tier2general.tres @@ -0,0 +1,945 @@ +[gd_resource type="SpriteFrames" load_steps=129 format=3 uid="uid://bc66o4p27t22l"] + +[ext_resource type="Texture2D" uid="uid://5rr3f0kdm0am" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png" id="1_psx4k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6exu"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrkuh"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utruu"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdcon"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olapq"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4otoy"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07dc0"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq8ll"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex88t"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc7r5"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y6ab"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ih0q"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyorf"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk7bf"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaoc3"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm10t"] +atlas = ExtResource("1_psx4k") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyx4b"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_518ru"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd3a2"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_menq7"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai4e8"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5i7d"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orrkg"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwv2w"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjpoo"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8mel"] +atlas = ExtResource("1_psx4k") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8jy4"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgqi8"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sdnf"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_holou"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ma5l"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tt1r"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a165c"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l7t3"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aenml"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb8i2"] +atlas = ExtResource("1_psx4k") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ob08"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvxh"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xie2l"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elglp"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee3yy"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xiqi"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ona3n"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axomo"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2poy7"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33pjn"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26mfp"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui6ot"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0jnp"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjaci"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mor23"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1beo"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g15gt"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arhnq"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olh01"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssnsy"] +atlas = ExtResource("1_psx4k") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_682kt"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6vp5"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51tpm"] +atlas = ExtResource("1_psx4k") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoxeo"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxpld"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31utc"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqp1a"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hubia"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j64vc"] +atlas = ExtResource("1_psx4k") +region = Rect2(1212, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiiio"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6v71"] +atlas = ExtResource("1_psx4k") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lvgp"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k47mi"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2u7r"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_035bd"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7rd8"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co430"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vfnw"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48p8o"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d75o7"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82me7"] +atlas = ExtResource("1_psx4k") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64anf"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6nka"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71ggt"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tghun"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdg5y"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxk5m"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tulq7"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4s5w"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc2qj"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nhci"] +atlas = ExtResource("1_psx4k") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kwys"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onegf"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24e7g"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo6lt"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gytg6"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjl8a"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilffw"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptnei"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjtik"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv87v"] +atlas = ExtResource("1_psx4k") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p17i"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvxt1"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44t2d"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wghmm"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ipdu"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brnf0"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onowy"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nefqe"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fob63"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q0o2"] +atlas = ExtResource("1_psx4k") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myp1p"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfpb1"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfaeg"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wauwt"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd75e"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3bdd"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nys1x"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvlf4"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtte4"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46dri"] +atlas = ExtResource("1_psx4k") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmxmc"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s80n8"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgrct"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0n7j"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15a2w"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4xt0"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiefm"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lss8j"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c0th"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0qyq"] +atlas = ExtResource("1_psx4k") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6exu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrkuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utruu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdcon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olapq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4otoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07dc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq8ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex88t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc7r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y6ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ih0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyorf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk7bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaoc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm10t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyx4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_518ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd3a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_menq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai4e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5i7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orrkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwv2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjpoo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8mel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8jy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgqi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sdnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_holou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ma5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tt1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a165c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l7t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aenml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb8i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ob08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uvxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xie2l") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_elglp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee3yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xiqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ona3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axomo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2poy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33pjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26mfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui6ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0jnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjaci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mor23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1beo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g15gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arhnq") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_olh01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssnsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_682kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6vp5") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_51tpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoxeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxpld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31utc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqp1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hubia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j64vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiiio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6v71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lvgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k47mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2u7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_035bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7rd8") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_co430") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vfnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48p8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d75o7") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_82me7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64anf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6nka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71ggt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tghun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdg5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxk5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tulq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4s5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc2qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nhci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kwys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onegf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24e7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo6lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gytg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjl8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilffw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptnei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjtik") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv87v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p17i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvxt1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_44t2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wghmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ipdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brnf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onowy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nefqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fob63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q0o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myp1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfpb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfaeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wauwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd75e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3bdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nys1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvlf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtte4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46dri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmxmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s80n8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgrct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0n7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15a2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4xt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiefm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lss8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c0th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0qyq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_underworldbrute.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_underworldbrute.tres new file mode 100644 index 0000000..f822008 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f4_underworldbrute.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://d05ct6rv8rvrk"] + +[ext_resource type="Texture2D" uid="uid://bhto10jvyjbwa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png" id="1_erd5k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3xik"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol83m"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0lhy"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn2ok"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xikex"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm34k"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgua4"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gymi0"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjuqg"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd4lc"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrd6m"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjroq"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm3go"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ovf5"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7hp3"] +atlas = ExtResource("1_erd5k") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx4x8"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur26s"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8nej"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ege30"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnb5e"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrwgu"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0jvp"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ds22"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us4b3"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rurvg"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1epc3"] +atlas = ExtResource("1_erd5k") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khub6"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxxxo"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke4qx"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoann"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kobc"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v4vg"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2p85"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456kh"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o1p0"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu84q"] +atlas = ExtResource("1_erd5k") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyi86"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16kt0"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdib1"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3sap"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4rqv"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4o6c"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ojwi"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa5nk"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cccx1"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acr6q"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo2in"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3us2"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_busq1"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aedsr"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph1mo"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_631wl"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhcx6"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_471ji"] +atlas = ExtResource("1_erd5k") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqa1p"] +atlas = ExtResource("1_erd5k") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dihn"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or7xi"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvmhf"] +atlas = ExtResource("1_erd5k") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1siy"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27wp6"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wco4x"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtkti"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc4ds"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pinbo"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nlsx"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j48w"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0f4v"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1seoa"] +atlas = ExtResource("1_erd5k") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmkbe"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44l4r"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyg0m"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo030"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtp4a"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfsum"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46lbo"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy35h"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4wrs"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5mls"] +atlas = ExtResource("1_erd5k") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3xik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol83m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0lhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn2ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xikex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm34k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgua4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gymi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjuqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd4lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrd6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjroq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ovf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7hp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx4x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur26s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8nej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ege30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnb5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrwgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0jvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ds22") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_us4b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rurvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1epc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khub6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxxxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke4qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoann") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kobc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v4vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2p85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_456kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o1p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu84q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyi86") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_16kt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdib1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3sap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4rqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4o6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ojwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa5nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cccx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acr6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo2in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3us2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_busq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aedsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph1mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_631wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhcx6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_471ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqa1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dihn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_or7xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvmhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1siy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27wp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wco4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtkti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc4ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pinbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nlsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j48w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0f4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1seoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmkbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44l4r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyg0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo030") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtp4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfsum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46lbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy35h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4wrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5mls") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_3rdgeneral.tres new file mode 100644 index 0000000..db2ceca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_3rdgeneral.tres @@ -0,0 +1,812 @@ +[gd_resource type="SpriteFrames" load_steps=110 format=3 uid="uid://cnitrvyni30l3"] + +[ext_resource type="Texture2D" uid="uid://d1aduyu4dinur" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png" id="1_nq0cr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m62dm"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gvb5"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u27ha"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0x7n"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltmi8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnmjd"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unlo0"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp707"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf11u"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3htag"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6uns"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vawl"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcusf"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmmhh"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l0y8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqx7o"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxn8o"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5usio"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyu2g"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyffk"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s7dr"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63t2a"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c526c"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppbef"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eeh0"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex78h"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq7m8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmr2h"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoe81"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlfl2"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yclkm"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7dfd"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hod1"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sfw7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb84s"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpkq7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y1wo"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73tmx"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gil7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq8ir"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7spix"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkyis"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es13a"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv03f"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aprgw"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txby6"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae3qi"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14015"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_068wr"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix5gi"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bjbw"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq35w"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwc6d"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0nvg"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iafdy"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiq23"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow4jn"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfics"] +atlas = ExtResource("1_nq0cr") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0rgi"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0w06"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcrvm"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ark8i"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gg2w"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lru7c"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31md7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tko2"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8brl7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4mar"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53mjp"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wadol"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pfoo"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip21y"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3bj2"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfsiy"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8juc0"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45rjn"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3evm8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hbff"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07euo"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb1ro"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le0u7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gyuc"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ww8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wqf7"] +atlas = ExtResource("1_nq0cr") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utqrl"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1ggx"] +atlas = ExtResource("1_nq0cr") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdghm"] +atlas = ExtResource("1_nq0cr") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d805m"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnkj3"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unuax"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhken"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpwub"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76bqi"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pivs"] +atlas = ExtResource("1_nq0cr") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5epsw"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_333y8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cfum"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcei8"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mc42"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lakv2"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaojv"] +atlas = ExtResource("1_nq0cr") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14by"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxabm"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe4uo"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f76r6"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f85qs"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufskd"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_183ow"] +atlas = ExtResource("1_nq0cr") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m62dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gvb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u27ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0x7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltmi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnmjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unlo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp707") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf11u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3htag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6uns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vawl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcusf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmmhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l0y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqx7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxn8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5usio") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyu2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyffk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s7dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63t2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c526c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppbef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eeh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex78h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq7m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmr2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoe81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlfl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yclkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7dfd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hod1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sfw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb84s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpkq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y1wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73tmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gil7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq8ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7spix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkyis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es13a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv03f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aprgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txby6") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae3qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14015") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_068wr") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix5gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bjbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq35w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwc6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0nvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iafdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiq23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow4jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfics") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0rgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0w06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcrvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ark8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gg2w") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lru7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31md7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tko2") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8brl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4mar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53mjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wadol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pfoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip21y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3bj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfsiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8juc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45rjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3evm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hbff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07euo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb1ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le0u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gyuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ww8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wqf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utqrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1ggx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdghm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d805m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnkj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unuax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhken") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpwub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76bqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pivs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5epsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_333y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cfum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcei8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mc42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lakv2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaojv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxabm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe4uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f76r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f85qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufskd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_183ow") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneral.tres new file mode 100644 index 0000000..c5b1769 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneral.tres @@ -0,0 +1,756 @@ +[gd_resource type="SpriteFrames" load_steps=102 format=3 uid="uid://bjvj8et34adbg"] + +[ext_resource type="Texture2D" uid="uid://wku33v02tfeh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png" id="1_5n61v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lsyl"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdop5"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy6yw"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dariw"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7q2q"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hti80"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxnrs"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd35v"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fljey"] +atlas = ExtResource("1_5n61v") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulv6l"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6mae"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dcp2"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aj2k"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp7lm"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xnh4"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3efh7"] +atlas = ExtResource("1_5n61v") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_776gp"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qcei"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bosea"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixop7"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiw1d"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2npg"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8o1m"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bajos"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0t8i"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jfxo"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38yf1"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ole0u"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t70ro"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agcw6"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svqpe"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_577v0"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imfln"] +atlas = ExtResource("1_5n61v") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oytgi"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5mda"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5acse"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylneh"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncef2"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4jo0"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghtuk"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jsny"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cijp2"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfobg"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mf1d"] +atlas = ExtResource("1_5n61v") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tckai"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgo03"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po0oq"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg4ds"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovcyh"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r768k"] +atlas = ExtResource("1_5n61v") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evbqe"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypmym"] +atlas = ExtResource("1_5n61v") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gxuh"] +atlas = ExtResource("1_5n61v") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u8dj"] +atlas = ExtResource("1_5n61v") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3ftp"] +atlas = ExtResource("1_5n61v") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytho1"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbwld"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prlhh"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtd7w"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otp85"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr3bi"] +atlas = ExtResource("1_5n61v") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5n81"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6sm7"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2jf4"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwq5v"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1mhj"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyec0"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg5xe"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c0a0"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp4qq"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26wu0"] +atlas = ExtResource("1_5n61v") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7qrf"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u41aq"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpakj"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es2sn"] +atlas = ExtResource("1_5n61v") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btydn"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfed1"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w548"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia8sj"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8umu1"] +atlas = ExtResource("1_5n61v") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8r5t"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85yim"] +atlas = ExtResource("1_5n61v") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3oxd"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co3aw"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqteu"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en5dv"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52243"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ctqe"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v433f"] +atlas = ExtResource("1_5n61v") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tmyc"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a86l8"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fits2"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ix8"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26jh2"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eja6"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q51nt"] +atlas = ExtResource("1_5n61v") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6385"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwdh8"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4n2j"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58suq"] +atlas = ExtResource("1_5n61v") +region = Rect2(393, 393, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lsyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdop5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy6yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dariw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7q2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hti80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxnrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd35v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fljey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulv6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6mae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dcp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aj2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp7lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xnh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3efh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_776gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qcei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bosea") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixop7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiw1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2npg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8o1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bajos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0t8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jfxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38yf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ole0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t70ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agcw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svqpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_577v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imfln") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oytgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5mda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5acse") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylneh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncef2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4jo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghtuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jsny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cijp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfobg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mf1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tckai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgo03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po0oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg4ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovcyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r768k") +}], +"loop": true, +"name": &"casting", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evbqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypmym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gxuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u8dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3ftp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytho1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbwld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prlhh") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtd7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otp85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr3bi") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5n81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6sm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2jf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwq5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1mhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyec0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg5xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c0a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp4qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26wu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7qrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u41aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpakj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es2sn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_btydn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfed1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w548") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia8sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8umu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8r5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85yim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3oxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co3aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqteu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en5dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52243") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ctqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v433f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tmyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a86l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fits2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ix8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26jh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eja6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q51nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6385") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwdh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4n2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58suq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneraltier2.tres new file mode 100644 index 0000000..0e39cc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_altgeneraltier2.tres @@ -0,0 +1,868 @@ +[gd_resource type="SpriteFrames" load_steps=118 format=3 uid="uid://b4kxirxbwrcja"] + +[ext_resource type="Texture2D" uid="uid://d2jkarcnn7bcr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png" id="1_uf1bd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vkqx"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wluw"] +atlas = ExtResource("1_uf1bd") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dj14"] +atlas = ExtResource("1_uf1bd") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp7ll"] +atlas = ExtResource("1_uf1bd") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvv1"] +atlas = ExtResource("1_uf1bd") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehlwv"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnmbp"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to0xe"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76jpk"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmywc"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts8in"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6awko"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhfjs"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chcog"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2yj8"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x543"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odjmn"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ayp1"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pofnh"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gag6q"] +atlas = ExtResource("1_uf1bd") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew4iv"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l77h4"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa661"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_775ag"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw751"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_halio"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdfl7"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edrks"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5m15"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxgy7"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22okk"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7bjh"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twjyv"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l3pu"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_famf2"] +atlas = ExtResource("1_uf1bd") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55btm"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyjj4"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk688"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdebb"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oguqq"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yhka"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwjbi"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg2vn"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12s0o"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mphh2"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0atl5"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3otc"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiw3i"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kexyw"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tenrf"] +atlas = ExtResource("1_uf1bd") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kk0n"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwm1f"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sccj8"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xubyt"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpp8s"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp3km"] +atlas = ExtResource("1_uf1bd") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj3x6"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqex1"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srvw7"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlgs8"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s66dr"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywdgd"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6jow"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f3cs"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b27g"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cue5o"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kpga"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iua68"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvmlx"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yinl"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0suc8"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x5fa"] +atlas = ExtResource("1_uf1bd") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp0ng"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04kpa"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bym0w"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id53s"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aypbh"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0cvk"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ew5y"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swkvy"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n0sr"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gwbs"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6tit"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljxip"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4u6"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaakb"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl0jx"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsa64"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovjrt"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4lwv"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rycsk"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iek2x"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn2fu"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jayn"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcho5"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr428"] +atlas = ExtResource("1_uf1bd") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj3re"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mu0k"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnknc"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uddey"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnlni"] +atlas = ExtResource("1_uf1bd") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8snhj"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8xfe"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcju5"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0en76"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l27l"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2kyr"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bias"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wg5x"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0o48"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bank6"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcruj"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he7yn"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7thyu"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvw01"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh1ue"] +atlas = ExtResource("1_uf1bd") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vkqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wluw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dj14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehlwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnmbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to0xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76jpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmywc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts8in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6awko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhfjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chcog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2yj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x543") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odjmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ayp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pofnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gag6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew4iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l77h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa661") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_775ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw751") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_halio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdfl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edrks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5m15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxgy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22okk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7bjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twjyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l3pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_famf2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_55btm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyjj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk688") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdebb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oguqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yhka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwjbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg2vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12s0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mphh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0atl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3otc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiw3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kexyw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tenrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kk0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwm1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sccj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xubyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpp8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp3km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj3x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqex1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srvw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlgs8") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s66dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywdgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6jow") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f3cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b27g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cue5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kpga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iua68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvmlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yinl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0suc8") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x5fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp0ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04kpa") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bym0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id53s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aypbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0cvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ew5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swkvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n0sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gwbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6tit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljxip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf4u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaakb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl0jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsa64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovjrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4lwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rycsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iek2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn2fu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jayn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcho5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr428") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj3re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mu0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnknc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uddey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnlni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8snhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8xfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcju5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0en76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l27l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2kyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bias") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wg5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0o48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bank6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcruj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he7yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7thyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvw01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh1ue") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ankylos.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ankylos.tres new file mode 100644 index 0000000..19ec8c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ankylos.tres @@ -0,0 +1,792 @@ +[gd_resource type="SpriteFrames" load_steps=110 format=3 uid="uid://b2ht2dkwb332r"] + +[ext_resource type="Texture2D" uid="uid://cyh2oyxcublr0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png" id="1_4jtua"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ubm7"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y2di"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1ak6"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oedgp"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fss4"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teb0o"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7va5x"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc40k"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai0o0"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lqyw"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twmx"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5im0d"] +atlas = ExtResource("1_4jtua") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2f2s"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ue0"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v4qg"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5mas"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdar7"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hap6v"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rledo"] +atlas = ExtResource("1_4jtua") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p47j"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs2i1"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws7as"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwrl0"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r3xt"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kdda"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us021"] +atlas = ExtResource("1_4jtua") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irmyb"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5qq7"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pyqp"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sejbi"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvrsx"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxsk1"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdbxw"] +atlas = ExtResource("1_4jtua") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yle5"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu02j"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4e5w"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2jbn"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dwva"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nvey"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctg2n"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynk82"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj0f2"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvt17"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_satjv"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok213"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cncl4"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giatw"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmbv4"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j5vr"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uryy3"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tld03"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_566tr"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpihc"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj26i"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_400vq"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iiv6"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buyei"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3minm"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq5cs"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tthul"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm6u4"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txauw"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c0um"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ibxq"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0p7d"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvgkn"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl1uc"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u515k"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_107y4"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knv13"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcp3i"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppx0t"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl5px"] +atlas = ExtResource("1_4jtua") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl8pv"] +atlas = ExtResource("1_4jtua") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hqfo"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp7xj"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeo4c"] +atlas = ExtResource("1_4jtua") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk42o"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ml6"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_182ki"] +atlas = ExtResource("1_4jtua") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxjah"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiaan"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3svqj"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko4o5"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju2w6"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfbvo"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcuxg"] +atlas = ExtResource("1_4jtua") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q54f"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s4al"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te27a"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qjbd"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sap7p"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jn6a"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y0hc"] +atlas = ExtResource("1_4jtua") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgu4x"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmyxo"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijls4"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgcda"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ujsx"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dee2k"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dooud"] +atlas = ExtResource("1_4jtua") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6v76"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv4n0"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecft4"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxerk"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5uym"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r31cv"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi26y"] +atlas = ExtResource("1_4jtua") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ubm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y2di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1ak6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oedgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fss4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teb0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7va5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc40k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai0o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lqyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5im0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2f2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ue0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v4qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5mas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hap6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rledo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p47j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs2i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws7as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwrl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r3xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kdda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us021") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irmyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5qq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pyqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sejbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvrsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxsk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdbxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yle5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu02j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4e5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2jbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dwva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nvey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctg2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynk82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj0f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvt17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_satjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok213") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cncl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giatw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmbv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j5vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uryy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tld03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_566tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpihc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj26i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_400vq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iiv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buyei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3minm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq5cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tthul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm6u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txauw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c0um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ibxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0p7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvgkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl1uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u515k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_107y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knv13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcp3i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppx0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl5px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl8pv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hqfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp7xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeo4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk42o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ml6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_182ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxjah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiaan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3svqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko4o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju2w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfbvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcuxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q54f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s4al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te27a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qjbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sap7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jn6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y0hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgu4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmyxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijls4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgcda") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ujsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dee2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dooud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6v76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv4n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecft4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxerk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5uym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r31cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi26y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_armada.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_armada.tres new file mode 100644 index 0000000..fe35a87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_armada.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://bpwvaych66hov"] + +[ext_resource type="Texture2D" uid="uid://jif72cmkgm53" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png" id="1_phdgw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_su58a"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uv2p"] +atlas = ExtResource("1_phdgw") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh3xf"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ka0u"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c8kg"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0jox"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yukvf"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ed0u"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyp1w"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvqrq"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7mc3"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fihr"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ojxd"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5awj"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as8im"] +atlas = ExtResource("1_phdgw") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hu0x"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukvcg"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ns5"] +atlas = ExtResource("1_phdgw") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14fgg"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr1mw"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01v7u"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2aiv"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd4y5"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbwus"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebm7k"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t18r6"] +atlas = ExtResource("1_phdgw") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u5lj"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v25mm"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjjko"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gtix"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fdg2"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lso2o"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7e71"] +atlas = ExtResource("1_phdgw") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbbx6"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsq7w"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mehbu"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miqnv"] +atlas = ExtResource("1_phdgw") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8asf"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48wgl"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyv3a"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gww4"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2221"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lep"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on4sb"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0lpe"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8fel"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78b3y"] +atlas = ExtResource("1_phdgw") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s832b"] +atlas = ExtResource("1_phdgw") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_turiy"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn1j0"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16cdp"] +atlas = ExtResource("1_phdgw") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmcym"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2on2"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okv21"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bnff"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7mg8"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp22g"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e58f4"] +atlas = ExtResource("1_phdgw") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7db8"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1nvk"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_584xo"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vktyl"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hclh6"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lbir"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xgta"] +atlas = ExtResource("1_phdgw") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc83j"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrb8y"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ws4a"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4nue"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsnva"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb1q4"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riwbe"] +atlas = ExtResource("1_phdgw") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_su58a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uv2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh3xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ka0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c8kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0jox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yukvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ed0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyp1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvqrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7mc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fihr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ojxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5awj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as8im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hu0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukvcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ns5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14fgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr1mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01v7u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2aiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd4y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbwus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebm7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t18r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u5lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v25mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjjko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gtix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fdg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lso2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7e71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbbx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsq7w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mehbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miqnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8asf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48wgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyv3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gww4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2221") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on4sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0lpe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8fel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78b3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s832b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_turiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn1j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16cdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmcym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2on2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okv21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bnff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7mg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp22g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e58f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7db8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1nvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_584xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vktyl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hclh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lbir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xgta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc83j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrb8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ws4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4nue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsnva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb1q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riwbe") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_brundlbeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_brundlbeast.tres new file mode 100644 index 0000000..f269bce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_brundlbeast.tres @@ -0,0 +1,680 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://dekiv0qd1dd7a"] + +[ext_resource type="Texture2D" uid="uid://dttu3qdt5yhnv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png" id="1_hngn5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n5bg"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m13h0"] +atlas = ExtResource("1_hngn5") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8x27"] +atlas = ExtResource("1_hngn5") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l0cs"] +atlas = ExtResource("1_hngn5") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_684wp"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv0pc"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ije4o"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0iyl"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fiw7"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8avn2"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52nxg"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2flx7"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j68x7"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p87n"] +atlas = ExtResource("1_hngn5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nck7s"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no8iw"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypnct"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h41jf"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqx04"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3s1j"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxgnj"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxj84"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgf0h"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rr8h"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8culi"] +atlas = ExtResource("1_hngn5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kl6w"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im6qe"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neiqq"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m346x"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xlid"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amwv7"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hurgo"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibmkt"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk51c"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm5cy"] +atlas = ExtResource("1_hngn5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_effit"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwsh8"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bucw"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl4jx"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26vhh"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw4mv"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpvuw"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65x42"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmsus"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeo5x"] +atlas = ExtResource("1_hngn5") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31h2u"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3fhh"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krs7f"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf12p"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkcxc"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmyoa"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejfh1"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip7d1"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03xul"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkeiu"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cea3d"] +atlas = ExtResource("1_hngn5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3vt7"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itagp"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58m8f"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x46lu"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7y0j"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogrko"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we8lk"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtaj"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w4qe"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa5hr"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djghe"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5hri"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tmnb"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7qid"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4ayb"] +atlas = ExtResource("1_hngn5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ajie"] +atlas = ExtResource("1_hngn5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wp3a"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tle1q"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66res"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xs6p"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1ivi"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41k73"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfvy1"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcv2v"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8slp"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dryvt"] +atlas = ExtResource("1_hngn5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swqja"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7h34"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ddvl"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlvl0"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr4ui"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igulf"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq1lc"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s5rr"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17efj"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5j6q"] +atlas = ExtResource("1_hngn5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n5bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m13h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8x27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l0cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_684wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv0pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ije4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0iyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fiw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8avn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52nxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2flx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j68x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p87n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nck7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no8iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypnct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h41jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqx04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3s1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxgnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxj84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgf0h") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rr8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8culi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kl6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im6qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neiqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m346x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xlid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amwv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hurgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibmkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk51c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm5cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_effit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwsh8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bucw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl4jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26vhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw4mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpvuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65x42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmsus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeo5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31h2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3fhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krs7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf12p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkcxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmyoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejfh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip7d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03xul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkeiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cea3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3vt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itagp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58m8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x46lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7y0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogrko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we8lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w4qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa5hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djghe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5hri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tmnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7qid") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4ayb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ajie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wp3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tle1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66res") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xs6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1ivi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41k73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfvy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcv2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8slp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dryvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swqja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7h34") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ddvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlvl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr4ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq1lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s5rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17efj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5j6q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildcommon.tres new file mode 100644 index 0000000..7f26078 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildcommon.tres @@ -0,0 +1,680 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://bgbh34yy5n26r"] + +[ext_resource type="Texture2D" uid="uid://y1pgegd167fk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png" id="1_h4h2m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqjtt"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv31h"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo472"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qv6f"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gus8y"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woyp7"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5mcj"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h42ja"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd3t8"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2l2q"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af707"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jasmi"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrrkm"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dugus"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db0d0"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv1y6"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5a70"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xilsl"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygw2q"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlgj0"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnmut"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j2a2"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apsvt"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqwt0"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f6ql"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmecu"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy37j"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf6rs"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vpcw"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o86rs"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6binr"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyfgu"] +atlas = ExtResource("1_h4h2m") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ucv"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_604da"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pooy"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swogj"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo8wk"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nkpd"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a14b"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jpes"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx6e0"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y47wa"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re3s8"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb0wu"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll13m"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a7ef"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kklvk"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3olsa"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoyav"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupgf"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk517"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifvt4"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7brb"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8ov"] +atlas = ExtResource("1_h4h2m") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0l56"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxhct"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kscw"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixhfo"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22r8u"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7fld"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl0af"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbk7x"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nptag"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvdq5"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6jr6"] +atlas = ExtResource("1_h4h2m") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evvpv"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6s4o"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i5ue"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmt1j"] +atlas = ExtResource("1_h4h2m") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ta3n"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37mht"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6cy8"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mioek"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csa1h"] +atlas = ExtResource("1_h4h2m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i40a"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwlks"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hhmn"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx1i7"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rktk8"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg73j"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_372gq"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gibi"] +atlas = ExtResource("1_h4h2m") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogc21"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpexr"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2v5g"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0nsx"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0to2"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8iqy"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fojyu"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhiww"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0stcv"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suixj"] +atlas = ExtResource("1_h4h2m") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqjtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv31h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo472") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qv6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gus8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woyp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5mcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h42ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd3t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2l2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af707") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jasmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrrkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dugus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db0d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv1y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5a70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xilsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygw2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlgj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnmut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j2a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apsvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqwt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f6ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmecu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy37j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf6rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vpcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o86rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6binr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyfgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ucv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_604da") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pooy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swogj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo8wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nkpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a14b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jpes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx6e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y47wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re3s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb0wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll13m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a7ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kklvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3olsa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoyav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pupgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk517") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifvt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7brb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0l56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxhct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kscw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixhfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22r8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7fld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl0af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbk7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nptag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvdq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6jr6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evvpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6s4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i5ue") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmt1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ta3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37mht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6cy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mioek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csa1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i40a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwlks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hhmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx1i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rktk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg73j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_372gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gibi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogc21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpexr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2v5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0nsx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0to2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8iqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fojyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhiww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0stcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suixj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildminion.tres new file mode 100644 index 0000000..fff504a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bmhsehmihup1r"] + +[ext_resource type="Texture2D" uid="uid://cogdealq6cs5e" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png" id="1_8xyqh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y0n4"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1ftp"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53cua"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78q4n"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubm55"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t021x"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stuqg"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn54v"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejx5n"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uexk"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4ncn"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ysqb"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qah24"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cud0y"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdgte"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbv0n"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_106a2"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2d8i"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55r05"] +atlas = ExtResource("1_8xyqh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2xdx"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7u47"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xyjr"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0qjk"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tys73"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh3ki"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7odab"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh1c6"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d37ri"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83ton"] +atlas = ExtResource("1_8xyqh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifjwa"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh225"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aysry"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewkd3"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy2bp"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frfiq"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo6pj"] +atlas = ExtResource("1_8xyqh") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oim1q"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5knc"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7s8d"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbj1c"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdais"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjgi1"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii8g0"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4rh5"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inbed"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u53r0"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gd2q"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u6s3"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12rok"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxccf"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u30s"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auwbx"] +atlas = ExtResource("1_8xyqh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd6k8"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jbxy"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pjj2"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1r1t"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmrgh"] +atlas = ExtResource("1_8xyqh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cvln"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3tr4"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyl34"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2b6r"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeq2q"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pevn1"] +atlas = ExtResource("1_8xyqh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx8pg"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17gw4"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntbsq"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8npo"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87jth"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqktp"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq8sg"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk6g0"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odrcg"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36iyi"] +atlas = ExtResource("1_8xyqh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y0n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1ftp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53cua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78q4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubm55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t021x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stuqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn54v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejx5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uexk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4ncn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ysqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qah24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cud0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdgte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbv0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_106a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2d8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55r05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2xdx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7u47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xyjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0qjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tys73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh3ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7odab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh1c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d37ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83ton") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifjwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh225") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aysry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewkd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy2bp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_frfiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo6pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oim1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5knc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7s8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbj1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdais") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjgi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii8g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4rh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inbed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u53r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gd2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u6s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12rok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxccf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u30s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auwbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd6k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jbxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pjj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1r1t") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmrgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cvln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3tr4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyl34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2b6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeq2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pevn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx8pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17gw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntbsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8npo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87jth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqktp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq8sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk6g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odrcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36iyi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_catalystquillbeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_catalystquillbeast.tres new file mode 100644 index 0000000..00fd4b4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_catalystquillbeast.tres @@ -0,0 +1,736 @@ +[gd_resource type="SpriteFrames" load_steps=102 format=3 uid="uid://b24h7g3wqy2sx"] + +[ext_resource type="Texture2D" uid="uid://b3e8oiqwjug44" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png" id="1_o6gew"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv1vu"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilv7b"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqyf2"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gb11"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxmox"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbjba"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaf6d"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md6ql"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wwa1"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfs3r"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpkvt"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u5kf"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3qoi"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0esy"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2m2w"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btokc"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v286v"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyf4p"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0rsa"] +atlas = ExtResource("1_o6gew") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6g6t"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qhpa"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rbj0"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n3pl"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twiri"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xhdl"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh0tb"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukofw"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssg23"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1inl"] +atlas = ExtResource("1_o6gew") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u66rk"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy2c3"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o7q0"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afwo2"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhlae"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrilv"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3ic4"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7gk7"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2nn2"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g0r2"] +atlas = ExtResource("1_o6gew") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpk8k"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gkjm"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4qol"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uk72"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocqtw"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gits5"] +atlas = ExtResource("1_o6gew") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpw1h"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7svlg"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjlwb"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynucm"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek2et"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttawn"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l87s4"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4mgv"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irdqd"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t2n1"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjghg"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sxyy"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0n7e"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxuai"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mghp"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_same7"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tody1"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oryi"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbfee"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_031cv"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj0u7"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8h3s"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6s0i"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3qae"] +atlas = ExtResource("1_o6gew") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpwtp"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mo3e"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4vuq"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oef1"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4smtd"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrcn1"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mttxr"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq6xu"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lw06"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w4vo"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bumgy"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7syq"] +atlas = ExtResource("1_o6gew") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k650v"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvqtg"] +atlas = ExtResource("1_o6gew") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6dq8"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5npm"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij4xp"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bj50"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xkby"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehdsu"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqfke"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7xec"] +atlas = ExtResource("1_o6gew") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_508pu"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ib74"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gcmy"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seqpj"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rasx3"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li4fg"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i2ev"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4opco"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2wst"] +atlas = ExtResource("1_o6gew") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv1vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilv7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqyf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gb11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxmox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbjba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaf6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md6ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wwa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfs3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpkvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u5kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3qoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0esy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2m2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btokc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v286v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyf4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0rsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6g6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qhpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rbj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n3pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twiri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xhdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh0tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukofw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssg23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1inl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u66rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy2c3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o7q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afwo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhlae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrilv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3ic4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7gk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2nn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g0r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpk8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gkjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4qol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uk72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocqtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gits5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpw1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7svlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjlwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek2et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttawn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l87s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4mgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irdqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t2n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjghg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sxyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0n7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxuai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mghp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_same7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tody1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbfee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_031cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj0u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8h3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6s0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3qae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpwtp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mo3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4vuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oef1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4smtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrcn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mttxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq6xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lw06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w4vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bumgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7syq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k650v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvqtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6dq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5npm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij4xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bj50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xkby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehdsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqfke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7xec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_508pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ib74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gcmy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_seqpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rasx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li4fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i2ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4opco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2wst") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_dreadnaught.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_dreadnaught.tres new file mode 100644 index 0000000..ddd4187 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_dreadnaught.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://dyowwotsqif6t"] + +[ext_resource type="Texture2D" uid="uid://p2hwp7gq238k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png" id="1_2yxc2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_15yd1"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip81a"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u71d"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joc5n"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76jrn"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wthk8"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acro2"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty4sb"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nentw"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6olr"] +atlas = ExtResource("1_2yxc2") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0lhh"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv7ax"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv6sx"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4tj4"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33amp"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb0tu"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhmv7"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy1ub"] +atlas = ExtResource("1_2yxc2") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a33cu"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0htag"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvj4p"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vk27"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3452"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5visq"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gsb5"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuo5b"] +atlas = ExtResource("1_2yxc2") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s2hd"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgdml"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8e00"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f6d4"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q4vn"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unemi"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50gg6"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4pu7"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4bti"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4enu"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jpjh"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwg0b"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55t3p"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8iq1x"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jphdj"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o65"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3vce"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh4a3"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ysa"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq7qn"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wky8"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ldpq"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqrio"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tio0y"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4pd"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03ku3"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjxdh"] +atlas = ExtResource("1_2yxc2") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waev4"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t81su"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30ufl"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b50wa"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrfs5"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oudx"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idijj"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq1pl"] +atlas = ExtResource("1_2yxc2") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ttyw"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6sgi"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1yxt"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixin6"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yowny"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37k3a"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v2oq"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwwcy"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gubqx"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkcoh"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfbeu"] +atlas = ExtResource("1_2yxc2") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl2i8"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kip2"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdapp"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s74pj"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l04q"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frund"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik2no"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdb8w"] +atlas = ExtResource("1_2yxc2") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk0wh"] +atlas = ExtResource("1_2yxc2") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovtpq"] +atlas = ExtResource("1_2yxc2") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muon3"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dbln"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mon3g"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkdsx"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gknfb"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2was"] +atlas = ExtResource("1_2yxc2") +region = Rect2(968, 242, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_15yd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip81a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u71d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joc5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76jrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wthk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acro2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty4sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nentw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6olr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0lhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv7ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv6sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4tj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33amp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb0tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhmv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy1ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a33cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0htag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvj4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vk27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3452") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5visq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gsb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuo5b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s2hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgdml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8e00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f6d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q4vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unemi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50gg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4pu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4bti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4enu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jpjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwg0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55t3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8iq1x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jphdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3vce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh4a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ysa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq7qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wky8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ldpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqrio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tio0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03ku3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjxdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waev4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t81su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ufl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b50wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrfs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oudx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idijj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq1pl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ttyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6sgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1yxt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixin6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yowny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37k3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v2oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwwcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gubqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkcoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfbeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl2i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kip2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdapp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s74pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l04q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frund") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik2no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdb8w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk0wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovtpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muon3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dbln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mon3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkdsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gknfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2was") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_drogon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_drogon.tres new file mode 100644 index 0000000..0dab00a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_drogon.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://x46y7gltrbyt"] + +[ext_resource type="Texture2D" uid="uid://c12bcy7654xyq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png" id="1_j47bb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qok18"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yl7w"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jppus"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl5ht"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yen70"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2ecx"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdnu4"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jn66"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_576k1"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02xpe"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0ci6"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ftan"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmbfr"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g21tb"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfyuy"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdh6a"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b6hc"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12e1s"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhyk8"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vla2"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5m4p"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbek6"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px6n3"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5atu"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5cg6"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48sgl"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lmx7"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a7ia"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnkid"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1v58"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15r6v"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tum7y"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ya7"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo2xa"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qybi1"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0kr7"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je71k"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyx36"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rjhk"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajomc"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yj3e"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoqrq"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxweg"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qjv6"] +atlas = ExtResource("1_j47bb") +region = Rect2(348, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jq3s"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2l4e"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f6pt"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suyo4"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flju0"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0fui"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dwt1"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxtm4"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqjhy"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqs7y"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcl4q"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv4af"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwsr0"] +atlas = ExtResource("1_j47bb") +region = Rect2(232, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jrwn"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbi7s"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chcib"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mdcm"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5naot"] +atlas = ExtResource("1_j47bb") +region = Rect2(116, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pg6m"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1856, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k233"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1740, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o4oh"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1624, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkheb"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1508, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wlce"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1392, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kejn"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1276, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jebbj"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1160, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk70r"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 1044, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bir3"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 928, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ai40"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2xos"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5kb2"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omy40"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe77w"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofsss"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxuhc"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2no18"] +atlas = ExtResource("1_j47bb") +region = Rect2(0, 0, 115, 115) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qok18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yl7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jppus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl5ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yen70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2ecx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdnu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jn66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_576k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02xpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0ci6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ftan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmbfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g21tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfyuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdh6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b6hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12e1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhyk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vla2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5m4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbek6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px6n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5atu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5cg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48sgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lmx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a7ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnkid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1v58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15r6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tum7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ya7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo2xa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qybi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0kr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je71k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyx36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rjhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajomc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yj3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoqrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxweg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qjv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jq3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2l4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f6pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suyo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flju0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0fui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dwt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxtm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqjhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqs7y") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcl4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv4af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwsr0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jrwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbi7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chcib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mdcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5naot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pg6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k233") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o4oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkheb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wlce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kejn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jebbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk70r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bir3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ai40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2xos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5kb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omy40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe77w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofsss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxuhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2no18") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_earthwalker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_earthwalker.tres new file mode 100644 index 0000000..16640d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_earthwalker.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://cwn5p1mix8bb2"] + +[ext_resource type="Texture2D" uid="uid://cu4pagq0t60jg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png" id="1_onbe5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvasb"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oke7"] +atlas = ExtResource("1_onbe5") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ph3h"] +atlas = ExtResource("1_onbe5") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibnx"] +atlas = ExtResource("1_onbe5") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twoak"] +atlas = ExtResource("1_onbe5") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77sa7"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_784er"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3bmr"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8arr"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkl3w"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yclac"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o6g8"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2bpp"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw7n0"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f1wi"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0caqe"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skmac"] +atlas = ExtResource("1_onbe5") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byw5d"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7fap"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ep4g"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e81su"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsk6k"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgccl"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh4ep"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ca0p"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjays"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3el6g"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty1bi"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x736w"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15fqv"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olgsb"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8poc"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt40v"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1468d"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf4ku"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1akay"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tbr1"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wkpq"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h5da"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlqy1"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_457s8"] +atlas = ExtResource("1_onbe5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5aix"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd5n5"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcnam"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sl18"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs70k"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3f6p"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbqwc"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kdgs"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su2m5"] +atlas = ExtResource("1_onbe5") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py5q8"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pks30"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_014ee"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp0dn"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wewj0"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x42h1"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5des7"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qix3y"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twvfr"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qrrn"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrgpr"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jri8a"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d3bk"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyrad"] +atlas = ExtResource("1_onbe5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm774"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by184"] +atlas = ExtResource("1_onbe5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snuns"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek723"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84lsp"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2gnl"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0aix"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s76sq"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pqmi"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulrfb"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6hax"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ii2"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj4k4"] +atlas = ExtResource("1_onbe5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emkd5"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmy5i"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5xqu"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsikx"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpdg5"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5lhc"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsbfv"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilsbk"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spru6"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4wv8"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5smt"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5plj"] +atlas = ExtResource("1_onbe5") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvasb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oke7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ph3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twoak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77sa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_784er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3bmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8arr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkl3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yclac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o6g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2bpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw7n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f1wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0caqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skmac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byw5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7fap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ep4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e81su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsk6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgccl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh4ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ca0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjays") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3el6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty1bi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x736w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15fqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olgsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8poc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt40v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1468d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf4ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1akay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tbr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wkpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h5da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlqy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_457s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5aix") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd5n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcnam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sl18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs70k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3f6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbqwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kdgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su2m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py5q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pks30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_014ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp0dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wewj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x42h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5des7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qix3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twvfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qrrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrgpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jri8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d3bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyrad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm774") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_by184") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snuns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek723") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_84lsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2gnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0aix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s76sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pqmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulrfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6hax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ii2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj4k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emkd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmy5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5xqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsikx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpdg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5lhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsbfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilsbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spru6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4wv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5smt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5plj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_egg.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_egg.tres new file mode 100644 index 0000000..79d9aef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_egg.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://bjbwhig4shlhc"] + +[ext_resource type="Texture2D" uid="uid://dfddplwkdkma8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png" id="1_vutmg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_chi1f"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1gg0"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a6ca"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06opu"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1jpm"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glm8c"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cngit"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kj0p"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5uvp"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pexpa"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33o5j"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmywb"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy272"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kekqm"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw7xu"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiq4x"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t8xo"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1btr"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tykgq"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jotqb"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx3ak"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdtck"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfk1n"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j0og"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4wgt"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr4hm"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0wto"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bcq4"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibn3x"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jn5c"] +atlas = ExtResource("1_vutmg") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rq4g"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge42s"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7axm"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m842"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qs8s"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34a2d"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vny7k"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f8yd"] +atlas = ExtResource("1_vutmg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku1js"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgdnj"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyli4"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_684ue"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8o2u"] +atlas = ExtResource("1_vutmg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jevjd"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjctj"] +atlas = ExtResource("1_vutmg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6mx6"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjdl3"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eleot"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcxjn"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24bt5"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ws55"] +atlas = ExtResource("1_vutmg") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fe0q"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auakf"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eifiq"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbyil"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlhyf"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ossuy"] +atlas = ExtResource("1_vutmg") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_chi1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1gg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a6ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06opu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1jpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glm8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cngit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kj0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5uvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pexpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33o5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmywb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy272") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kekqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw7xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiq4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t8xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1btr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tykgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jotqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx3ak") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdtck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfk1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j0og") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4wgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr4hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0wto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bcq4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibn3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jn5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rq4g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge42s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7axm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m842") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qs8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34a2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vny7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f8yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku1js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgdnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyli4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_684ue") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8o2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jevjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjctj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6mx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjdl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eleot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcxjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24bt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ws55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fe0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auakf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eifiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbyil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlhyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ossuy") +}], +"loop": true, +"name": &"open", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_firebreather.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_firebreather.tres new file mode 100644 index 0000000..c1f5c7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_firebreather.tres @@ -0,0 +1,580 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://cdw6df31wgftv"] + +[ext_resource type="Texture2D" uid="uid://bh4bo7ueeuro6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png" id="1_5w76j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc6tu"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_577wl"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvij7"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uboql"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cyov"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elf6a"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn5es"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxbsa"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe35n"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsxx"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6und"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sxcx"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgybr"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ych6u"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idqlr"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clt7k"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ps76"] +atlas = ExtResource("1_5w76j") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p3w2"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj7m1"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et0am"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6uyw"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxj4d"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yspo5"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlpkv"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hi2x"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkgmi"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv547"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36nbg"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2vkn"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s2tj"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s83qv"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpmy0"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5e07"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqnmg"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w1gp"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plsry"] +atlas = ExtResource("1_5w76j") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3et30"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulqyh"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpp5b"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkniq"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvc2p"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rxor"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u548m"] +atlas = ExtResource("1_5w76j") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2st1"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6avr"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjxb7"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjahg"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hhmg"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10pmb"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ykg7"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beaex"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxgo0"] +atlas = ExtResource("1_5w76j") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqa38"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bsua"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ednvj"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vkxt"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pgpt"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrbxj"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wihl"] +atlas = ExtResource("1_5w76j") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqwed"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfh2m"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt05c"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfe6e"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2upjf"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjmd0"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3im2"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kswrr"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msa35"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01eft"] +atlas = ExtResource("1_5w76j") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgtb3"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gmfg"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8t8e"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwjnd"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmf3f"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7a5d"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58ilh"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8llhm"] +atlas = ExtResource("1_5w76j") +region = Rect2(0, 202, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc6tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_577wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvij7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uboql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cyov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elf6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn5es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxbsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe35n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6und") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sxcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgybr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ych6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idqlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clt7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ps76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p3w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj7m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et0am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6uyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxj4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yspo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlpkv") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hi2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkgmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv547") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36nbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2vkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s2tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s83qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpmy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5e07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqnmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w1gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plsry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3et30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulqyh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpp5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkniq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvc2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rxor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u548m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2st1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6avr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjxb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjahg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hhmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10pmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ykg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beaex") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxgo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqa38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bsua") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ednvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vkxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pgpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrbxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wihl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqwed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfh2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt05c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfe6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2upjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjmd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3im2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kswrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msa35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01eft") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgtb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gmfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8t8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwjnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmf3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7a5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58ilh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8llhm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_flumposaur.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_flumposaur.tres new file mode 100644 index 0000000..dc696bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_flumposaur.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://741gjcg14kqg"] + +[ext_resource type="Texture2D" uid="uid://dk0wc502ndvuk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png" id="1_y42rb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsi8q"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jecv2"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6lyv"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrqsf"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omo65"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3qaw"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n80o"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrtao"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3m11"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avr3a"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xvsn"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i115t"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01jrh"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ntou"] +atlas = ExtResource("1_y42rb") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igku4"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cniws"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3cwi"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgoq6"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrs1i"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdps1"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp8jg"] +atlas = ExtResource("1_y42rb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qjls"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uvt2"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1da1p"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6060"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbtlo"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxyu8"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bdde"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h0qp"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsbxx"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qf8x"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrgha"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo5h8"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_030dk"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ek1u"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mctv"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaxow"] +atlas = ExtResource("1_y42rb") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72yi8"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5fg8"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcdju"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3c6j"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnc46"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giet8"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4x76"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqwdu"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_710ua"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g355"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uclhr"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbvo1"] +atlas = ExtResource("1_y42rb") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvd5i"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xudaf"] +atlas = ExtResource("1_y42rb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e4gj"] +atlas = ExtResource("1_y42rb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kso8k"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq63b"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyhe6"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c17ly"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqp0c"] +atlas = ExtResource("1_y42rb") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg0sm"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebpa7"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f74sw"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dodp"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5x5p"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcp1w"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8tjc"] +atlas = ExtResource("1_y42rb") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flfwm"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pag8c"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt8ia"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc0xc"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tobom"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofchj"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alvvb"] +atlas = ExtResource("1_y42rb") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsi8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jecv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6lyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrqsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omo65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3qaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n80o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrtao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3m11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avr3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xvsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i115t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01jrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ntou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igku4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cniws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3cwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgoq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrs1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdps1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp8jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qjls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uvt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1da1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6060") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbtlo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxyu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bdde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h0qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsbxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qf8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrgha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo5h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_030dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ek1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mctv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaxow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72yi8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5fg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcdju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3c6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnc46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giet8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4x76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqwdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_710ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g355") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uclhr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbvo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvd5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xudaf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e4gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kso8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq63b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyhe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c17ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqp0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg0sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebpa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f74sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dodp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5x5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcp1w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8tjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flfwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pag8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt8ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc0xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tobom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofchj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alvvb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_general.tres new file mode 100644 index 0000000..8d04911 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_general.tres @@ -0,0 +1,700 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://b60hvvg33il0m"] + +[ext_resource type="Texture2D" uid="uid://cvu84ycjh3dyf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png" id="1_tpdu0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf3v6"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_froqr"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msg5c"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k22ab"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa47t"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43b4h"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mqs6"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qddss"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rtva"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op2wb"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo8ts"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhvpf"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlyb8"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjdgo"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfduu"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq464"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqess"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08tlk"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgidm"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usth2"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar2r3"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cll3k"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khk5t"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_det35"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8j5f"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdldj"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5463"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoqol"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7xs0"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooqp4"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3pu3"] +atlas = ExtResource("1_tpdu0") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqmv1"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2njw8"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8bbr"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_472go"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hufiy"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18q71"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6jor"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saro0"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4egeg"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qwgt"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du7cg"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co2e8"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bp8h"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piofw"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usgic"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojk7c"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3win"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu0wf"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q1td"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpf6e"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvf6w"] +atlas = ExtResource("1_tpdu0") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thh32"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx8pc"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eekng"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1em81"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwk7h"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4owjc"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge3ho"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxxvs"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cutoj"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_we342"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwbw3"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy574"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uurto"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj8nd"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv3gy"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2epky"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7o1s"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la1qx"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsv8k"] +atlas = ExtResource("1_tpdu0") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njot8"] +atlas = ExtResource("1_tpdu0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyqpl"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2j6v"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwjo7"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngb7q"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke1go"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qwfy"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5avj3"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stsrc"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy5bd"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0760"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwybv"] +atlas = ExtResource("1_tpdu0") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kibrm"] +atlas = ExtResource("1_tpdu0") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj026"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wn18"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rd0l"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx8q7"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbgya"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k765"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovxd3"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft1lj"] +atlas = ExtResource("1_tpdu0") +region = Rect2(324, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf3v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_froqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msg5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k22ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa47t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43b4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mqs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qddss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rtva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op2wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo8ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhvpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlyb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjdgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfduu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq464") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqess") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_08tlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgidm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usth2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar2r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cll3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khk5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_det35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8j5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5463") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoqol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7xs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooqp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3pu3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqmv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2njw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8bbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_472go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hufiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18q71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6jor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saro0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4egeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qwgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du7cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co2e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bp8h") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_piofw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usgic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojk7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3win") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu0wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q1td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpf6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvf6w") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_thh32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx8pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eekng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1em81") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwk7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4owjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge3ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxxvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cutoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_we342") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwbw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy574") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uurto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj8nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2epky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7o1s") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_la1qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsv8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njot8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyqpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2j6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwjo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngb7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke1go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qwfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5avj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stsrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy5bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0760") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwybv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kibrm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj026") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wn18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rd0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx8q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbgya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k765") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovxd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft1lj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_genesis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_genesis.tres new file mode 100644 index 0000000..b4d7ebd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_genesis.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://caf3ln7tb71uk"] + +[ext_resource type="Texture2D" uid="uid://4n700mxs3hc8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png" id="1_deilp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6sl6"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw301"] +atlas = ExtResource("1_deilp") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chmwd"] +atlas = ExtResource("1_deilp") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m60qr"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7ga3"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob4nt"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_170so"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_074wi"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3uoc"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh6mc"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gupql"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yovup"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0jkb"] +atlas = ExtResource("1_deilp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw5qs"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70e8x"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn5rq"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybq8b"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6ivf"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb1d0"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goaha"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcvnp"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moo7c"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b80p"] +atlas = ExtResource("1_deilp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1etx"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysla4"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgx7a"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpd8s"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtptk"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w1rp"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etjux"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m2sa"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6pko"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mss16"] +atlas = ExtResource("1_deilp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kqu2"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b60h"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q5aj"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm0ek"] +atlas = ExtResource("1_deilp") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmvyg"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a64d0"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48gue"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjcux"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoobe"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3kmg"] +atlas = ExtResource("1_deilp") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho0b6"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b2n4"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iybok"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p2ke"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s68o5"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2okb"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7scdk"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmhf8"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmpt4"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l76nw"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2n5f"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtstm"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v268p"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q7th"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taonf"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5wqa"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up28r"] +atlas = ExtResource("1_deilp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqr7x"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmvdk"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scfha"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kw88"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7i84"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x54ps"] +atlas = ExtResource("1_deilp") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skg22"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43vgx"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmi5r"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54152"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5b0m"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68epa"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4dox"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w4kd"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq3kp"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bmve"] +atlas = ExtResource("1_deilp") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6sl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw301") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chmwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m60qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7ga3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob4nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_170so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_074wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3uoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh6mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gupql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yovup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0jkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw5qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70e8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn5rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybq8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6ivf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb1d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goaha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcvnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moo7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b80p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1etx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysla4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgx7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpd8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtptk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w1rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etjux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m2sa") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6pko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mss16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kqu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b60h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q5aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm0ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmvyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a64d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48gue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjcux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoobe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3kmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho0b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b2n4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iybok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p2ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s68o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2okb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7scdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmhf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmpt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l76nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2n5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtstm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v268p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q7th") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_taonf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5wqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up28r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqr7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmvdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scfha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kw88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7i84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x54ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skg22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43vgx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmi5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54152") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5b0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68epa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4dox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w4kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq3kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bmve") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gibblegup.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gibblegup.tres new file mode 100644 index 0000000..b24580d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gibblegup.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://dv2kdist8iggq"] + +[ext_resource type="Texture2D" uid="uid://c1via45r32bu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png" id="1_idgyy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xes0y"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47c5g"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwn61"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xknm5"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdn1m"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss08r"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7xut"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbn1b"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2ctk"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jy2n"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp1ab"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhpso"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3445k"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e2ws"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bvxc"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5wmq"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxpt7"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty5i8"] +atlas = ExtResource("1_idgyy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk7xf"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl4vm"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2cym"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12s1b"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7e48"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pos1w"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kfas"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pjma"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbysa"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gx08"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1udi"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu6gs"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgllc"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1une"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c3m0"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj7ic"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8027"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm1ya"] +atlas = ExtResource("1_idgyy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v66uj"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07lls"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0fvk"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb20s"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5hgi"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my0o8"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb42a"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb3sh"] +atlas = ExtResource("1_idgyy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe3sc"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3te4p"] +atlas = ExtResource("1_idgyy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irl2u"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qufhc"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c8fh"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86m24"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvjqh"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgp0l"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mprx2"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvvan"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nplau"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5l7b"] +atlas = ExtResource("1_idgyy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ferbj"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml77r"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2d1t"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ghfb"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phb30"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjotg"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1at7t"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkli3"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynpyo"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4cf1"] +atlas = ExtResource("1_idgyy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xes0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47c5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwn61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xknm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdn1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss08r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7xut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbn1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2ctk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jy2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp1ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhpso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3445k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e2ws") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bvxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5wmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxpt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty5i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk7xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl4vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2cym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12s1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7e48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pos1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kfas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pjma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbysa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gx08") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1udi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu6gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgllc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1une") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c3m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj7ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8027") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm1ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v66uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07lls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0fvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb20s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5hgi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_my0o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb42a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb3sh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe3sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3te4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irl2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qufhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c8fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86m24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvjqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgp0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mprx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvvan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nplau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5l7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ferbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml77r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2d1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ghfb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_phb30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjotg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1at7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkli3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynpyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4cf1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grandmasterkraigon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grandmasterkraigon.tres new file mode 100644 index 0000000..2be3868 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grandmasterkraigon.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://fvovvklq75tl"] + +[ext_resource type="Texture2D" uid="uid://uvwuhi36i504" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png" id="1_vq7x1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_djfxl"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl8ny"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvbcp"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px80l"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lc4g"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqxe1"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihhhl"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cfno"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1n0w"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrpk3"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_862fo"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s57s0"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4hum"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yspud"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccx60"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on6ol"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1pdn"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t0ps"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epawf"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ganwp"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uejol"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rrsa"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_220kw"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxuow"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m8cb"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1q5d"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e37ug"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8nyf"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sepfd"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcxvd"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kke6v"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sd52"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlweb"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh0a5"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrog6"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ladco"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krn52"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkmic"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c13oo"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5q3o"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqamn"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rjdc"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h526e"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yo51"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63bbh"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp6mq"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe4t8"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awtpc"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsifp"] +atlas = ExtResource("1_vq7x1") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_600c7"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyoq7"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rntmf"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tomq2"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epo1m"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0en6m"] +atlas = ExtResource("1_vq7x1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2wf2"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3t2l"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf8hk"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh51m"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tucd3"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c82ga"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgta0"] +atlas = ExtResource("1_vq7x1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7amgs"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os2s2"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcuwg"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kegf"] +atlas = ExtResource("1_vq7x1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx2s3"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yafcn"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk1cl"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2bm0"] +atlas = ExtResource("1_vq7x1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caghf"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80lje"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybejo"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3dhv"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv4ff"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnc3o"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2gpn"] +atlas = ExtResource("1_vq7x1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i04m"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox1fp"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx31r"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq8lu"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykisk"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtshy"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o811j"] +atlas = ExtResource("1_vq7x1") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acfee"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1n77"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5c7j"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6hlm"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2knv"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0g8a"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7u4s"] +atlas = ExtResource("1_vq7x1") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1i8l"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwju5"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gcng"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it4rm"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbme1"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mwak"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5p8l"] +atlas = ExtResource("1_vq7x1") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_djfxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl8ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvbcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px80l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lc4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqxe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihhhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cfno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1n0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrpk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_862fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s57s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4hum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yspud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccx60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on6ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1pdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t0ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epawf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ganwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uejol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rrsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_220kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxuow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m8cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1q5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e37ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8nyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sepfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcxvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kke6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sd52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlweb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh0a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrog6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ladco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krn52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkmic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c13oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5q3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqamn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rjdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h526e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yo51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63bbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp6mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe4t8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_awtpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsifp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_600c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyoq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rntmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tomq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epo1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0en6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2wf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3t2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf8hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh51m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tucd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c82ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgta0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7amgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os2s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcuwg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kegf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx2s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yafcn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk1cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2bm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_caghf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80lje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybejo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3dhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv4ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnc3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2gpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i04m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox1fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx31r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq8lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykisk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtshy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o811j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acfee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1n77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5c7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6hlm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2knv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0g8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7u4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1i8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwju5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gcng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it4rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbme1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mwak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5p8l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grimrock.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grimrock.tres new file mode 100644 index 0000000..aebb408 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_grimrock.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://doj3j6wpm4dyc"] + +[ext_resource type="Texture2D" uid="uid://bsdy8pirwaatu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png" id="1_jot8i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugn17"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1td2x"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwjy0"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ap1w"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewbep"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkgcp"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r6uq"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umsci"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wwrk"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke16b"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhgj8"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkcdv"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gube"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6b1t"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4whk"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb4qc"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j84i3"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fk2f"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eram"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j43n6"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcen7"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld2ac"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0xoe"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wc3f"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leeq3"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgaj2"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy3t7"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e27u6"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obbh7"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iual0"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv413"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrrtt"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsksy"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7auye"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc3wl"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr4ps"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7mt4"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itcsf"] +atlas = ExtResource("1_jot8i") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh2t5"] +atlas = ExtResource("1_jot8i") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4b3w"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kauvt"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poe07"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57h0t"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s783w"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0b4n"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qoly"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf11a"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehbdo"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piaok"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqdj6"] +atlas = ExtResource("1_jot8i") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmc53"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eajhq"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu8h0"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vasg"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1a16"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v4qs"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iv4r"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o5e6"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhhf2"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4vlb"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cpdx"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ch0i"] +atlas = ExtResource("1_jot8i") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugn17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1td2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwjy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ap1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewbep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkgcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r6uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umsci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wwrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke16b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhgj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkcdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gube") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6b1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4whk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb4qc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j84i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fk2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eram") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j43n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcen7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld2ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0xoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wc3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leeq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgaj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy3t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e27u6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_obbh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iual0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv413") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrrtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsksy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7auye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc3wl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr4ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7mt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itcsf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh2t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4b3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kauvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poe07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57h0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s783w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0b4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qoly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf11a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehbdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piaok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqdj6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmc53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eajhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu8h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vasg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1a16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v4qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iv4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o5e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhhf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4vlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cpdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ch0i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gro.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gro.tres new file mode 100644 index 0000000..2cea50e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_gro.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://cbh0wqp3e536r"] + +[ext_resource type="Texture2D" uid="uid://bdp3y83vfmnnk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png" id="1_6yvrp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_alv40"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpgsp"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8lai"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k721t"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj5g3"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xond4"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wull1"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhlpm"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyhpr"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihqt7"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0j2l"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spgqg"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_483w3"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcvaa"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1k8t"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wodyl"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khqta"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tqkq"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srf76"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm2di"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow6vt"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5tpf"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdbex"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h76da"] +atlas = ExtResource("1_6yvrp") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5b5e"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a8ye"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uruh"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mioeb"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e045r"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6nca"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlukx"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j57hl"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2var"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf0sc"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk66n"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c80e8"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nahq"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8myhj"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8buj"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccrcs"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvp2r"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuxkx"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h51pu"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyrfy"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vngj4"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8agkd"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttyy2"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdkho"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkv46"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3ieb"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kddyw"] +atlas = ExtResource("1_6yvrp") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk52o"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf8ou"] +atlas = ExtResource("1_6yvrp") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kvqs"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jckpf"] +atlas = ExtResource("1_6yvrp") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti8i4"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6ho3"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvaal"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0le04"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aap8l"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlsu5"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mq1b"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntbsy"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01j0h"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3qr7"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bkxu"] +atlas = ExtResource("1_6yvrp") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivcls"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq2dn"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q0la"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51f8e"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyxlr"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fj8e"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6iy5"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq0ra"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wucm8"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttbyb"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qsi1"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qucsp"] +atlas = ExtResource("1_6yvrp") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_alv40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpgsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8lai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k721t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj5g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xond4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wull1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhlpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyhpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihqt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0j2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spgqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_483w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcvaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1k8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wodyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khqta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tqkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srf76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm2di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow6vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5tpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdbex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h76da") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5b5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a8ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uruh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mioeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e045r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6nca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlukx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j57hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2var") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf0sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk66n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c80e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nahq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8myhj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8buj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccrcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvp2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuxkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h51pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyrfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vngj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8agkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttyy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdkho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkv46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3ieb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kddyw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk52o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf8ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kvqs") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jckpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti8i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6ho3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvaal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0le04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aap8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlsu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mq1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntbsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01j0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3qr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bkxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivcls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq2dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q0la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51f8e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyxlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fj8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6iy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq0ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wucm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttbyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qsi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qucsp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_juggernaut.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_juggernaut.tres new file mode 100644 index 0000000..1c3d5d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_juggernaut.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://b72a5038d3lp8"] + +[ext_resource type="Texture2D" uid="uid://dyrvbs2q8dhwr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png" id="1_76du7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_07eky"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnnnk"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isjjx"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if7ot"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m3fd"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rd5w"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ncdc"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ypoa"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22d1n"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asvdn"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c6jy"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee6wn"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqh58"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77ess"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvfm5"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ni2n"] +atlas = ExtResource("1_76du7") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex6kp"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr6gq"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1837"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbwhd"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwidl"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp3so"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bwin"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6761f"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0gwe"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s2ix"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo6u2"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5haeg"] +atlas = ExtResource("1_76du7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnxxb"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4pai"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwt3c"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r52p"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3cn5"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j42is"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asvpa"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iekq1"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nadui"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juq52"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyt8r"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyk78"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ge8"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhhjs"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njncr"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unrga"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl1xa"] +atlas = ExtResource("1_76du7") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3o4n"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrhgu"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnqfm"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow1cn"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgjt6"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdxt7"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhetm"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vytu"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nalvw"] +atlas = ExtResource("1_76du7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llabq"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvo7k"] +atlas = ExtResource("1_76du7") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63bvy"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjmdp"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01nkh"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dt30"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf5eh"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1362"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k85qo"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aepjh"] +atlas = ExtResource("1_76du7") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0vgb"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjyev"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4oib"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgmjs"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbkvo"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pby7h"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64g5x"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rtvc"] +atlas = ExtResource("1_76du7") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uckk"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uexaj"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsqrk"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjttp"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g64m6"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xomjs"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgl2u"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yw25"] +atlas = ExtResource("1_76du7") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_07eky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnnnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isjjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if7ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m3fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rd5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ncdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ypoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22d1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asvdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c6jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee6wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqh58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77ess") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvfm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ni2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex6kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr6gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1837") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbwhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwidl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp3so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bwin") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6761f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0gwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s2ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo6u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5haeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnxxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4pai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwt3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r52p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3cn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j42is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asvpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iekq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nadui") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_juq52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyt8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyk78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ge8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhhjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njncr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unrga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl1xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3o4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrhgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnqfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow1cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgjt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdxt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhetm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vytu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nalvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llabq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvo7k") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_63bvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjmdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01nkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dt30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf5eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1362") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k85qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aepjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0vgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjyev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4oib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgmjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbkvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pby7h") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64g5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rtvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uckk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uexaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsqrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjttp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g64m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xomjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgl2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yw25") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kolossus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kolossus.tres new file mode 100644 index 0000000..adc0e78 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kolossus.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://bw1l40mtpbhh7"] + +[ext_resource type="Texture2D" uid="uid://fmmmd6ai1xx3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png" id="1_i7wk6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqrqy"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o8as"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg2mg"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qp1a"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sivvn"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ramts"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhdb7"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1l40"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouij3"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhsl6"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pphil"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb7k8"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggvp7"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjf5k"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m17l8"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jgnx"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27alb"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thrwr"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyf5u"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnqe4"] +atlas = ExtResource("1_i7wk6") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aiwm"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igrfn"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnv0e"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocprs"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q76b0"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhg4j"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykmad"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxcx7"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1knl"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppyg5"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i0tv"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4nl6"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6ltm"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3au8y"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oku8x"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwl7t"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_levux"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkb3a"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vou0e"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tui3"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhq1t"] +atlas = ExtResource("1_i7wk6") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv2lo"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52wxo"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isjdj"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_185ck"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqhsd"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgm80"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht5h6"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0vjn"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miy7v"] +atlas = ExtResource("1_i7wk6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4ash"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0peeg"] +atlas = ExtResource("1_i7wk6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1j5h"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ka8"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aomse"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yltc"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwu2w"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq5dd"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p55jm"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1gwy"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8i8f"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s5ou"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28467"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1pxw"] +atlas = ExtResource("1_i7wk6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfl2j"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grobr"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vpv2"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yghq0"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k5sq"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jig4w"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7pvj"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g405"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywwaq"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sduh8"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14obm"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5megp"] +atlas = ExtResource("1_i7wk6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqrqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o8as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg2mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qp1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sivvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ramts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhdb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1l40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouij3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhsl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pphil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb7k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggvp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjf5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m17l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jgnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27alb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thrwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyf5u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnqe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aiwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igrfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnv0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocprs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q76b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhg4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykmad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxcx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1knl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppyg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i0tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4nl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6ltm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3au8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oku8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwl7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_levux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkb3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vou0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tui3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhq1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv2lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52wxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isjdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_185ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqhsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgm80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht5h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0vjn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_miy7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4ash") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0peeg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1j5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ka8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aomse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yltc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwu2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq5dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p55jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1gwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8i8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s5ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28467") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1pxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfl2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grobr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vpv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yghq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k5sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jig4w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7pvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g405") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywwaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sduh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14obm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5megp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kujata.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kujata.tres new file mode 100644 index 0000000..2772bbe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_kujata.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://cl6yyuybmcopd"] + +[ext_resource type="Texture2D" uid="uid://b62itiwj4euab" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png" id="1_xyadm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkl4i"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iupw3"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onnxn"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1504i"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnutt"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq08k"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh27r"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcwou"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u55jl"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arslp"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wom77"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oikds"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgxgb"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0vsg"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u3iw"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s52rl"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjtn3"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d20qb"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4iey"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujj65"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0pbo"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahy3o"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu0yi"] +atlas = ExtResource("1_xyadm") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmnhn"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dori8"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weouy"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y8e4"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdva3"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yipij"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy4hs"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jcst"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avcew"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsad8"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqrbg"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku5c8"] +atlas = ExtResource("1_xyadm") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqn2g"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47yji"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pxhe"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84h67"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie2xq"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rx4n"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikcp4"] +atlas = ExtResource("1_xyadm") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1rk2"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpaoo"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffr5u"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f272r"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wptl8"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkybf"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb4ga"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykchf"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1620b"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kprpr"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x0b4"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovw51"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dxqd"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hcml"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsk77"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8oud"] +atlas = ExtResource("1_xyadm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yowq2"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fb1e"] +atlas = ExtResource("1_xyadm") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnlly"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7b3g"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmtgj"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpbqt"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwnvu"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opu4y"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayawa"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q2o4"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i2sv"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tcml"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl140"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t654"] +atlas = ExtResource("1_xyadm") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sr5x"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgede"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agocw"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32uyk"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vfug"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88tdq"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pid7r"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6epgi"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywf5q"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gllh8"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc0vg"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ll1v"] +atlas = ExtResource("1_xyadm") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkl4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iupw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onnxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1504i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnutt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq08k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh27r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcwou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u55jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arslp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wom77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oikds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgxgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0vsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u3iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s52rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjtn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d20qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4iey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujj65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0pbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahy3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu0yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmnhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dori8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weouy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y8e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdva3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yipij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy4hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jcst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avcew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsad8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqrbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku5c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqn2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47yji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pxhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84h67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie2xq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rx4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikcp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1rk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpaoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffr5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f272r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wptl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkybf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb4ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykchf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1620b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kprpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x0b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovw51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dxqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hcml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsk77") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8oud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yowq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fb1e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnlly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7b3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmtgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpbqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwnvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opu4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayawa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q2o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i2sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tcml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl140") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t654") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sr5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgede") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agocw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32uyk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vfug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88tdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pid7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6epgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywf5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gllh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc0vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ll1v") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_lavalasher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_lavalasher.tres new file mode 100644 index 0000000..84766c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_lavalasher.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://boeqaj4fvn177"] + +[ext_resource type="Texture2D" uid="uid://durofj558ctia" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png" id="1_1gtei"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e58u0"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4mj5"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iphxh"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnqxs"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76j5a"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubjla"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alryj"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1exp1"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgpov"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuqm1"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx0ab"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v85v"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axjno"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvyd"] +atlas = ExtResource("1_1gtei") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1egy"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy4rf"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0fv4"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdk0a"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yekjm"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmjhs"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ksls"] +atlas = ExtResource("1_1gtei") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ytjn"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ingxl"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki1bu"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwh1y"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6600d"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8obmc"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tu2b"] +atlas = ExtResource("1_1gtei") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq8kb"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_754yb"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvbkl"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dc5r"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nib1c"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jkpd"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg30p"] +atlas = ExtResource("1_1gtei") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hew1x"] +atlas = ExtResource("1_1gtei") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72h3x"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vx3p"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf560"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ado"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftnxy"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alnhw"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_673cm"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l6e7"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn6cm"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqlck"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpqs7"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnrwk"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jido7"] +atlas = ExtResource("1_1gtei") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueu20"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14p1f"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd34q"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e752r"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rwek"] +atlas = ExtResource("1_1gtei") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5lon"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57rsd"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0oei"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l2bl"] +atlas = ExtResource("1_1gtei") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf2su"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rb1c"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmyjp"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a620"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8cfj"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja50f"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqhbn"] +atlas = ExtResource("1_1gtei") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjhrm"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2r3r"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6uoh"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7ljh"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr42l"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g02mu"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs5jh"] +atlas = ExtResource("1_1gtei") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e58u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4mj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iphxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnqxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76j5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubjla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alryj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1exp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgpov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuqm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx0ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v85v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axjno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebvyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1egy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy4rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0fv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdk0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yekjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmjhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ksls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ytjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ingxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki1bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwh1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6600d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8obmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tu2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq8kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_754yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvbkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dc5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nib1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jkpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg30p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hew1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72h3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vx3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf560") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ado") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftnxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alnhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_673cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l6e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn6cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqlck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpqs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnrwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jido7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueu20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14p1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd34q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e752r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rwek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5lon") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_57rsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0oei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l2bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf2su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rb1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmyjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a620") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8cfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja50f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqhbn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjhrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2r3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6uoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7ljh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr42l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g02mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs5jh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_magma.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_magma.tres new file mode 100644 index 0000000..dfd67ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_magma.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://dw7ducaqc624k"] + +[ext_resource type="Texture2D" uid="uid://8p5hnn3o7xea" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png" id="1_16bma"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxd5g"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66sr3"] +atlas = ExtResource("1_16bma") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3ous"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ukyf"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12k21"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khfxi"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sevi3"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21e21"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ack13"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1htg"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15b8s"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlhas"] +atlas = ExtResource("1_16bma") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v1mf"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4apf"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j863p"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r165"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc6dy"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4500b"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs4oa"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mivte"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgoin"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8jpm"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rotov"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_804s5"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p7oo"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqrdp"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qu6q"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc4er"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0p00"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1npx4"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgkor"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6g7j"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21l01"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd4xu"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m2vh"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uf4r"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7gc0"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byit6"] +atlas = ExtResource("1_16bma") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g43rv"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bdg0"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdgv6"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w22xk"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epblc"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crkwk"] +atlas = ExtResource("1_16bma") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e4m8"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ore"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1gsh"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kua8"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tt8x"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmx6t"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tct2e"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4ey1"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah8h5"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lryjj"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyppm"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e207y"] +atlas = ExtResource("1_16bma") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8dqn"] +atlas = ExtResource("1_16bma") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgxp3"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxw4i"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydav0"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5w2e"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv77o"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwive"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c84mr"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd4kx"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwxdf"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfwrk"] +atlas = ExtResource("1_16bma") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxd5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66sr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3ous") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ukyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12k21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khfxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sevi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21e21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ack13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1htg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15b8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlhas") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v1mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4apf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j863p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r165") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc6dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4500b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs4oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mivte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgoin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8jpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rotov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_804s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p7oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqrdp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qu6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc4er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0p00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1npx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgkor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6g7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21l01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd4xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m2vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uf4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7gc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byit6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g43rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bdg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdgv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w22xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epblc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_crkwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e4m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ore") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1gsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kua8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tt8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmx6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tct2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4ey1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah8h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lryjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyppm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e207y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8dqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgxp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxw4i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydav0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5w2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv77o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwive") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c84mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd4kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwxdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfwrk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mandrake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mandrake.tres new file mode 100644 index 0000000..1039109 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mandrake.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://drdfs80y7e3ok"] + +[ext_resource type="Texture2D" uid="uid://biqka8hpv01es" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png" id="1_usumh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pejs"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ucbf"] +atlas = ExtResource("1_usumh") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mw7i"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3xvm"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulgf2"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg7a6"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac3vb"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfr1j"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62hbf"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lc8p"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02yti"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpcuu"] +atlas = ExtResource("1_usumh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yl1u"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxas4"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ki4"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg6ye"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qobyw"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tld1"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et6hl"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu6uh"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3l6l"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrncq"] +atlas = ExtResource("1_usumh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdq8h"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66onb"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyvu1"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w262y"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75l3i"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi5oi"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pynd1"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na0ls"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dplio"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0m71"] +atlas = ExtResource("1_usumh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vws67"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brj7l"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge7k2"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk8hf"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jgw2"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbs0s"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6aqb"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7mpq"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it3vi"] +atlas = ExtResource("1_usumh") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg88g"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hegt"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcnr5"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lorm8"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng2g1"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqrli"] +atlas = ExtResource("1_usumh") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mamai"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llfa5"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slss8"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek15u"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqoey"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v55c"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x471q"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6p67"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3se4y"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mapvs"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p05hx"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdqbn"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3cks"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqjqg"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8acc"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3oq0"] +atlas = ExtResource("1_usumh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwnij"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ryjd"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24iin"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjtan"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b8hl"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5ite"] +atlas = ExtResource("1_usumh") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ip15"] +atlas = ExtResource("1_usumh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnkhc"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyena"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp23d"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc26d"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gamo8"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa6qf"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3uqv"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f18xe"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixw3j"] +atlas = ExtResource("1_usumh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raucf"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si2um"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl04x"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ho0"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg44o"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ye32"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1xny"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2yt2"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyumx"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyjgx"] +atlas = ExtResource("1_usumh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pejs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ucbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mw7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3xvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulgf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg7a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac3vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfr1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62hbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lc8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02yti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpcuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yl1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxas4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg6ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qobyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tld1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et6hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu6uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3l6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrncq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdq8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66onb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyvu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w262y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75l3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi5oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pynd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na0ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dplio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0m71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vws67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brj7l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge7k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk8hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jgw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbs0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6aqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7mpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it3vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg88g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hegt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcnr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lorm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng2g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqrli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mamai") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_llfa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slss8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek15u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqoey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v55c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x471q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6p67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3se4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mapvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p05hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdqbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3cks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqjqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8acc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3oq0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwnij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ryjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24iin") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjtan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b8hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5ite") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ip15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnkhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyena") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp23d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc26d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gamo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa6qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3uqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f18xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixw3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raucf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si2um") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl04x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ho0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg44o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ye32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1xny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2yt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyumx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyjgx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mankatorwarbeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mankatorwarbeast.tres new file mode 100644 index 0000000..df7ab87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mankatorwarbeast.tres @@ -0,0 +1,407 @@ +[gd_resource type="SpriteFrames" load_steps=55 format=3 uid="uid://dtc5tg2vfq66u"] + +[ext_resource type="Texture2D" uid="uid://dyhccdvgl3g4y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png" id="1_vdj1i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_evxm5"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8rim"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5j7o"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07pa5"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lynt"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngsg0"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1y3y"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo5ab"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xlkw"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6os2"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc7se"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxljq"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64wnp"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtfsg"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqvfd"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6khh1"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq63v"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvfcy"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7qt8"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e18a4"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uj1u"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppuqu"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsd3j"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i1of"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc03r"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7x1q"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1w8y"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccnd1"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3y7l"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5fri"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd4iy"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4hbr"] +atlas = ExtResource("1_vdj1i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvf81"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm6t3"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n57a"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52hv1"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mun3h"] +atlas = ExtResource("1_vdj1i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqvge"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvkj0"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyryf"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q031e"] +atlas = ExtResource("1_vdj1i") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbwn4"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n8q0"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_064ul"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whewg"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiuhj"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1n0i"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0xqd"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sudte"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ge6y"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr1bc"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00s6e"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4twfy"] +atlas = ExtResource("1_vdj1i") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evxm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8rim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5j7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07pa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lynt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngsg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1y3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo5ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xlkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6os2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc7se") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxljq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64wnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtfsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqvfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6khh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq63v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvfcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7qt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e18a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uj1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppuqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsd3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc03r") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7x1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1w8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccnd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3y7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5fri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd4iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4hbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvf81") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm6t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n57a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52hv1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mun3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqvge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvkj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyryf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q031e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbwn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n8q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_064ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whewg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiuhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1n0i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0xqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sudte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ge6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr1bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00s6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4twfy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mech.tres new file mode 100644 index 0000000..ddfdab8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mech.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://d0tj5og8oxh2r"] + +[ext_resource type="Texture2D" uid="uid://rto0pkqs34vt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png" id="1_hsngf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_congq"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eembg"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8ryw"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_econj"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxn51"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vne4p"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wob0"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvbpq"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0156h"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04h11"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaf08"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yit86"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ik1w"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsttx"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grob7"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jybse"] +atlas = ExtResource("1_hsngf") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3muor"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opmmq"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cqnd"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odda2"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxk5u"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4mfi"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uknqh"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq71f"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1qm"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp15u"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06xu0"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ps16"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv1ix"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7h8u"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jag6"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjmtj"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fbs2"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecltc"] +atlas = ExtResource("1_hsngf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka1tq"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1t5q"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sbwe"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5l8n"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54p0h"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxknb"] +atlas = ExtResource("1_hsngf") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kumh6"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u20de"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sutjg"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6w2n"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kklco"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sml2c"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_702e0"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5tje"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0t30"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fgn4"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp57x"] +atlas = ExtResource("1_hsngf") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkg7w"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljlux"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axrx1"] +atlas = ExtResource("1_hsngf") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j15dt"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogeiy"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7hdg"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pei1"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uenhn"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwnnk"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwe5q"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7828g"] +atlas = ExtResource("1_hsngf") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1v5c"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fna5u"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku3om"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsqda"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyjrr"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68564"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyblv"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dydd"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woabm"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jbid"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k74is"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5qxn"] +atlas = ExtResource("1_hsngf") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_congq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eembg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8ryw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_econj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxn51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vne4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wob0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvbpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0156h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04h11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaf08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yit86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ik1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsttx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grob7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jybse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3muor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opmmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cqnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odda2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxk5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4mfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uknqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq71f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp15u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06xu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ps16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv1ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7h8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jag6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjmtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fbs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecltc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka1tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1t5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sbwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5l8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54p0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxknb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kumh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u20de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sutjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6w2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kklco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sml2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_702e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5tje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0t30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fgn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp57x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkg7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljlux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axrx1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j15dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogeiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7hdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pei1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uenhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwnnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwe5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7828g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1v5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fna5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku3om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsqda") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyjrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68564") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyblv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dydd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woabm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jbid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k74is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5qxn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_megabrontodon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_megabrontodon.tres new file mode 100644 index 0000000..36077a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_megabrontodon.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://k603ijfg2d3e"] + +[ext_resource type="Texture2D" uid="uid://qb5fhhfxds58" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png" id="1_jpfrc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k2lo"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4glp"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m34rg"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj4pq"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t7w7"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hunnu"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c706r"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50vih"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdcpw"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg5ms"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50t84"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdbct"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fpyx"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1fdv"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57pdb"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o1k8"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci7si"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gfno"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2fnu"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2yxi"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqfue"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ba4d"] +atlas = ExtResource("1_jpfrc") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_134hx"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyhhr"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoy80"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3skj"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxvrx"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47v66"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgg6i"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8t8c"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lekbq"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsiyn"] +atlas = ExtResource("1_jpfrc") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdrx6"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6vfa"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvnp2"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33x2d"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khvtt"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_746ya"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7oko"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7gkw"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6lue"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhlxt"] +atlas = ExtResource("1_jpfrc") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vscei"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2oia"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mlep"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h23w8"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_815ps"] +atlas = ExtResource("1_jpfrc") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2dry"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxj62"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysk6c"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvbao"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqjci"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbrui"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axiiu"] +atlas = ExtResource("1_jpfrc") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54fcg"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3fal"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbrp8"] +atlas = ExtResource("1_jpfrc") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbea4"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifu0x"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bonhk"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp5ua"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc74x"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6rwj"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iojtu"] +atlas = ExtResource("1_jpfrc") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6nsx"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5p0b"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic38w"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k0r0"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpbem"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnenj"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jl02"] +atlas = ExtResource("1_jpfrc") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfsak"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h7vk"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ifk6"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgdcr"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbewh"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3k3a"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8tdu"] +atlas = ExtResource("1_jpfrc") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k2lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4glp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m34rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj4pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t7w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hunnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c706r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50vih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdcpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg5ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50t84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdbct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fpyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1fdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57pdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o1k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci7si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gfno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2fnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2yxi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqfue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ba4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_134hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyhhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoy80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3skj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxvrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47v66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgg6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8t8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lekbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsiyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdrx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6vfa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvnp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33x2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khvtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_746ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7oko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7gkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6lue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhlxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vscei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2oia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mlep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h23w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_815ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2dry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxj62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysk6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvbao") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqjci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbrui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axiiu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_54fcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3fal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbrp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbea4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifu0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bonhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp5ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc74x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6rwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iojtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6nsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5p0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic38w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k0r0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpbem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnenj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jl02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfsak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h7vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ifk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgdcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbewh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3k3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8tdu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_minibeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_minibeast.tres new file mode 100644 index 0000000..25eab9c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_minibeast.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://cyjx4imxel11w"] + +[ext_resource type="Texture2D" uid="uid://dbiaqo3smw62u" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png" id="1_a4p7m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx6b4"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ejs"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btoq2"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qkpv"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh7dl"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh2x6"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x604c"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryl26"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esvr5"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpaop"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uokeg"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mokx8"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sui7a"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5apa7"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og8tg"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkf6s"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g144"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a0f8"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6epvt"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sm17"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh5c1"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ceok"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi88t"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv3jq"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgap1"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xurtp"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21t70"] +atlas = ExtResource("1_a4p7m") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s86qr"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rf2p"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufxnu"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q806"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euce3"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1lmx"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srslt"] +atlas = ExtResource("1_a4p7m") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g45c"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pkwd"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2luw"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73i5b"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2al5m"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1wlq"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnt7q"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ugya"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0itn8"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhxfj"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyplg"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ydr1"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ocsk"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6p0y"] +atlas = ExtResource("1_a4p7m") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duune"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6a5e"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1kq4"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyfdf"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plmwn"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uke1e"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_264gb"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0xjy"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uo12"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn2rn"] +atlas = ExtResource("1_a4p7m") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6cli"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bddc"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61tbe"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfsvk"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oexpt"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm7fw"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwlgy"] +atlas = ExtResource("1_a4p7m") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36bxo"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvilw"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f3s0"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elwl5"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnmdc"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cildo"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxdil"] +atlas = ExtResource("1_a4p7m") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw32e"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugvux"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wenb"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nydpx"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5t6o"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0u5e"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7e4b"] +atlas = ExtResource("1_a4p7m") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swq0a"] +atlas = ExtResource("1_a4p7m") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5b27"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbepe"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rymnb"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjt2g"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eexij"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfkg6"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85guu"] +atlas = ExtResource("1_a4p7m") +region = Rect2(1310, 786, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx6b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ejs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btoq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qkpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh7dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh2x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x604c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryl26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esvr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpaop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uokeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mokx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sui7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5apa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og8tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkf6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g144") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a0f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6epvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sm17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh5c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ceok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi88t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv3jq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgap1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xurtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21t70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s86qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rf2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufxnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q806") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1lmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srslt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g45c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pkwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2luw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73i5b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2al5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1wlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnt7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ugya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0itn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhxfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyplg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ydr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ocsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6p0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duune") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6a5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1kq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyfdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plmwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uke1e") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_264gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0xjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uo12") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn2rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6cli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bddc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61tbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfsvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oexpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm7fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwlgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36bxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvilw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f3s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elwl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnmdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cildo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxdil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw32e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugvux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wenb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nydpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5t6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0u5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7e4b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_swq0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5b27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbepe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rymnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjt2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eexij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfkg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85guu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_molokihuntress.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_molokihuntress.tres new file mode 100644 index 0000000..6e01a4c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_molokihuntress.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://byovx03jo117f"] + +[ext_resource type="Texture2D" uid="uid://dekysdduucoh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png" id="1_k4c57"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3uma"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwx0y"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gokvc"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er4kp"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmhba"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlsib"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouji4"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn2t2"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ry6"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw2lc"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjqd3"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lfsf"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j4c7"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ocxc"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oi8e"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiqjn"] +atlas = ExtResource("1_k4c57") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uty8a"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i23yx"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgtwt"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucvx7"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apw83"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0fef"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yqmf"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6icae"] +atlas = ExtResource("1_k4c57") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsd8u"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rleex"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2uls"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi1em"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s861b"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2h2f"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oovte"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwmgt"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjt6u"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh2ag"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvgge"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs8y0"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvtai"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks7f4"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycboe"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpcrb"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74s7a"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwoxh"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgana"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd4m1"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1o1c"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtelb"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t73yq"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aioiv"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sru5y"] +atlas = ExtResource("1_k4c57") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv6uv"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5fr1"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erjxa"] +atlas = ExtResource("1_k4c57") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyy4v"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqf5p"] +atlas = ExtResource("1_k4c57") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhntf"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4anlq"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwyqg"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j5mq"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acfva"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdfmt"] +atlas = ExtResource("1_k4c57") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nc2h"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4mpb"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp4jr"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feqaw"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj45o"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h0f5"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqbc4"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7uxm"] +atlas = ExtResource("1_k4c57") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8jg2"] +atlas = ExtResource("1_k4c57") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa0a7"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqlye"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l48vj"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dumdw"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlxnp"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hosqm"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0emgu"] +atlas = ExtResource("1_k4c57") +region = Rect2(968, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3uma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwx0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gokvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er4kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmhba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlsib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouji4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn2t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ry6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw2lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjqd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lfsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j4c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ocxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oi8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiqjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uty8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i23yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgtwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucvx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apw83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0fef") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yqmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6icae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsd8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rleex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2uls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi1em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s861b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2h2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oovte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwmgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjt6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh2ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvgge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs8y0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvtai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks7f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycboe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpcrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74s7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwoxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgana") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd4m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1o1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtelb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t73yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aioiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sru5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv6uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5fr1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_erjxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyy4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqf5p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhntf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4anlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwyqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j5mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acfva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdfmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nc2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4mpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp4jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feqaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj45o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h0f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqbc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7uxm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8jg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa0a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqlye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l48vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dumdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlxnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hosqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0emgu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mythronquest.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mythronquest.tres new file mode 100644 index 0000000..02c1bee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_mythronquest.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://c3mlxhnsklkr5"] + +[ext_resource type="Texture2D" uid="uid://ciwxxixoimpug" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png" id="1_ojpmj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_et1qn"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx6ho"] +atlas = ExtResource("1_ojpmj") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nass3"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_127sj"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfjhr"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mroxb"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owej6"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5evl"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhu47"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3yms"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q75jo"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8x43"] +atlas = ExtResource("1_ojpmj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an6l3"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om35e"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7u7y"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjrgu"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh1k4"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb4u8"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh38v"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3kc5"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l50p8"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaxd1"] +atlas = ExtResource("1_ojpmj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxy2g"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlg7y"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gofpo"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3omq"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a82m7"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75tnn"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueibu"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl788"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjp75"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d8g1"] +atlas = ExtResource("1_ojpmj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcvfg"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phwon"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji7xj"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhkx2"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubpdi"] +atlas = ExtResource("1_ojpmj") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tvij"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dhrr"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx2dh"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anx2k"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjo1d"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1f5g"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvmhg"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y48i6"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6q86"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qovi"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww7iq"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipli3"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og7rj"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvc5j"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb4dv"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_388or"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d807"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bsho"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br7ss"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bt6l"] +atlas = ExtResource("1_ojpmj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j87l2"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt8x0"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh6ii"] +atlas = ExtResource("1_ojpmj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwjse"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to0y0"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35lpx"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xawd"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk4xp"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iged2"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkckx"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7qy3"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj02t"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4l1r"] +atlas = ExtResource("1_ojpmj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdfjo"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtaxe"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt0kk"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l011f"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uica7"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmxps"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6hho"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjpvo"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnl4n"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbjlx"] +atlas = ExtResource("1_ojpmj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_et1qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx6ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nass3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_127sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfjhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mroxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owej6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5evl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhu47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3yms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q75jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8x43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an6l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om35e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7u7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjrgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh1k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb4u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh38v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3kc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l50p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxy2g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlg7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gofpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3omq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a82m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75tnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueibu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl788") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjp75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d8g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcvfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phwon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji7xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhkx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubpdi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tvij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dhrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx2dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anx2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjo1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1f5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvmhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y48i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6q86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qovi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww7iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipli3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og7rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvc5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb4dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_388or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d807") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bsho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br7ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bt6l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j87l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt8x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh6ii") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwjse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to0y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35lpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xawd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk4xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iged2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkckx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7qy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj02t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4l1r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdfjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtaxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt0kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l011f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uica7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmxps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6hho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjpvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnl4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbjlx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_omniseer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_omniseer.tres new file mode 100644 index 0000000..c60a295 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_omniseer.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://b673ols2bot71"] + +[ext_resource type="Texture2D" uid="uid://bdjw2paywaf8w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png" id="1_6ql3m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ht5"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks5bh"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8twrd"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1y80"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g7w6"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwqil"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58dku"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8pfl"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsawf"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqp8l"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywgfc"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a3rf"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li2fs"] +atlas = ExtResource("1_6ql3m") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehriu"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cltyh"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fyxn"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbdkb"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m0ba"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8rhj"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwcfd"] +atlas = ExtResource("1_6ql3m") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mw3s"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp1xs"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jobe"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqang"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cciy5"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ik5"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnbpw"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrcsd"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkehx"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq8vw"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knn0j"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_887tv"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk3ep"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksyvg"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilsmk"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ysp"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgd1o"] +atlas = ExtResource("1_6ql3m") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj331"] +atlas = ExtResource("1_6ql3m") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5y0b"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bf0e"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4h0b"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_velqw"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjc73"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdccu"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm80b"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sv7b"] +atlas = ExtResource("1_6ql3m") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeq2k"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6s4f"] +atlas = ExtResource("1_6ql3m") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6u0c"] +atlas = ExtResource("1_6ql3m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfukl"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yagih"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvbdc"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxsef"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mekp2"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60q0j"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frqju"] +atlas = ExtResource("1_6ql3m") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isalb"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4cmp"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjxi5"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4f4v"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r32xt"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayp4q"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwpl4"] +atlas = ExtResource("1_6ql3m") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfexv"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4vrv"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi5df"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs82b"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_del0f"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wxm4"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lacq6"] +atlas = ExtResource("1_6ql3m") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ht5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks5bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8twrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1y80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g7w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwqil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58dku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8pfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsawf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqp8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywgfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a3rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehriu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cltyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fyxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbdkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m0ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8rhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwcfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mw3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp1xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jobe") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqang") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cciy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ik5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnbpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrcsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkehx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq8vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knn0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_887tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk3ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksyvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilsmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ysp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgd1o") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj331") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5y0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bf0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4h0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_velqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjc73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdccu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm80b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sv7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeq2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6s4f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6u0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfukl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yagih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvbdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxsef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mekp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60q0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frqju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isalb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4cmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjxi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4f4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r32xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayp4q") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwpl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfexv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4vrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi5df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs82b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_del0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wxm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lacq6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_orphanoftheaspect.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_orphanoftheaspect.tres new file mode 100644 index 0000000..9d1b40e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_orphanoftheaspect.tres @@ -0,0 +1,495 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://bn4xh112kb1nj"] + +[ext_resource type="Texture2D" uid="uid://bbxbcwyklfe8a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png" id="1_ocxdf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb0gg"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpgfa"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x283"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p85x"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xej88"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4fw0"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnl6w"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x5r8"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u2wn"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ttg"] +atlas = ExtResource("1_ocxdf") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l44u"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4dut"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43yq7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g3gl"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gogg"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrays"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2xfn"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13euj"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uoai"] +atlas = ExtResource("1_ocxdf") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmi4a"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vauve"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1150o"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b11ph"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnq72"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaeti"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6416"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ync8"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw7k4"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rksj7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgl6j"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5s66"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdvfm"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ldeb"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiof7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhyn7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjn2w"] +atlas = ExtResource("1_ocxdf") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oguda"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn5rd"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs0th"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2osq1"] +atlas = ExtResource("1_ocxdf") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dgee"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xwp7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl7m7"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itry0"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgrua"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdkj1"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuwkj"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1v4"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuryi"] +atlas = ExtResource("1_ocxdf") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfm0k"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm73o"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk3ir"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb6p0"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih6st"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftqdf"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lelwe"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c0tb"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui35h"] +atlas = ExtResource("1_ocxdf") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3npg"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4fr3"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hahia"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xnmi"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdlfa"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wftln"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggr55"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkybs"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2u0g"] +atlas = ExtResource("1_ocxdf") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb0gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpgfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x283") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p85x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xej88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4fw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnl6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x5r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u2wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ttg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l44u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4dut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43yq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g3gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gogg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrays") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2xfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13euj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uoai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmi4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vauve") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1150o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b11ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaeti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ync8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw7k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rksj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgl6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5s66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdvfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ldeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiof7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhyn7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjn2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oguda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn5rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs0th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2osq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dgee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xwp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl7m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itry0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgrua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdkj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuwkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfm0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm73o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk3ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb6p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih6st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftqdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lelwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c0tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui35h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3npg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4fr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hahia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xnmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdlfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wftln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggr55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkybs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2u0g") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_oxalaia.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_oxalaia.tres new file mode 100644 index 0000000..f9ae3e6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_oxalaia.tres @@ -0,0 +1,680 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://c3f8gcgwjchu5"] + +[ext_resource type="Texture2D" uid="uid://ccwcrhmmgqf44" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png" id="1_jo6qx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhs0t"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tw01"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gv87"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpl7u"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujncp"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kai3"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npxxf"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlp04"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ossnw"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipo4e"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgn7c"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bow05"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or1pl"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waroj"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvpil"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmbwe"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr2s5"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjpy7"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8274"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8qhi"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spy6t"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12u8g"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk8ji"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4d7q"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cylge"] +atlas = ExtResource("1_jo6qx") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ol38"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nret5"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbf1p"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8f8v"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n42u8"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bncos"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dh4l"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no6nw"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huy68"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o76ah"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2506"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3okx5"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7d4d"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3npx3"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gen2u"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u01ds"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heeqd"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgdcx"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or2y7"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cp0f"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xua7"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hsnb"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbcca"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l814m"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pp0g"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ast"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qkxc"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q174j"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t10a8"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etoyp"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe4j0"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bee4r"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wlvt"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqnj4"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfu2f"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icbx2"] +atlas = ExtResource("1_jo6qx") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdeaa"] +atlas = ExtResource("1_jo6qx") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkfgw"] +atlas = ExtResource("1_jo6qx") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xntg"] +atlas = ExtResource("1_jo6qx") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqwxw"] +atlas = ExtResource("1_jo6qx") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lie3s"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjwtu"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47beh"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hv5x"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r0sb"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_513oo"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buwne"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihh37"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ido"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdwmf"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f0j1"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm2qp"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4pqj"] +atlas = ExtResource("1_jo6qx") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpor1"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmqo6"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72v7f"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cscds"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhyad"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmfh5"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h1ky"] +atlas = ExtResource("1_jo6qx") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fuxx"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pgwf"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ano7l"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v4jg"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lynq"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nll7"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7804n"] +atlas = ExtResource("1_jo6qx") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhs0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tw01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gv87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpl7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujncp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kai3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npxxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlp04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ossnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipo4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgn7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bow05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or1pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waroj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvpil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmbwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr2s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjpy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8274") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8qhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spy6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12u8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk8ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4d7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cylge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ol38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nret5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbf1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8f8v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n42u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bncos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dh4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no6nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huy68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o76ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2506") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3okx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7d4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3npx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gen2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u01ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heeqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgdcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or2y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cp0f") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xua7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hsnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbcca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l814m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pp0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ast") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qkxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q174j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t10a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etoyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe4j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bee4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wlvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqnj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfu2f") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_icbx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdeaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkfgw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xntg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqwxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lie3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjwtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47beh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hv5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r0sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_513oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buwne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihh37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ido") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdwmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f0j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm2qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4pqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpor1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmqo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72v7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cscds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhyad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmfh5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h1ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fuxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pgwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ano7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v4jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lynq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nll7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7804n") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_primordialgazer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_primordialgazer.tres new file mode 100644 index 0000000..7e46931 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_primordialgazer.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://dtgkokmhlcn1j"] + +[ext_resource type="Texture2D" uid="uid://8mdg0sqrrjfk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png" id="1_1j7vx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oks6"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aljcs"] +atlas = ExtResource("1_1j7vx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqd5k"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtns0"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6no06"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha4sp"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6xrt"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cqpf"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqlk2"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r5b6"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74ct0"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mbbr"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p53oo"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x5dq"] +atlas = ExtResource("1_1j7vx") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rivn3"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubr0o"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dnq3"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exnin"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0njyw"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67j2w"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq7ag"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_836a3"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52nnp"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tk2s"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pabt1"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykm1b"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8k83"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfmbj"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tstwt"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6t8k"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y15i"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhxsf"] +atlas = ExtResource("1_1j7vx") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry1jb"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32g2j"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4euqu"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q12cr"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb7cm"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gtrl"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwpsq"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lptw7"] +atlas = ExtResource("1_1j7vx") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64oga"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8r14"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_083ur"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20nu2"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7jq1"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivrnk"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky25h"] +atlas = ExtResource("1_1j7vx") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uivr"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw8vc"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuun6"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opw6j"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_symg6"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1r4d"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqrew"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2poaj"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fk14"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkkg5"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpfn8"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n25ix"] +atlas = ExtResource("1_1j7vx") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oks6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aljcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqd5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtns0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6no06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha4sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6xrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cqpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqlk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r5b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74ct0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mbbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p53oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x5dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rivn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubr0o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dnq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exnin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0njyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67j2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq7ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_836a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52nnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tk2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pabt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykm1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8k83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfmbj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tstwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6t8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y15i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhxsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry1jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32g2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4euqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q12cr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb7cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gtrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwpsq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lptw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64oga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8r14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_083ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20nu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7jq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivrnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky25h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uivr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw8vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuun6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opw6j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_symg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1r4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqrew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2poaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fk14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkkg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpfn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n25ix") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_pteryx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_pteryx.tres new file mode 100644 index 0000000..545d889 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_pteryx.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://cblbj5ndnbvtd"] + +[ext_resource type="Texture2D" uid="uid://cv617qkpv73ix" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png" id="1_e3vbf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wdhu"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbxax"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua2hg"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbgo2"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh7nh"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hophf"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwx7a"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3o5a"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfecv"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3m7c"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4heu"] +atlas = ExtResource("1_e3vbf") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o44fg"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjeym"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clwak"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omhi4"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruy1u"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnmo7"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqv7v"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0w1j"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0tbp"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3l88"] +atlas = ExtResource("1_e3vbf") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqqsh"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v34xu"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0tki"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1c5q"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfa45"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oxfk"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peevp"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rka1c"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7qn0"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5v52"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at2jj"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf446"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0wv0"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_444wf"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28emw"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw8pj"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k28qe"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esg8c"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gsnf"] +atlas = ExtResource("1_e3vbf") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbxla"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwwnq"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yrfb"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmqly"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhpm5"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qax74"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccugn"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54bfe"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5sme"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1h1l"] +atlas = ExtResource("1_e3vbf") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geet4"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvdab"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq3ls"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycs8w"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iet1"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a14v8"] +atlas = ExtResource("1_e3vbf") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vboo"] +atlas = ExtResource("1_e3vbf") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkw1u"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yko3b"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vc7f"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq4ok"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yervs"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54lin"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bla66"] +atlas = ExtResource("1_e3vbf") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i070o"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuhq7"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxrr3"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht8nm"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgwd7"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b67xd"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thicn"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idxyr"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uuxs"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w43y"] +atlas = ExtResource("1_e3vbf") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wdhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbxax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua2hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbgo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh7nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hophf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwx7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3o5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfecv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3m7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4heu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o44fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjeym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clwak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omhi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruy1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnmo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqv7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0w1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0tbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3l88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqqsh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v34xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0tki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1c5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfa45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oxfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peevp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rka1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7qn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5v52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at2jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf446") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0wv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_444wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28emw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw8pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k28qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esg8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gsnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbxla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwwnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yrfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmqly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhpm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qax74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccugn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54bfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5sme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1h1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geet4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvdab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq3ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycs8w") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iet1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a14v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vboo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkw1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yko3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vc7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq4ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yervs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54lin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bla66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i070o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuhq7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxrr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht8nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgwd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b67xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thicn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idxyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uuxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w43y") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragebinder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragebinder.tres new file mode 100644 index 0000000..4137dd4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragebinder.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://cta1rynlhtvhd"] + +[ext_resource type="Texture2D" uid="uid://q87qqdo7jrrl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png" id="1_fvqss"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxqgw"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr3px"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lppjn"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnhui"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7k0i"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg8bi"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34sax"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nutqs"] +atlas = ExtResource("1_fvqss") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qslo8"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8jnp"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f3gb"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr5ks"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji5mj"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3b5g"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpvkw"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrjtj"] +atlas = ExtResource("1_fvqss") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3llj"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qenpq"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up5f6"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur1d2"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw8qk"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu0tl"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1phq"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_far5u"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ndbl"] +atlas = ExtResource("1_fvqss") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xliv1"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndmuk"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osgfm"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g73p1"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d4eb"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s54i"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayv2j"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s5bv"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukn5x"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_643je"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjlnj"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyhs5"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkyr7"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iql07"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leyak"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05j5a"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m53h7"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug2hs"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djyw7"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66d2e"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnv0x"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qxaa"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klyaq"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rgji"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q855p"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd0ta"] +atlas = ExtResource("1_fvqss") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6swn6"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2tqo"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iisc2"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgu4a"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q7e0"] +atlas = ExtResource("1_fvqss") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah4ub"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdusa"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uuh1"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_000nv"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jqhv"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiim6"] +atlas = ExtResource("1_fvqss") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc1r0"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj3pc"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpa7c"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw7co"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6x2i"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw5bx"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haeie"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quljm"] +atlas = ExtResource("1_fvqss") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otd1q"] +atlas = ExtResource("1_fvqss") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vktq"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuilo"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heofl"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb078"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o3l4"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dkgu"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w8cb"] +atlas = ExtResource("1_fvqss") +region = Rect2(968, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxqgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr3px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lppjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnhui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7k0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg8bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34sax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nutqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qslo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8jnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f3gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr5ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji5mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3b5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpvkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrjtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3llj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qenpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up5f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur1d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw8qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu0tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1phq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_far5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ndbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xliv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndmuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osgfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g73p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d4eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s54i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayv2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s5bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukn5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_643je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjlnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyhs5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkyr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iql07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leyak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05j5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m53h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug2hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djyw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66d2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnv0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qxaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klyaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rgji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q855p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd0ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6swn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2tqo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iisc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgu4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q7e0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah4ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdusa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uuh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_000nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jqhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiim6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc1r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj3pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpa7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw7co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6x2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw5bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haeie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quljm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_otd1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vktq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuilo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heofl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb078") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o3l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dkgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w8cb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragnoramk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragnoramk2.tres new file mode 100644 index 0000000..be6404a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_ragnoramk2.tres @@ -0,0 +1,882 @@ +[gd_resource type="SpriteFrames" load_steps=120 format=3 uid="uid://cwykqxe64l3t0"] + +[ext_resource type="Texture2D" uid="uid://05quj10hj4ew" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png" id="1_v8bvu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3h7n"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wntb"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpfji"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2n7l"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_548ew"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36f7j"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh84i"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vae56"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qy21"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2xks"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhksl"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e8qi"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivasq"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ist8"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jshmw"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7u15"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niqrt"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li04v"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl7sv"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dqtw"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adw74"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x508"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o0cp"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uia5k"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c5xr"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmiqe"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8jsg"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g23p"] +atlas = ExtResource("1_v8bvu") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnd5b"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee8wr"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05kfl"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8jyq"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj452"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgynh"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efc5o"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjmsi"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvaq3"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga8an"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44fao"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87kya"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xasy4"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fm0n"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twar7"] +atlas = ExtResource("1_v8bvu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro65s"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4rdx"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy5k1"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5ek0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iqlr"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omyi4"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7ny0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3wck"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e5t1"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf265"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1vxm"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjylm"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy7ll"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3qjn"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x32x7"] +atlas = ExtResource("1_v8bvu") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pultx"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvrk0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(917, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta624"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rolqe"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh5nd"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mos0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kikum"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fyvo"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad6c6"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ev4p"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4l1d"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46ovo"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1vig"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvlt6"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ylhh"] +atlas = ExtResource("1_v8bvu") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyni6"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfjho"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muetf"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poii8"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61m52"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn66t"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86lvb"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22wis"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyb8w"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pto7v"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rljv0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s72ag"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t70kr"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exw4h"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8m1c"] +atlas = ExtResource("1_v8bvu") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahjlf"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmre7"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d0as"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaja0"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w71c"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke0v6"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnt8e"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brh6p"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmh0w"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8psoo"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ljwg"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu6nq"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxs0i"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oipb"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bisio"] +atlas = ExtResource("1_v8bvu") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7k6j"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fajfw"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6pcb"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psmac"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0x5m"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c3ln"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehsd4"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc5cw"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v0hu"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opxr4"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_511mm"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af023"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvrfk"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uouyl"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5v4j"] +atlas = ExtResource("1_v8bvu") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3h7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wntb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpfji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2n7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_548ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36f7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh84i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vae56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qy21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2xks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhksl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e8qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivasq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ist8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jshmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7u15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niqrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li04v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl7sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dqtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adw74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x508") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o0cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uia5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c5xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmiqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8jsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g23p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnd5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee8wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05kfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8jyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj452") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgynh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efc5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjmsi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvaq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga8an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44fao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87kya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xasy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fm0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro65s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4rdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy5k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5ek0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iqlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omyi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7ny0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3wck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e5t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf265") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1vxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjylm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3qjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x32x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pultx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvrk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta624") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rolqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh5nd") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mos0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kikum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fyvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad6c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ev4p") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4l1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46ovo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1vig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvlt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ylhh") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyni6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfjho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muetf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61m52") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn66t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86lvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22wis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyb8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pto7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rljv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s72ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t70kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exw4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8m1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahjlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmre7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d0as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaja0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w71c") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke0v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnt8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brh6p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmh0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8psoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ljwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu6nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxs0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oipb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bisio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7k6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fajfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6pcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psmac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0x5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c3ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehsd4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc5cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v0hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opxr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_511mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af023") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvrfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uouyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5v4j") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rancour.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rancour.tres new file mode 100644 index 0000000..c10880c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rancour.tres @@ -0,0 +1,820 @@ +[gd_resource type="SpriteFrames" load_steps=114 format=3 uid="uid://0k61ofddr0t3"] + +[ext_resource type="Texture2D" uid="uid://c15ixu3ao54v0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png" id="1_k7qew"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxjhm"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeaj0"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86sib"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nueic"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_typqm"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecmdg"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv3gf"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_755na"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6r6s"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wwks"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ncnd"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i0wp"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g575d"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o38wm"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xvhe"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nafax"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag3s0"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf6ro"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osuem"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euvu1"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_totar"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyt04"] +atlas = ExtResource("1_k7qew") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gnr6"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5nti"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4nat"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhgum"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmvjl"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa0lv"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unf6u"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brxax"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va5l2"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hwpt"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f7c"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt2a6"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0oyl"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrhin"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_040ev"] +atlas = ExtResource("1_k7qew") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ynj1"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lc7b"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb4ot"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wdrg"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c3hr"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgg8d"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46orr"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v46on"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmgbr"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4n2h"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayvax"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwlno"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_getvj"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pq7y"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb1s4"] +atlas = ExtResource("1_k7qew") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ci3"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dl0g"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vqo4"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp6mg"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljcuq"] +atlas = ExtResource("1_k7qew") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii7x5"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6du0"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aukyn"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7y5c"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fxw8"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6q1g"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn7td"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov2da"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnspo"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ttu"] +atlas = ExtResource("1_k7qew") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5w1m"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw1iu"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11kol"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el6jr"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vws7h"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrfqn"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr2fn"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_332x7"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iensa"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22jbj"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5tjw"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ity0u"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouyio"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41riv"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms4ep"] +atlas = ExtResource("1_k7qew") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmvqf"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwne3"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcww0"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eupk"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ym0u"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o5d8"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_682s2"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjbht"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itbwg"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffxy0"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws5um"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03wuk"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnk25"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54n7r"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_568jk"] +atlas = ExtResource("1_k7qew") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2bcj"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qik2c"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8rnh"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxbx0"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nmtg"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc34g"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvkys"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eg62"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ugua"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dom0j"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd27w"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw6c7"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gllnn"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ven8n"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lofxn"] +atlas = ExtResource("1_k7qew") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxjhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeaj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86sib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nueic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_typqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecmdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv3gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_755na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6r6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wwks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ncnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i0wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g575d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o38wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xvhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nafax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag3s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf6ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osuem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euvu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_totar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyt04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gnr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5nti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4nat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhgum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmvjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa0lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unf6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brxax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va5l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hwpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74f7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt2a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0oyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrhin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_040ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ynj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lc7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb4ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wdrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c3hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgg8d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_46orr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v46on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmgbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4n2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayvax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwlno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_getvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pq7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb1s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ci3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dl0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vqo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp6mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljcuq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii7x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6du0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aukyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7y5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fxw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6q1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn7td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov2da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnspo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ttu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5w1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw1iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11kol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el6jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vws7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrfqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr2fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_332x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iensa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22jbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5tjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ity0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouyio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41riv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms4ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmvqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwne3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcww0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eupk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ym0u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o5d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_682s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjbht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itbwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffxy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws5um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03wuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54n7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_568jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2bcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qik2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8rnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxbx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nmtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc34g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvkys") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eg62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ugua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dom0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd27w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw6c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gllnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ven8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lofxn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rex.tres new file mode 100644 index 0000000..6bfbcc2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_rex.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://djhps1g8hl345"] + +[ext_resource type="Texture2D" uid="uid://d7y1yxtxg1hw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png" id="1_tr8mv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhnfl"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx42i"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p8es"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8y0c"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnbhb"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkf8i"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f51e1"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axxww"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fvfn"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft1hn"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soamm"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkmsc"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrk5h"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20jbm"] +atlas = ExtResource("1_tr8mv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo83k"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by16j"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0svvn"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6737"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmpk"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs3ux"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aua3h"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x203k"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c1bj"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xtad"] +atlas = ExtResource("1_tr8mv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltwcq"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4dwk"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3mfg"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sqm6"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1o8h"] +atlas = ExtResource("1_tr8mv") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wbop"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yw3b"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6x41"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obssr"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhfc5"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsgk6"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvbeh"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnmga"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwdb7"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdp51"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucm66"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7tyq"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx8l0"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f04hg"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej5cd"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdyt8"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkflp"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3hiv"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg3c0"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ef1g"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0l8a"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snn4h"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdsai"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toy3h"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jwx3"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlpjx"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1053x"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmu7g"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rgp"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb7ls"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s45g5"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3l5y"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxjwd"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifo4f"] +atlas = ExtResource("1_tr8mv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvx8c"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87wsc"] +atlas = ExtResource("1_tr8mv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mql0"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckyhy"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwfgn"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4384b"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnlxo"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4nh8"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikemj"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaaw5"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc2wb"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7jp5"] +atlas = ExtResource("1_tr8mv") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rynv8"] +atlas = ExtResource("1_tr8mv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy12f"] +atlas = ExtResource("1_tr8mv") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1ygn"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv360"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l5qs"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uwcv"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4jom"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s1in"] +atlas = ExtResource("1_tr8mv") +region = Rect2(606, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhnfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx42i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p8es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8y0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnbhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkf8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f51e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axxww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fvfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft1hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soamm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkmsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrk5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20jbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo83k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by16j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0svvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6737") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs3ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aua3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x203k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c1bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xtad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltwcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4dwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3mfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sqm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1o8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wbop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yw3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6x41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obssr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhfc5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsgk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvbeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnmga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwdb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdp51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucm66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7tyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx8l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f04hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej5cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdyt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkflp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3hiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg3c0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ef1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0l8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snn4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdsai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toy3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jwx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlpjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1053x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmu7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3rgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb7ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s45g5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3l5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxjwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifo4f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvx8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87wsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mql0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckyhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwfgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4384b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnlxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4nh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikemj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaaw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc2wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7jp5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rynv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy12f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1ygn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv360") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l5qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uwcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4jom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s1in") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharelder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharelder.tres new file mode 100644 index 0000000..92b400a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharelder.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://btatmerkdpur8"] + +[ext_resource type="Texture2D" uid="uid://c352fjka4nwjh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png" id="1_2vp7u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2tfe"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ngti"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyro8"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8bes"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j7fp"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch7lg"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opjhs"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxhmp"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hror"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juj4h"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa322"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohngu"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh873"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8su4e"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_482qb"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phf8g"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emhn6"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2gn8"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu1s2"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm8xf"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ysc"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db6el"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm47h"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aesci"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewj3o"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uux4"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17qa3"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnmxr"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcnw1"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oitf"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mltm"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdi6r"] +atlas = ExtResource("1_2vp7u") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6gtk"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhsml"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fchfd"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36611"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdwkb"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyrxc"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1fu8"] +atlas = ExtResource("1_2vp7u") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53n46"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xm5q"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atalj"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea30o"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p4gs"] +atlas = ExtResource("1_2vp7u") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvguw"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asrou"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uatr4"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyscp"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfdgb"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leowo"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_464v7"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlcj7"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctjyy"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtqcq"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhv1f"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48xr7"] +atlas = ExtResource("1_2vp7u") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csbsn"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vupsb"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o7od"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tpxq"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js7bi"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enrv7"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqql2"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wiso"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwsaj"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaecq"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5b2j"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxedj"] +atlas = ExtResource("1_2vp7u") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2tfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ngti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyro8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8bes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j7fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch7lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opjhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxhmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hror") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juj4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa322") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohngu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh873") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8su4e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_482qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phf8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emhn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2gn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu1s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm8xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ysc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db6el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm47h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aesci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewj3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uux4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17qa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnmxr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcnw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oitf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mltm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdi6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6gtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhsml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fchfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36611") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdwkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyrxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1fu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53n46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xm5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atalj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea30o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p4gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvguw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asrou") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uatr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyscp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfdgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leowo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_464v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlcj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctjyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtqcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhv1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48xr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csbsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vupsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o7od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tpxq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_js7bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enrv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqql2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wiso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwsaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaecq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5b2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxedj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharveteran.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharveteran.tres new file mode 100644 index 0000000..a028e21 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharveteran.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bgsc16kcxmcsf"] + +[ext_resource type="Texture2D" uid="uid://c6oyeuf27eoj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png" id="1_w7g7n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1w17"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqp7w"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7kiv"] +atlas = ExtResource("1_w7g7n") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkpad"] +atlas = ExtResource("1_w7g7n") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppos4"] +atlas = ExtResource("1_w7g7n") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvham"] +atlas = ExtResource("1_w7g7n") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tbjy"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36sv8"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkw15"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymxfs"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk1uk"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw2qv"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocj8w"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80aow"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8140"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruwxc"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jkdr"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sdof"] +atlas = ExtResource("1_w7g7n") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32ojd"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukhwo"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w41fj"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjxo7"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jomkk"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1e4l"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2chme"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwq7f"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwd4u"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu381"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0rva"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dat0j"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2ik4"] +atlas = ExtResource("1_w7g7n") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16b57"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx6pg"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7vvk"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rycwi"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88bbp"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okyts"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt65w"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rxit"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjgai"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cck37"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rato7"] +atlas = ExtResource("1_w7g7n") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh30x"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fo5r"] +atlas = ExtResource("1_w7g7n") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi6tn"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ionn5"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46uir"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3axi"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0juf"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sy3w"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq23n"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npc5k"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vtsf"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spd0a"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4alor"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slmmm"] +atlas = ExtResource("1_w7g7n") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usx6u"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_371ja"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hroc"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gdtd"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w1to"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8woi8"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8u7t"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jgqk"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gokij"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4533"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8805"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1eqd"] +atlas = ExtResource("1_w7g7n") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6adj"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu6ga"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smrda"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrvsx"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8civ"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjo41"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvorn"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poagl"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jct07"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l87s8"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lndtx"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b0sn"] +atlas = ExtResource("1_w7g7n") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1w17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqp7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7kiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkpad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppos4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvham") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tbjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36sv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkw15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymxfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk1uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw2qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocj8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80aow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8140") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruwxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jkdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sdof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32ojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukhwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w41fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjxo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jomkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1e4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2chme") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwq7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwd4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu381") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0rva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dat0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2ik4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16b57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx6pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7vvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rycwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88bbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okyts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt65w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rxit") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjgai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cck37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rato7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh30x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fo5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi6tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ionn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46uir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3axi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0juf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sy3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq23n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npc5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vtsf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spd0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4alor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slmmm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_usx6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_371ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hroc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gdtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w1to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8woi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8u7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jgqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gokij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4533") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8805") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1eqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6adj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu6ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smrda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrvsx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8civ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjo41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvorn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poagl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jct07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l87s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lndtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b0sn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharyoung.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharyoung.tres new file mode 100644 index 0000000..0e751c5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_silitharyoung.tres @@ -0,0 +1,414 @@ +[gd_resource type="SpriteFrames" load_steps=56 format=3 uid="uid://pcyueapoykg5"] + +[ext_resource type="Texture2D" uid="uid://c85xbr1lphmyt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png" id="1_8ixxv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq0mb"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biua4"] +atlas = ExtResource("1_8ixxv") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb2yr"] +atlas = ExtResource("1_8ixxv") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0wx2"] +atlas = ExtResource("1_8ixxv") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibofs"] +atlas = ExtResource("1_8ixxv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k8qk"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovd3y"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx4s6"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32841"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldb5h"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcoso"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asc4r"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el6ue"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rooej"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1311g"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32g5p"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ds1"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fay2f"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waf7c"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyj1c"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wecln"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vkgt"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlywy"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaulu"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc2f6"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pitwr"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty1cu"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1kv0"] +atlas = ExtResource("1_8ixxv") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdbuy"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgjop"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj7se"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdqaa"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r063d"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3sm0"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_588tj"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skgrg"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s535"] +atlas = ExtResource("1_8ixxv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x5p0"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu85s"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_410o2"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_660x0"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe4pe"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4awy"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bals2"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t5h1"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5vod"] +atlas = ExtResource("1_8ixxv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuptj"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6fjt"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdxxb"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtfvt"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf2wp"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwfkj"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u25l7"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecgyv"] +atlas = ExtResource("1_8ixxv") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq0mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biua4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb2yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0wx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibofs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k8qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovd3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx4s6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_32841") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldb5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcoso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asc4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el6ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rooej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1311g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32g5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ds1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fay2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waf7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyj1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wecln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vkgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlywy") +}], +"loop": true, +"name": &"breathe", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaulu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc2f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pitwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty1cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1kv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdbuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgjop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj7se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdqaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r063d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3sm0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_588tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skgrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s535") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x5p0") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu85s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_410o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_660x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe4pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4awy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bals2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t5h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5vod") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuptj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6fjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdxxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtfvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf2wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwfkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u25l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecgyv") +}], +"loop": true, +"name": &"move", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sinergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sinergyunit.tres new file mode 100644 index 0000000..37b13b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sinergyunit.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://rt1lf86p55jk"] + +[ext_resource type="Texture2D" uid="uid://x2mfw0vfbiqx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png" id="1_xuicv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kkbr"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wi11"] +atlas = ExtResource("1_xuicv") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lahp"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k27qf"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tokl"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krdj5"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1rl7"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5cwu"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdjmw"] +atlas = ExtResource("1_xuicv") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn5qu"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbl15"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li1of"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b11db"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl8fm"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ba3"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kw4o"] +atlas = ExtResource("1_xuicv") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woqox"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt46a"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2um8"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8dj8"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4kra"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d780"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwjg2"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2dva"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g036c"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anb40"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tspr"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bxqb"] +atlas = ExtResource("1_xuicv") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qjhf"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u87iq"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6h6e"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5ns5"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h3mh"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d0wx"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apg4d"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nskno"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snx4r"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kynn"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfwor"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i54j1"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c83jh"] +atlas = ExtResource("1_xuicv") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ygl"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11kk5"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np4wb"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfx1x"] +atlas = ExtResource("1_xuicv") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6mhn"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcdtm"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhhqt"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqyv1"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbbi3"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0apte"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3x4t"] +atlas = ExtResource("1_xuicv") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_472jw"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n062m"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc0ey"] +atlas = ExtResource("1_xuicv") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nodx2"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86ajt"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tlc7"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tjac"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ltec"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab7ls"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnq2w"] +atlas = ExtResource("1_xuicv") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsopi"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmun5"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nws30"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ucm"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8dob"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jim52"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyrn3"] +atlas = ExtResource("1_xuicv") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pfq2"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cdi8"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0un7"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxi67"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf0kh"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfp5c"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adtx3"] +atlas = ExtResource("1_xuicv") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kkbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wi11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lahp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k27qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tokl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krdj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1rl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5cwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdjmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn5qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbl15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b11db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl8fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ba3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kw4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woqox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt46a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2um8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8dj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4kra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d780") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwjg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2dva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g036c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anb40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tspr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bxqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qjhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u87iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6h6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5ns5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h3mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d0wx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_apg4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nskno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snx4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kynn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfwor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i54j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c83jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ygl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11kk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np4wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfx1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6mhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcdtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhhqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqyv1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbbi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0apte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3x4t") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_472jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n062m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc0ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nodx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86ajt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tlc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tjac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ltec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab7ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnq2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsopi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmun5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nws30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8dob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jim52") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyrn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pfq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cdi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0un7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxi67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf0kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfp5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adtx3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sister.tres new file mode 100644 index 0000000..b794f45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_sister.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://lconemg632ww"] + +[ext_resource type="Texture2D" uid="uid://cr6sjypugvnng" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png" id="1_cm2og"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c521h"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfo30"] +atlas = ExtResource("1_cm2og") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm0js"] +atlas = ExtResource("1_cm2og") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btp4o"] +atlas = ExtResource("1_cm2og") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biuwx"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0w07"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejo5o"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n1to"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijlog"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5dtb"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkkmw"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kaa0"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csk0l"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_328j1"] +atlas = ExtResource("1_cm2og") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg3u0"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksq80"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v57an"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x36la"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr8j2"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6gru"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iamct"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opx05"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjbg"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8h0u"] +atlas = ExtResource("1_cm2og") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkg18"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43uvh"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ar4"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nagyr"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxbgh"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klnli"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5ymf"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeloy"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mehcl"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce5x4"] +atlas = ExtResource("1_cm2og") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slvdx"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bid4i"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_105r8"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sc5n"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbyo4"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efr3w"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2djgd"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbplq"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gua5b"] +atlas = ExtResource("1_cm2og") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cobig"] +atlas = ExtResource("1_cm2og") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghkho"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbrti"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7neqj"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb43b"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk4h5"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b5c7"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iva0m"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6okw"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq65u"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxdyr"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_telbf"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkn1e"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cadh"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u386"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r17xw"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts5bu"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46upc"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4dat"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3impj"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q824b"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma3ti"] +atlas = ExtResource("1_cm2og") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3yre"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw623"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8q4a"] +atlas = ExtResource("1_cm2og") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifm83"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6we6q"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25uej"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t54q5"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrnal"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqy22"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npsqu"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyape"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msuu8"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wvb0"] +atlas = ExtResource("1_cm2og") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xyqg"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6wkv"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq0lr"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8i5j"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m45h"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1d75"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7pxp"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgorv"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chv0b"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bugex"] +atlas = ExtResource("1_cm2og") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c521h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfo30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm0js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btp4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biuwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0w07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejo5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n1to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijlog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5dtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkkmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kaa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csk0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_328j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg3u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksq80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v57an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x36la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr8j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6gru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iamct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opx05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgjbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8h0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkg18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43uvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ar4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nagyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxbgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klnli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5ymf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeloy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mehcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce5x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slvdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bid4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_105r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sc5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbyo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efr3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2djgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbplq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gua5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cobig") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghkho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbrti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7neqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb43b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk4h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b5c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iva0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6okw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq65u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxdyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_telbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkn1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cadh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u386") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r17xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts5bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46upc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4dat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3impj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q824b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma3ti") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3yre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw623") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8q4a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifm83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6we6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25uej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t54q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrnal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqy22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npsqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyape") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msuu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wvb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xyqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6wkv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq0lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8i5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m45h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1d75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7pxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgorv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chv0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bugex") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_spiritharvester.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_spiritharvester.tres new file mode 100644 index 0000000..3e5e159 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_spiritharvester.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bxipv5a83n6bx"] + +[ext_resource type="Texture2D" uid="uid://cxo2u78nvxkfa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png" id="1_q7ljd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qjxh"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drngt"] +atlas = ExtResource("1_q7ljd") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvnai"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k73x"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w11at"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wp3om"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq75g"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y48hx"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p07w"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohck"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ope8p"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_limmu"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xem0"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12o5x"] +atlas = ExtResource("1_q7ljd") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq7mw"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxll4"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk64a"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebdri"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f0o1"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfk4f"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjffo"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qp0k"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obtp2"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oooqb"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y0yh"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pk2p"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msanx"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wiy0"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mls5"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc40e"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24h4k"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ift"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0adv1"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxg6e"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeqb2"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew785"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oku15"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm6mu"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v87wi"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88xk5"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ise4"] +atlas = ExtResource("1_q7ljd") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulwp4"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccyua"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3rax"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lewti"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csw5y"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqiyy"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvjh0"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi560"] +atlas = ExtResource("1_q7ljd") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqwqs"] +atlas = ExtResource("1_q7ljd") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a43ej"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkcd5"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7wqk"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2hcs"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur2hd"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f7ei"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ach3"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4so0e"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt4mq"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqndp"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak2bs"] +atlas = ExtResource("1_q7ljd") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xn4m"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6w2g"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wncv7"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yfg1"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeeid"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d075n"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwdod"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0evib"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh30u"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhq6h"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fbuo"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7o2n"] +atlas = ExtResource("1_q7ljd") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qjxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drngt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvnai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k73x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w11at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wp3om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq75g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y48hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p07w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ope8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_limmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xem0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12o5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq7mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxll4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk64a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebdri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f0o1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfk4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjffo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qp0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obtp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oooqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y0yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pk2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msanx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wiy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mls5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc40e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24h4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ift") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0adv1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxg6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeqb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew785") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oku15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm6mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v87wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88xk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ise4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulwp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccyua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3rax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lewti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csw5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqiyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvjh0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi560") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqwqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a43ej") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkcd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7wqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2hcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur2hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f7ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ach3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4so0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt4mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqndp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak2bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xn4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6w2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wncv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yfg1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeeid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d075n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwdod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0evib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh30u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhq6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fbuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7o2n") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_support.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_support.tres new file mode 100644 index 0000000..fadd7b3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_support.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://oxx6yu302mjo"] + +[ext_resource type="Texture2D" uid="uid://crt2dmml77r43" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png" id="1_mvb37"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6ph6"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai0ck"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v7op"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_456vm"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4nbs"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5owa"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geyew"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvj2t"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8886i"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5jgj"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osvxl"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyely"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt5xr"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmw4u"] +atlas = ExtResource("1_mvb37") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh878"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss7hs"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q12pw"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vump"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u010"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7aym"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8llwf"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg11k"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uys8"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qtq6"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1f1n"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4msi3"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36fy0"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qtj8"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jflt1"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur112"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oab1d"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_453om"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5j5v"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m44wp"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ylk"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f82ra"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qesoh"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh48f"] +atlas = ExtResource("1_mvb37") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj8d7"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmpn6"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmdfh"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyxux"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpy5c"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6ynj"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6svm"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmcpd"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o50q0"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m47jd"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6x4p"] +atlas = ExtResource("1_mvb37") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luwhu"] +atlas = ExtResource("1_mvb37") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv77j"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anw1w"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdvka"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7dl4"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0fqb"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygq8b"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxmag"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqes0"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo4ki"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k13fx"] +atlas = ExtResource("1_mvb37") +region = Rect2(81, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6ph6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai0ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v7op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_456vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4nbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5owa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geyew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvj2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8886i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5jgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osvxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyely") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt5xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmw4u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss7hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q12pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vump") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u010") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7aym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8llwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg11k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uys8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qtq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1f1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4msi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36fy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qtj8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jflt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur112") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oab1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_453om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5j5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m44wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ylk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f82ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qesoh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh48f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj8d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmpn6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmdfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyxux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpy5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6ynj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6svm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmcpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o50q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m47jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6x4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luwhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv77j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anw1w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdvka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7dl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0fqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygq8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxmag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqes0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo4ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k13fx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tank.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tank.tres new file mode 100644 index 0000000..e76e58f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tank.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://bus2i0a875udm"] + +[ext_resource type="Texture2D" uid="uid://cn88ln5ndnab1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png" id="1_hfj2k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y56lx"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jye78"] +atlas = ExtResource("1_hfj2k") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifufe"] +atlas = ExtResource("1_hfj2k") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yof05"] +atlas = ExtResource("1_hfj2k") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6euyv"] +atlas = ExtResource("1_hfj2k") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnlej"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvknb"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4sso"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oku1"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui5ri"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elgfk"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khty8"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anfwo"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htwyv"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd0by"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d00uw"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg7g2"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hhu3"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2q1v"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq6hp"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy3x5"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nwve"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3n5g"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0874o"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnugx"] +atlas = ExtResource("1_hfj2k") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bv04"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbycm"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2ri8"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy5yp"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb2ck"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtt3r"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnxaw"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypypo"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jci5n"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kveyw"] +atlas = ExtResource("1_hfj2k") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bsx7"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx3b1"] +atlas = ExtResource("1_hfj2k") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6futq"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00jwr"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12fma"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31v84"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64w3x"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu4d0"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o36jw"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op1m2"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkb6j"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aq44"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npxtp"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgbq5"] +atlas = ExtResource("1_hfj2k") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soa0p"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrhpn"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6kev"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3tnk"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfyf5"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_175ov"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or31d"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3gjd"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbiym"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qpkk"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxpdj"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwk5c"] +atlas = ExtResource("1_hfj2k") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y56lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jye78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifufe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yof05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6euyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnlej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvknb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4sso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oku1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui5ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elgfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khty8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_anfwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htwyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd0by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d00uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg7g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hhu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2q1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq6hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy3x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nwve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3n5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0874o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnugx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bv04") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbycm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2ri8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy5yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb2ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtt3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnxaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypypo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jci5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kveyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bsx7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx3b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6futq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00jwr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_12fma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31v84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64w3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu4d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o36jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op1m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkb6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aq44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npxtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgbq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soa0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrhpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6kev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3tnk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfyf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_175ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or31d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3gjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbiym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qpkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxpdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwk5c") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_thraex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_thraex.tres new file mode 100644 index 0000000..ba5da16 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_thraex.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://cm6nqx2moiirq"] + +[ext_resource type="Texture2D" uid="uid://7mvkc1rvhc4k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png" id="1_y0r1l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lht6x"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy1ff"] +atlas = ExtResource("1_y0r1l") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6swkb"] +atlas = ExtResource("1_y0r1l") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l5x7"] +atlas = ExtResource("1_y0r1l") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4dab"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhr36"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvla6"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5phw3"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ou5a"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhqns"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ka4h"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh2tb"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c5lb"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_advbu"] +atlas = ExtResource("1_y0r1l") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw6pd"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av3qi"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pebap"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un75x"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4qj0"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwq85"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvuiw"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1asvj"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpxkc"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58j0g"] +atlas = ExtResource("1_y0r1l") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3i1i"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ewdd"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3trko"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf32n"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n62r"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd6s8"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7u3v"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60ebd"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2ug0"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cljrl"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slhva"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2yr"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7moty"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu73n"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7ffc"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw0ix"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25bqf"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rljhl"] +atlas = ExtResource("1_y0r1l") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q3ky"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6id65"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u6pc"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow0fl"] +atlas = ExtResource("1_y0r1l") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njdnw"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvaiq"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jahgu"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnkei"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3bsj"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3m7i"] +atlas = ExtResource("1_y0r1l") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o4kq"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x5on"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj8m5"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sk8c"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6v3u"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m25j1"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efgjt"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbabh"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbtap"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sxld"] +atlas = ExtResource("1_y0r1l") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjth2"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b7ri"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lnok"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly8n4"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lh8s"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylmv3"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tttju"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd0m1"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rck42"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o682w"] +atlas = ExtResource("1_y0r1l") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjr68"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbvm3"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drk01"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eok26"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uewtm"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epos1"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laq4v"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfuhh"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ypw"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vldmy"] +atlas = ExtResource("1_y0r1l") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lht6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy1ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6swkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l5x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4dab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhr36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvla6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5phw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ou5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhqns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ka4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh2tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c5lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_advbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw6pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av3qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pebap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un75x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4qj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwq85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvuiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1asvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpxkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58j0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3i1i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ewdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3trko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf32n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n62r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd6s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7u3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60ebd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2ug0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cljrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slhva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7moty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu73n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7ffc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw0ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25bqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rljhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q3ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6id65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u6pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow0fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njdnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvaiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jahgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnkei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3bsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3m7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o4kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x5on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj8m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sk8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6v3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m25j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efgjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbabh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbtap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sxld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjth2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b7ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lnok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly8n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lh8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylmv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tttju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd0m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rck42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o682w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjr68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbvm3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_drk01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eok26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uewtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epos1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laq4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfuhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ypw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vldmy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tier2general.tres new file mode 100644 index 0000000..2e899ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_tier2general.tres @@ -0,0 +1,959 @@ +[gd_resource type="SpriteFrames" load_steps=131 format=3 uid="uid://btd2otvtlvmm7"] + +[ext_resource type="Texture2D" uid="uid://cdnyo8dluq5ry" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png" id="1_08l05"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivqcx"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emxrp"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otrv6"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guonf"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ejt"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywxpf"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0a77"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq02y"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa78j"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdl1n"] +atlas = ExtResource("1_08l05") +region = Rect2(345, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62gbl"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5g3w"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tenvo"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbb3h"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbyw4"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1sqm"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncxcu"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3ahv"] +atlas = ExtResource("1_08l05") +region = Rect2(230, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idqhw"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svwlf"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq7kt"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhsdr"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojs2l"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vit7"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k27wm"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiad0"] +atlas = ExtResource("1_08l05") +region = Rect2(115, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al3cx"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vwp8"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20xmi"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0pn3"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npol1"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb1qe"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb5mp"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sni1w"] +atlas = ExtResource("1_08l05") +region = Rect2(0, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpj2u"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1h54"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os0r4"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i7mb"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq2rt"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j477g"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm0b4"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jypo8"] +atlas = ExtResource("1_08l05") +region = Rect2(575, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sdpn"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc7m6"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl66y"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke46y"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snjw0"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3nx7"] +atlas = ExtResource("1_08l05") +region = Rect2(460, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpoa0"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xxux"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrllg"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62brr"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aahv1"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f46ir"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fycos"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l08ks"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b57ix"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx0da"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nldki"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv732"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg0kb"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xy7d"] +atlas = ExtResource("1_08l05") +region = Rect2(1610, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t202b"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr4x2"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgggi"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe5p4"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odc1q"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ampec"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj1q5"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkxrs"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4j8h"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ffa"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tdvx"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdmke"] +atlas = ExtResource("1_08l05") +region = Rect2(1495, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ots87"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfbc7"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d7n8"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf60r"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksssw"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppf4s"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5526f"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vms2m"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gty8d"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in5on"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnrwu"] +atlas = ExtResource("1_08l05") +region = Rect2(1725, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0lnh"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vug3d"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bjp8"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g0t5"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb77d"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e16gv"] +atlas = ExtResource("1_08l05") +region = Rect2(805, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sp0c"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljg6r"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8krmo"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6upp"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjwk3"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpjc8"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g3ou"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ord7l"] +atlas = ExtResource("1_08l05") +region = Rect2(690, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ir6p"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcr4w"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egg3n"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsh6c"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwifh"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd7x3"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mneq"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bew00"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp6na"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64qfk"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fqar"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0p71"] +atlas = ExtResource("1_08l05") +region = Rect2(1150, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4hcy"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwo77"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6q4k"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln62o"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byj6i"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux7lj"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ulde"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 115, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x33yw"] +atlas = ExtResource("1_08l05") +region = Rect2(1035, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6chvr"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anls0"] +atlas = ExtResource("1_08l05") +region = Rect2(920, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcqu2"] +atlas = ExtResource("1_08l05") +region = Rect2(1380, 0, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66e86"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 805, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_314uw"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 690, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8oeg"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 575, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0o7i"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 460, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4ism"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 345, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dipwb"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 230, 114, 114) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85lrv"] +atlas = ExtResource("1_08l05") +region = Rect2(1265, 115, 114, 114) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivqcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emxrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otrv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guonf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ejt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywxpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0a77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq02y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa78j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdl1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62gbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5g3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tenvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbb3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbyw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1sqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncxcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3ahv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idqhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svwlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq7kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhsdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojs2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vit7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k27wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiad0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al3cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vwp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20xmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0pn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npol1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb1qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb5mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sni1w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpj2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1h54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os0r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i7mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq2rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j477g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm0b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jypo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sdpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc7m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl66y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke46y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snjw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3nx7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpoa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xxux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrllg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62brr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aahv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f46ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fycos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l08ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b57ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx0da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nldki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv732") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg0kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xy7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t202b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr4x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgggi") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe5p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odc1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ampec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj1q5") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkxrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4j8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ffa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tdvx") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdmke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ots87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfbc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d7n8") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf60r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksssw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppf4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5526f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vms2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gty8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in5on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnrwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0lnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vug3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bjp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g0t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb77d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e16gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sp0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljg6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8krmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6upp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjwk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpjc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g3ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ord7l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ir6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcr4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egg3n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsh6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd7x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mneq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bew00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp6na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64qfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fqar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0p71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4hcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwo77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6q4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln62o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byj6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux7lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ulde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x33yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6chvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anls0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcqu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66e86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_314uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8oeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0o7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4ism") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dipwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85lrv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableflump.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableflump.tres new file mode 100644 index 0000000..03f96bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableflump.tres @@ -0,0 +1,736 @@ +[gd_resource type="SpriteFrames" load_steps=102 format=3 uid="uid://b4j43gaah42r6"] + +[ext_resource type="Texture2D" uid="uid://b4g308dn6oeph" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png" id="1_1qkgf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_if7ft"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugpn1"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhwl1"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tabk5"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rygci"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwawl"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xf61"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l01fi"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxum0"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpsp1"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5arf4"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6am1w"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ixtw"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgupa"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr16f"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a31m"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckv48"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lrwj"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p86vy"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7bxl"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtcuh"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec1fw"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4ca7"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xykdc"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6lvs"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51quv"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc4hb"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk7wq"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1prb6"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77f2c"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n21vu"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p03i7"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if5fq"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1s1v"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04lpy"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm05s"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jxuh"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2s0d"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o550"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn147"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iobg"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b45p5"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmrgn"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76wdr"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vol0a"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlpwh"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkokm"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pr0r"] +atlas = ExtResource("1_1qkgf") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m1g3"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfrn8"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvsdn"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8g3p"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvhsc"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4py5b"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iund5"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug15u"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eofrj"] +atlas = ExtResource("1_1qkgf") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43rdl"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghgk8"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy1ho"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaki5"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm5ll"] +atlas = ExtResource("1_1qkgf") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hws34"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi0pv"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8lka"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_batvw"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08t38"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqesd"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klw6f"] +atlas = ExtResource("1_1qkgf") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b10bi"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oesga"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n6ga"] +atlas = ExtResource("1_1qkgf") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wjli"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0heek"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41nef"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akeo6"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm7ud"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg8sy"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtbg2"] +atlas = ExtResource("1_1qkgf") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0xu4"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26dpd"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tommx"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibs7d"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke56v"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft3j4"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjkho"] +atlas = ExtResource("1_1qkgf") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m2dt"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj00i"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykg6f"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2plj"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmuo0"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io3pj"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4x40"] +atlas = ExtResource("1_1qkgf") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd6e6"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t8hm"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2dby"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1d6n"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvugk"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdk8j"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhvcw"] +atlas = ExtResource("1_1qkgf") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_if7ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugpn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhwl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tabk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rygci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwawl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xf61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l01fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxum0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpsp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5arf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6am1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ixtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgupa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr16f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a31m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckv48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lrwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p86vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7bxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtcuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec1fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4ca7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xykdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6lvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51quv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc4hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk7wq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1prb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77f2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n21vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p03i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if5fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1s1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04lpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm05s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jxuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2s0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o550") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn147") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iobg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b45p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmrgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76wdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vol0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlpwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkokm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pr0r") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m1g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfrn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvsdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8g3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvhsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4py5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iund5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug15u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eofrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43rdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghgk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy1ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaki5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hws34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi0pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8lka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_batvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08t38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqesd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klw6f") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b10bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oesga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n6ga") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wjli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0heek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41nef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akeo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm7ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg8sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtbg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0xu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26dpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tommx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibs7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke56v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft3j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjkho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m2dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj00i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykg6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2plj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmuo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io3pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4x40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd6e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t8hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2dby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1d6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvugk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdk8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhvcw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableleviathan.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableleviathan.tres new file mode 100644 index 0000000..7407d33 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_unstableleviathan.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://tmxlxiwkuy1m"] + +[ext_resource type="Texture2D" uid="uid://bwr7mv0fluf1n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png" id="1_6y34b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xc8o"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1txn"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe7ik"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2xfd"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nx8b"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsfch"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt8ds"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2mib"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvfg4"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1rju"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3qfa"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhm8r"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq1sn"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37br0"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crn3h"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7lyf"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxp4n"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s75wc"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8ifg"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0gnr"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8elw8"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3okkc"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pwpo"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp1co"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb7ec"] +atlas = ExtResource("1_6y34b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwrhm"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stf6a"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceyj7"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48qo6"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o83qe"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdjgo"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcgi0"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyxv8"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eftpj"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0leto"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dyrs"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omj82"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqnq6"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11r6r"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62iwi"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2huwu"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txhbd"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1wey"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aqxu"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy2kg"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0qsi"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx4cv"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pbu0"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t6g2"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkikc"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4dqh"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhy71"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibtb"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5std"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo5lg"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3a4y"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40xd4"] +atlas = ExtResource("1_6y34b") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6it5q"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nnd3"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oicdn"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwv0s"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h45ol"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia6j2"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r66dx"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2636r"] +atlas = ExtResource("1_6y34b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inink"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oshvr"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afnaw"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1li5d"] +atlas = ExtResource("1_6y34b") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p167y"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvund"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khpvr"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lscyi"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx41a"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bex87"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq8hf"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h8yf"] +atlas = ExtResource("1_6y34b") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xc8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1txn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe7ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2xfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nx8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsfch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt8ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2mib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvfg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1rju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3qfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhm8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq1sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37br0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crn3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7lyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxp4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s75wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8ifg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0gnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8elw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3okkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pwpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp1co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb7ec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwrhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stf6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceyj7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_48qo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o83qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdjgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcgi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyxv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eftpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0leto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dyrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omj82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqnq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11r6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62iwi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2huwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txhbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1wey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aqxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy2kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0qsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx4cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pbu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t6g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkikc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4dqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhy71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5std") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo5lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3a4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40xd4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6it5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nnd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oicdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwv0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h45ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia6j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r66dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2636r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inink") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oshvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afnaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1li5d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p167y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvund") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khpvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lscyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx41a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bex87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq8hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h8yf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_upgradizon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_upgradizon.tres new file mode 100644 index 0000000..39ede11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_upgradizon.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://k2vtchsoo0bi"] + +[ext_resource type="Texture2D" uid="uid://b6iv00w3fbcr3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png" id="1_0wo84"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrcoq"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udqu7"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bab17"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5atqg"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lku4d"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6euix"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0hl4"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3ssy"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e17sn"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx0gy"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x753"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd0w4"] +atlas = ExtResource("1_0wo84") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j5bu"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrey4"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnquf"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyxtb"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ui4k"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5kbq"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85tdh"] +atlas = ExtResource("1_0wo84") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrop"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6bm5"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4net"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32ht4"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsvlj"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg4k6"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5ogp"] +atlas = ExtResource("1_0wo84") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78gh2"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n4yk"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4crv8"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ui2v"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bph3"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys58j"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7hi8"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkplw"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs7h7"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgye8"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gltfu"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp3wo"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hfwe"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vge37"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75guy"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwrr2"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du1y4"] +atlas = ExtResource("1_0wo84") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tipg"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcujb"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxo8r"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jns70"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04gvy"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2htvh"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fo8h"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxr3m"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw2rf"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmq5d"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niy2h"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ik52"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8a3l"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn2hk"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfl5f"] +atlas = ExtResource("1_0wo84") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1es6"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8crk7"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qej27"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23ha0"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajnb3"] +atlas = ExtResource("1_0wo84") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv8os"] +atlas = ExtResource("1_0wo84") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7q1h"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3t08"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33mya"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41552"] +atlas = ExtResource("1_0wo84") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewd54"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbv1t"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqufv"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1ijk"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdlr2"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu2cs"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d34b"] +atlas = ExtResource("1_0wo84") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7835"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awl5g"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q265b"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb5ah"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4ca7"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdat7"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2778d"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk803"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56jlk"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fopl1"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smgnw"] +atlas = ExtResource("1_0wo84") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrcoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udqu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bab17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5atqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lku4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6euix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0hl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3ssy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e17sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx0gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x753") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd0w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j5bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrey4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnquf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyxtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ui4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5kbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85tdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekrop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6bm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4net") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32ht4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsvlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg4k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5ogp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78gh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n4yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4crv8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ui2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bph3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys58j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7hi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkplw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs7h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgye8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gltfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hfwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vge37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75guy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwrr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du1y4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tipg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcujb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxo8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jns70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04gvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2htvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fo8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxr3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw2rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmq5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niy2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ik52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8a3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn2hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfl5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1es6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8crk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qej27") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23ha0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajnb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv8os") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7q1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3t08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33mya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41552") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewd54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbv1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqufv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1ijk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdlr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu2cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d34b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7835") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awl5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q265b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb5ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4ca7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdat7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2778d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk803") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56jlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fopl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smgnw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_valknu.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_valknu.tres new file mode 100644 index 0000000..c1e7fd4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_valknu.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://djsugrr0r5woi"] + +[ext_resource type="Texture2D" uid="uid://cxhewdi4aqs4t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png" id="1_yah8r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_omiis"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sttd0"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x186m"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twfvt"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfdck"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t5ne"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv5fa"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jukfh"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g6sk"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5mee"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fhwj"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mx87"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjn0u"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wi5v"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw8nf"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8i7o"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ps47"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrdlt"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojhf8"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehuhs"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nifv3"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrrt7"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkh68"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ytfo"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s70pb"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_823nw"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4icl"] +atlas = ExtResource("1_yah8r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqpce"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plwoc"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ry54"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8t41"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3k78"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rip0f"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3xrb"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1tmc"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3c3y"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jdri"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8sbu"] +atlas = ExtResource("1_yah8r") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsgp3"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8rir"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v64c"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3hli"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo4qp"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x73fr"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glhql"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7opiw"] +atlas = ExtResource("1_yah8r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb46t"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4dgo"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufpmv"] +atlas = ExtResource("1_yah8r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifqd1"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjwcu"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ll3"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42np5"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyjn1"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvysj"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye6co"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf8kx"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78kdu"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frqr4"] +atlas = ExtResource("1_yah8r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8klfh"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3m0d"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht2t5"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duqtp"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mshej"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rkvm"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i632n"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua480"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snym4"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkc8p"] +atlas = ExtResource("1_yah8r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_omiis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sttd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x186m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twfvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfdck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t5ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv5fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jukfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g6sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5mee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fhwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mx87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjn0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wi5v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw8nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8i7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ps47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrdlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojhf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehuhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nifv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrrt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkh68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ytfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s70pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_823nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4icl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqpce") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_plwoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ry54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8t41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3k78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rip0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3xrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1tmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3c3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jdri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8sbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsgp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8rir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v64c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3hli") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo4qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x73fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glhql") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7opiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb46t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4dgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufpmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifqd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjwcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ll3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42np5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyjn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvysj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye6co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf8kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78kdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frqr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8klfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3m0d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht2t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duqtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mshej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rkvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i632n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua480") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snym4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkc8p") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_vindicator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_vindicator.tres new file mode 100644 index 0000000..235e918 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_vindicator.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://bg5n7f8j7vred"] + +[ext_resource type="Texture2D" uid="uid://73qwh0o8t7re" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png" id="1_6lh2i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubp5q"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq6iu"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a71v1"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lh03"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vujrm"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aywf"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxh2i"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnmlo"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo1be"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_453do"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqsue"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuiv6"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipyw0"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0squ"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mea7"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4l4c"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6ml8"] +atlas = ExtResource("1_6lh2i") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1fbn"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt40g"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3635"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2jf3"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wil43"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhatq"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50km8"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20mkj"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrdwa"] +atlas = ExtResource("1_6lh2i") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7vhb"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdmqn"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhc6o"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so8iy"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np4ln"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr8pr"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kdo8"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah6tk"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8lxb"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxxav"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6dql"] +atlas = ExtResource("1_6lh2i") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udk14"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5a2n"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh71i"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jhwk"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jycrj"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhqe7"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s50kt"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4mkx"] +atlas = ExtResource("1_6lh2i") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo24o"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3eau"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmudi"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qip6t"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e363d"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nrhs"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn1bl"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnapm"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7gtp"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mm0r"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu6eb"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7dmf"] +atlas = ExtResource("1_6lh2i") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajffr"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcl3x"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk7j5"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2r4q"] +atlas = ExtResource("1_6lh2i") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lxrl"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sguom"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcn5v"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvoym"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1pbf"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cgjx"] +atlas = ExtResource("1_6lh2i") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3tky"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nafwu"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3dkj"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_586f4"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulhml"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gncun"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_def11"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdcsq"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0v3b"] +atlas = ExtResource("1_6lh2i") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kko3d"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5yqm"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yppuy"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm1ut"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0afnp"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6qnj"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfriw"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwv18"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uknp"] +atlas = ExtResource("1_6lh2i") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubp5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq6iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a71v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lh03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vujrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aywf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxh2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnmlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo1be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_453do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqsue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuiv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipyw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0squ") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mea7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4l4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6ml8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1fbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt40g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3635") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2jf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wil43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhatq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50km8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20mkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrdwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7vhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdmqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhc6o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so8iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np4ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr8pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kdo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah6tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8lxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxxav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6dql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udk14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5a2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh71i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jhwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jycrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhqe7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s50kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4mkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo24o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3eau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmudi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qip6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e363d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nrhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn1bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnapm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7gtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mm0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu6eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7dmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajffr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcl3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk7j5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2r4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lxrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sguom") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcn5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvoym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1pbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cgjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3tky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nafwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3dkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_586f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulhml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gncun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_def11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdcsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0v3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kko3d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5yqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yppuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm1ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0afnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6qnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfriw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwv18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uknp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_visionar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_visionar.tres new file mode 100644 index 0000000..0197f19 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_visionar.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://d3bj0e7y1bcam"] + +[ext_resource type="Texture2D" uid="uid://d0uaingjhnd6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png" id="1_hpjwm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_56tsm"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptjgm"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i1iq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scmdr"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2pbh"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff1hl"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ywm2"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhenn"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqg2y"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdobs"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gphpu"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4x6d"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0etn"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ys4h"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk65g"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyujo"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vydk6"] +atlas = ExtResource("1_hpjwm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcgk0"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8fij"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43hf0"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqg1e"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gno7u"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chji8"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uak8l"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etsq1"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lscm1"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xj7r"] +atlas = ExtResource("1_hpjwm") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h57u"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajlad"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rhon"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4k48"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aehiq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlrck"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4axd"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84v7b"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8mi8"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmyas"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j536g"] +atlas = ExtResource("1_hpjwm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1naio"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqbpu"] +atlas = ExtResource("1_hpjwm") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2obc"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp6jg"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o8xe"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qugl"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuciq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keh8e"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3w1c"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw72v"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmjef"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj22q"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeyhb"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lsal"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7w48"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhwjj"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8bgi"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m55p5"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhjtx"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcjjq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct2f5"] +atlas = ExtResource("1_hpjwm") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcfom"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njcf0"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5sk0"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ah5"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gotje"] +atlas = ExtResource("1_hpjwm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl38i"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4xfr"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdmgp"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpfki"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dspht"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i277y"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmmaq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvl53"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpe5h"] +atlas = ExtResource("1_hpjwm") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjfu6"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsg87"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kbby"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7me6"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea5dn"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnpax"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwrmo"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f7w8"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nodoq"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jev6e"] +atlas = ExtResource("1_hpjwm") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56tsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptjgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i1iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scmdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2pbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff1hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ywm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhenn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqg2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdobs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gphpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4x6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0etn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ys4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk65g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyujo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vydk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcgk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8fij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43hf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqg1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gno7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chji8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uak8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etsq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lscm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xj7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h57u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajlad") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rhon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4k48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aehiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlrck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4axd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84v7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8mi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmyas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j536g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1naio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqbpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2obc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp6jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o8xe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qugl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuciq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keh8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3w1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw72v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmjef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj22q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeyhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lsal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7w48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhwjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8bgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m55p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhjtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcjjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct2f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcfom") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_njcf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5sk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ah5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gotje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl38i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4xfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdmgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpfki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dspht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i277y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmmaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvl53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpe5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjfu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsg87") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kbby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7me6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea5dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnpax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwrmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f7w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nodoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jev6e") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_wildinceptor.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_wildinceptor.tres new file mode 100644 index 0000000..30f009c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f5_wildinceptor.tres @@ -0,0 +1,827 @@ +[gd_resource type="SpriteFrames" load_steps=115 format=3 uid="uid://bxj0tqq4i3hge"] + +[ext_resource type="Texture2D" uid="uid://b7rjqh1caw0tj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png" id="1_8k1u1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_swhai"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6hj4"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wukym"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcjxj"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5010h"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi6ts"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4scgv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7idv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etrik"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18coj"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c0t8"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7irlo"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vj3i"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijn7n"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so182"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5xyy"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0qad"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqpk6"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck4tp"] +atlas = ExtResource("1_8k1u1") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx8ap"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxqms"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utpsg"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p63ra"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8veyi"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3ds"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7khbf"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqljy"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ql4i"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1txam"] +atlas = ExtResource("1_8k1u1") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upi5d"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g42bt"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bmum"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feb8c"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onwvu"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nubgw"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmlfe"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n02rp"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_315ut"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xk32"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsdgn"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86usn"] +atlas = ExtResource("1_8k1u1") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxt7f"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxlh4"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18s7l"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmpbv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtjsu"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0r7p"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhp1e"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk06u"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpym5"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4sll"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34v6l"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61qj1"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oouf5"] +atlas = ExtResource("1_8k1u1") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l28l3"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87qxf"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apuwu"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lvrr"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy32s"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23snu"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6bk0"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghf1b"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heyfp"] +atlas = ExtResource("1_8k1u1") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkh0u"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx26r"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w6l6"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krk84"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87etr"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xdfv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hq56"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyr8f"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye5ti"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad550"] +atlas = ExtResource("1_8k1u1") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia55q"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kodxq"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s84g"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j3ab"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xbwb"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkula"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bhfa"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w6t8"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7k15"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xqr4"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac85p"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flxkw"] +atlas = ExtResource("1_8k1u1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sowni"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0sen"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js2so"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxxub"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7tm2"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj1sw"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nla2w"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plpn"] +atlas = ExtResource("1_8k1u1") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceq1d"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t45sv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn7e8"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybk3k"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhjw0"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwkxm"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi5cc"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtpyh"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y28jf"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7of3"] +atlas = ExtResource("1_8k1u1") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dffbu"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdrxv"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6o03"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lf5u"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkcss"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep1x7"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1l0m"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0npw"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq8p2"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbmor"] +atlas = ExtResource("1_8k1u1") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_swhai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6hj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wukym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcjxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5010h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi6ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4scgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7idv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etrik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18coj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c0t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7irlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vj3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijn7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so182") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5xyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0qad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqpk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck4tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx8ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxqms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utpsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p63ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8veyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7khbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqljy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ql4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1txam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upi5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g42bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bmum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feb8c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_onwvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nubgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmlfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n02rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_315ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xk32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsdgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86usn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxt7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxlh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18s7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmpbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtjsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0r7p") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhp1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk06u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpym5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4sll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34v6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61qj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oouf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l28l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87qxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apuwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lvrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy32s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23snu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6bk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghf1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heyfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkh0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx26r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w6l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krk84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87etr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xdfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hq56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyr8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye5ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad550") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia55q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kodxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s84g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j3ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xbwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkula") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bhfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w6t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7k15") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xqr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac85p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flxkw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sowni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0sen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js2so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxxub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7tm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj1sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nla2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceq1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t45sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn7e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybk3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhjw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwkxm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi5cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtpyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y28jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7of3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dffbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdrxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6o03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lf5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkcss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep1x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1l0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0npw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq8p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbmor") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_3rdgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_3rdgeneral.tres new file mode 100644 index 0000000..42130e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_3rdgeneral.tres @@ -0,0 +1,868 @@ +[gd_resource type="SpriteFrames" load_steps=118 format=3 uid="uid://sijdu055gylr"] + +[ext_resource type="Texture2D" uid="uid://btqt0my6646oi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png" id="1_834ds"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkpgf"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7gfw"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcle5"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f7vv"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4x3q"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkgd0"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t0x4"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skoe7"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt8g7"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1x3r"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8q4t"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlg0x"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vbav"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k36yd"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jolf7"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5wsc"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kryy8"] +atlas = ExtResource("1_834ds") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvmrx"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ounhw"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82376"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwth2"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7rxn"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yac1p"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c53lg"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uluvx"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7inf4"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qesj"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2dek"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlts5"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr72g"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46b2a"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hav1a"] +atlas = ExtResource("1_834ds") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e84cg"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l6lo"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iawai"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nk13"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_854tg"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gylbw"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3hwm"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7b6i"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tws7j"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfqxj"] +atlas = ExtResource("1_834ds") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqs47"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghfgg"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q2be"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x81n"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sbye"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvpp0"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j7ta"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s2jt"] +atlas = ExtResource("1_834ds") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xx5"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqbx7"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgxqf"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn37m"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_checw"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trfem"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0omml"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1l8j"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocays"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y5kq"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d55ro"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gtbv"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7x7c"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwdhx"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eikys"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp7t4"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv4lq"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iteec"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt67y"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj6yb"] +atlas = ExtResource("1_834ds") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0qns"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k7di"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ttff"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2nwd"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym52p"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17uin"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6rnl"] +atlas = ExtResource("1_834ds") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpga5"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s2t3"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5b1s"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvw7n"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5wau"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgwcw"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrrky"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2d3w"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hc2r"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq7fv"] +atlas = ExtResource("1_834ds") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3vu2"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x77nl"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf3lf"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgjny"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt48c"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kdr3"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5weuj"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18jfj"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fesuk"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esn2e"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad4k4"] +atlas = ExtResource("1_834ds") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f55g"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3l7c"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4qms"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt2al"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucr15"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dlq6"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faswt"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ha0"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwv44"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfm6a"] +atlas = ExtResource("1_834ds") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhjci"] +atlas = ExtResource("1_834ds") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fbga"] +atlas = ExtResource("1_834ds") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkk25"] +atlas = ExtResource("1_834ds") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxusi"] +atlas = ExtResource("1_834ds") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq6t1"] +atlas = ExtResource("1_834ds") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rn2m"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucmp1"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb3va"] +atlas = ExtResource("1_834ds") +region = Rect2(909, 707, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkpgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7gfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcle5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f7vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4x3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkgd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t0x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skoe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt8g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1x3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8q4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlg0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vbav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k36yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jolf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5wsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kryy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvmrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ounhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82376") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwth2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7rxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yac1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c53lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uluvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7inf4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qesj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2dek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlts5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr72g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46b2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hav1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e84cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l6lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iawai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nk13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_854tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gylbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3hwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7b6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tws7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfqxj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqs47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghfgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q2be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x81n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sbye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvpp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j7ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s2jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqbx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgxqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn37m") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_checw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trfem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0omml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1l8j") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocays") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y5kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d55ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gtbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7x7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwdhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eikys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp7t4") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv4lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iteec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt67y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj6yb") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0qns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k7di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ttff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2nwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym52p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17uin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6rnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpga5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s2t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5b1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvw7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5wau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgwcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrrky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2d3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hc2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq7fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3vu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x77nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf3lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgjny") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt48c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kdr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5weuj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_18jfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fesuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esn2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad4k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f55g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3l7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4qms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt2al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucr15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dlq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faswt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ha0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwv44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfm6a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhjci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fbga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxusi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq6t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rn2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucmp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb3va") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneral.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneral.tres new file mode 100644 index 0000000..aace559 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneral.tres @@ -0,0 +1,861 @@ +[gd_resource type="SpriteFrames" load_steps=117 format=3 uid="uid://dimqlgh5rwr0p"] + +[ext_resource type="Texture2D" uid="uid://btksomaipjrgr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png" id="1_3gpvj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b0on"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii0ry"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4nat"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r52i1"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnkc2"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sixn"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u318m"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gesfr"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74ogj"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp07i"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i82w8"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acnty"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayle1"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qia63"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs8an"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wse6f"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14bj5"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjd07"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bksxt"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgfca"] +atlas = ExtResource("1_3gpvj") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c46rf"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d70co"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlnq6"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy15t"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7c20"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms6xs"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8qm"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuk3k"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn5bx"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8cx0"] +atlas = ExtResource("1_3gpvj") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wttci"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1nx2"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1gau"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6hb6"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avjpx"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4uut"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0wav"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qijax"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m203e"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbfwh"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oygw"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py0kh"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jstp"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia1pb"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbkh7"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_halid"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulq2f"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h763u"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tliiv"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k32hu"] +atlas = ExtResource("1_3gpvj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3ja8"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bmdh"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a6xc"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hgpm"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7df5"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3154"] +atlas = ExtResource("1_3gpvj") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4jar"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vvta"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qim1"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hbpe"] +atlas = ExtResource("1_3gpvj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn7lc"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htlrc"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4sns"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o3bg"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebl0p"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snngf"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odb3b"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blno5"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crgoy"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et61q"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnsin"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqnfu"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_100bp"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kge1e"] +atlas = ExtResource("1_3gpvj") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igpyt"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmgwt"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xojeo"] +atlas = ExtResource("1_3gpvj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf4f5"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80tkj"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcw64"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3htto"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n6v5"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sena6"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma3yp"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mbju"] +atlas = ExtResource("1_3gpvj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvdxo"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf3ir"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u34t2"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc7po"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5frf1"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn20a"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejour"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmff6"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwunu"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrhhh"] +atlas = ExtResource("1_3gpvj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojjf1"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh7t4"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj5or"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llppd"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3ofn"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pim86"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_505io"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yunbn"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7eda"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyt8x"] +atlas = ExtResource("1_3gpvj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12uno"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57k7b"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lc2q"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waijl"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fev0"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvcbe"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecvtf"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t8hq"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvgiq"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f58fq"] +atlas = ExtResource("1_3gpvj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b0on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii0ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4nat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r52i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnkc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sixn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u318m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gesfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74ogj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp07i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i82w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acnty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayle1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qia63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs8an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wse6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14bj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjd07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bksxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgfca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c46rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d70co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlnq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy15t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7c20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms6xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuk3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn5bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8cx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wttci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1nx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1gau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6hb6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_avjpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4uut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0wav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qijax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m203e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbfwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oygw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py0kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jstp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia1pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbkh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_halid") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulq2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h763u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tliiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k32hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3ja8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bmdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a6xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hgpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7df5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3154") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4jar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vvta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qim1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hbpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn7lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htlrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4sns") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o3bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebl0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snngf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odb3b") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blno5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crgoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et61q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnsin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqnfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_100bp") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kge1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igpyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmgwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xojeo") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf4f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80tkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcw64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3htto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n6v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sena6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma3yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mbju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvdxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf3ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u34t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc7po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5frf1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn20a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejour") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmff6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwunu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrhhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojjf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh7t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj5or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llppd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3ofn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pim86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_505io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yunbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7eda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyt8x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_12uno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57k7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lc2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waijl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fev0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvcbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecvtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t8hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvgiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f58fq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneraltier2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneraltier2.tres new file mode 100644 index 0000000..b612b02 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_altgeneraltier2.tres @@ -0,0 +1,875 @@ +[gd_resource type="SpriteFrames" load_steps=119 format=3 uid="uid://cgiwwg4b5t7wn"] + +[ext_resource type="Texture2D" uid="uid://lxat5nj4s5gl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png" id="1_dbgca"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlwp7"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goypi"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2r8f"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsm60"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djp7n"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cdp1"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0pil"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewu4s"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3u7f"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyc74"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s355i"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5s7q"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhn3d"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hja54"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvqlw"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmy46"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgta8"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ufl4"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mpi8"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76jj7"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nh1d"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pffxs"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fiyf"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxef2"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nvg0"] +atlas = ExtResource("1_dbgca") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvir2"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jhi5"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxi53"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwrwr"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlcot"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpvn7"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajuxp"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekseo"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aw5e"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhcwv"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enhsa"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5lv4"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt3l4"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6dni"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxkaf"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igm2d"] +atlas = ExtResource("1_dbgca") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21i06"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5d22"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlate"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiobh"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gai5"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym4i3"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tcm6"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmw3p"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s18ph"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x25ru"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_325fi"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fun0n"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_petsw"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc7pc"] +atlas = ExtResource("1_dbgca") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it3vq"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me6yu"] +atlas = ExtResource("1_dbgca") +region = Rect2(987, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u71yo"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crnjc"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jqd6"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvwf7"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc1xo"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d2dj"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfx17"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1s2k"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hosn"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etp4p"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kavm"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3coy"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t38i0"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k2cx"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46rq3"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nuv5"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ddjc"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk3lb"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyedv"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvpve"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0y2x"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phpvv"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33fdb"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e51s8"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0mol"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2txvx"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai6pc"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d2jd"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqyjw"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nenmu"] +atlas = ExtResource("1_dbgca") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc3mq"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5tut"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucjl4"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy27n"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao71w"] +atlas = ExtResource("1_dbgca") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmbag"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjcc5"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn3rt"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6afe"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aqyj"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t68bm"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48he2"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quqgf"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekums"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oqb7"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_regyh"] +atlas = ExtResource("1_dbgca") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysd8h"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mygeg"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv2vb"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0dy7"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab4i3"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dihhj"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0g1q"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf7c0"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhv3y"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6gt4"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j4oc"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j862d"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5c88"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exnyq"] +atlas = ExtResource("1_dbgca") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlwp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goypi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2r8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsm60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djp7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cdp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0pil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewu4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3u7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyc74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s355i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5s7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhn3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hja54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvqlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmy46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgta8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ufl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mpi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76jj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nh1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pffxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fiyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxef2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nvg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvir2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jhi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxi53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwrwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlcot") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpvn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajuxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekseo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aw5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhcwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enhsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5lv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt3l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6dni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxkaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igm2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21i06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5d22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlate") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiobh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gai5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym4i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tcm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmw3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s18ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x25ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_325fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fun0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_petsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc7pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it3vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me6yu") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u71yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crnjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jqd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvwf7") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc1xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d2dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfx17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1s2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hosn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etp4p") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kavm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3coy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t38i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k2cx") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_46rq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nuv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ddjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk3lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyedv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvpve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0y2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phpvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33fdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e51s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0mol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2txvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai6pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d2jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqyjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nenmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc3mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5tut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucjl4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy27n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao71w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmbag") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjcc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn3rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6afe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aqyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t68bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48he2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quqgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekums") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oqb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_regyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysd8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mygeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv2vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0dy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab4i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dihhj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0g1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf7c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhv3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6gt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j4oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j862d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5c88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exnyq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_arcticrhyno.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_arcticrhyno.tres new file mode 100644 index 0000000..e2ea32f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_arcticrhyno.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://yd4qcdof0sek"] + +[ext_resource type="Texture2D" uid="uid://dib6o6v2j18hg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png" id="1_o57r2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a508"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoc3q"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf6j"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijr7i"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue1gp"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcrf1"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjtpa"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gedpb"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg5ql"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1cup"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbsiq"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yylo"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65iu4"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8jxs"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4xl6"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1q2a"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex4ey"] +atlas = ExtResource("1_o57r2") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yma11"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyru3"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e203l"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pfrm"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrjh7"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on77a"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twbhw"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmyrm"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq14b"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujxv3"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b32hn"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71c8n"] +atlas = ExtResource("1_o57r2") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sibts"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhk3h"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwech"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfjvl"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ow23"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e5a1"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e25a3"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dnqx"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgkpg"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d3l8"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53fsi"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n54we"] +atlas = ExtResource("1_o57r2") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c21b"] +atlas = ExtResource("1_o57r2") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dymq"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8l5m"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k72w7"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4682m"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qosg2"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2drm8"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5646"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nqq4"] +atlas = ExtResource("1_o57r2") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtd7d"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfcg0"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4h7f"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nea1i"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahaye"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qws7n"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eabr5"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu2sl"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6gqu"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxa6d"] +atlas = ExtResource("1_o57r2") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a508") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoc3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlf6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijr7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue1gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcrf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjtpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gedpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg5ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1cup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbsiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yylo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65iu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8jxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4xl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1q2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex4ey") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yma11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyru3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e203l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pfrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrjh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on77a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twbhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmyrm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq14b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujxv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b32hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71c8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sibts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhk3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwech") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfjvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ow23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e5a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e25a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dnqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgkpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d3l8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_53fsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n54we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c21b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dymq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8l5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k72w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4682m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qosg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2drm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5646") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nqq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtd7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfcg0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4h7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nea1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahaye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qws7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eabr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu2sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6gqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxa6d") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_auroraguardian.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_auroraguardian.tres new file mode 100644 index 0000000..02ba9f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_auroraguardian.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bagjfjn2yhkql"] + +[ext_resource type="Texture2D" uid="uid://cgikgmjp7asfd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png" id="1_ftblb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8aqs"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bscd2"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n5j7"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvyjq"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fx18"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u0xc"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vrto"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aquwv"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a40k1"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1snqt"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3mik"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu5rn"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbfx7"] +atlas = ExtResource("1_ftblb") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0lo5"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt4nd"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcia3"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_av4ty"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80v5x"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_murn1"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x73u8"] +atlas = ExtResource("1_ftblb") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu5nu"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eesx7"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7d8j"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e52t8"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2rcl"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xxcm"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyj62"] +atlas = ExtResource("1_ftblb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kisit"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60t4p"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1kd6"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2043"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0t7h"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpl4n"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbug3"] +atlas = ExtResource("1_ftblb") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8vpo"] +atlas = ExtResource("1_ftblb") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hacu"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_megii"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qclut"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekn7k"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqbin"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhvkr"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il8aq"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta7yp"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3whe"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo31d"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu5nk"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucndq"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7krx"] +atlas = ExtResource("1_ftblb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71t80"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skbc1"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1up0g"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7px65"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnrr6"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf2rm"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b81k"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu7t6"] +atlas = ExtResource("1_ftblb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xflpg"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebrv0"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g232n"] +atlas = ExtResource("1_ftblb") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh2t2"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0pcg"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5af2m"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2yi5"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orhd1"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bwm6"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08mid"] +atlas = ExtResource("1_ftblb") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqglw"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spjnb"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhq26"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p717w"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tjp8"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjn2n"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lojnq"] +atlas = ExtResource("1_ftblb") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8aqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bscd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n5j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvyjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fx18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u0xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vrto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aquwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a40k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1snqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3mik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu5rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbfx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0lo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt4nd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcia3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_av4ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80v5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_murn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x73u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu5nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eesx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7d8j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e52t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2rcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xxcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyj62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kisit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60t4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1kd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2043") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0t7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpl4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbug3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8vpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hacu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_megii") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qclut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekn7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqbin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhvkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il8aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta7yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3whe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo31d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu5nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucndq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7krx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71t80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skbc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1up0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7px65") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnrr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf2rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b81k") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu7t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xflpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebrv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g232n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh2t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0pcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5af2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2yi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orhd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bwm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08mid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqglw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spjnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhq26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p717w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tjp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjn2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lojnq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_blazingspines.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_blazingspines.tres new file mode 100644 index 0000000..eb5505e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_blazingspines.tres @@ -0,0 +1,472 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://ccb01llkdut71"] + +[ext_resource type="Texture2D" uid="uid://cg2eeqr1llhhk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png" id="1_27bpi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs541"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhv77"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65dtw"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8qek"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esn4x"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87xt3"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6m38"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s5xm"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4vji"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8r1d"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_betda"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxe3q"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hl03"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7t1d"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck1e2"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgilb"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x42q"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eqyt"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kesbh"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilpi7"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_734sh"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs5d2"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu6in"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjmgj"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3fhv"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skivd"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixplg"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvere"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y5ip"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jshqk"] +atlas = ExtResource("1_27bpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uajss"] +atlas = ExtResource("1_27bpi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ldu"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3hkj"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loq28"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_386ek"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01co3"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1utc"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o35xw"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d3wp"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0l7c"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sh1u"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os8bo"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o5kq"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lb8g"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a647q"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6jdb"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocnmp"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfowp"] +atlas = ExtResource("1_27bpi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msokb"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyfyl"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyves"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blu5r"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe86h"] +atlas = ExtResource("1_27bpi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68d82"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koav4"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syecr"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu0ex"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uylh3"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phyx4"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83cf7"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_easyk"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53462"] +atlas = ExtResource("1_27bpi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrr48"] +atlas = ExtResource("1_27bpi") +region = Rect2(0, 202, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs541") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhv77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65dtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8qek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esn4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87xt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6m38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s5xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4vji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8r1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_betda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxe3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hl03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7t1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck1e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgilb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x42q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eqyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kesbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilpi7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_734sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs5d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu6in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjmgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3fhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skivd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixplg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvere") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y5ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jshqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uajss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ldu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3hkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loq28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_386ek") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01co3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1utc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o35xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d3wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0l7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sh1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os8bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o5kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lb8g") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a647q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6jdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocnmp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfowp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msokb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyfyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyves") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blu5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe86h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68d82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koav4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syecr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu0ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uylh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phyx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83cf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_easyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53462") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrr48") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bloodsurge.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bloodsurge.tres new file mode 100644 index 0000000..9970c34 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bloodsurge.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://da16ltxix58uq"] + +[ext_resource type="Texture2D" uid="uid://cl8gngtixeybw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png" id="1_ifjmd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg73n"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xjmt"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivfyg"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgo83"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wml81"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3b4n"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvhx3"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lto6c"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q17d"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc0o1"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mkf1"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obh0q"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig23p"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imupf"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey77n"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg4b3"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh04a"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_regm8"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggpls"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33i2o"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aequq"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsraa"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ftcn"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glnov"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8vp5"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b05g7"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8xst"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybllo"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ban4m"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8vev"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym8sg"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fouro"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlvii"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obmsy"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj3rf"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8tux"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kogr5"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tax44"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdm7i"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d86b"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lvo7"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vcy7"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5tdt"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bfu3"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpiqi"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xerai"] +atlas = ExtResource("1_ifjmd") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecday"] +atlas = ExtResource("1_ifjmd") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcg57"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3nwt"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4711"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isgy4"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gsrj"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n1yf"] +atlas = ExtResource("1_ifjmd") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt2se"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0isi"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n8tj"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58gxt"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0eba"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia2ts"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5yow"] +atlas = ExtResource("1_ifjmd") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku4dn"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukpcl"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewwc4"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijg6a"] +atlas = ExtResource("1_ifjmd") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnd6i"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ufv"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n010g"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8ygy"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vakd"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b3vi"] +atlas = ExtResource("1_ifjmd") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrmae"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oohw1"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkkh1"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r8jy"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks1o2"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_215eq"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60h1j"] +atlas = ExtResource("1_ifjmd") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mh5n"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v4bk"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxips"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owct6"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niyjj"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhh1b"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63m33"] +atlas = ExtResource("1_ifjmd") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmdj6"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq2ca"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4gsu"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spt1y"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14yd0"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrx86"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nadot"] +atlas = ExtResource("1_ifjmd") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg73n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xjmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivfyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgo83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wml81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3b4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvhx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lto6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q17d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc0o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mkf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obh0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig23p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imupf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey77n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg4b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh04a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_regm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggpls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33i2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aequq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsraa") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ftcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glnov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8vp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b05g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8xst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybllo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ban4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8vev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym8sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fouro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlvii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obmsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj3rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8tux") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kogr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tax44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdm7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d86b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lvo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vcy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5tdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bfu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpiqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xerai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecday") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcg57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3nwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4711") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isgy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gsrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n1yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt2se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0isi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n8tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58gxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0eba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia2ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5yow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku4dn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukpcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewwc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijg6a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnd6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ufv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n010g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8ygy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vakd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b3vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrmae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oohw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkkh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r8jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks1o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_215eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60h1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mh5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v4bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxips") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owct6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niyjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhh1b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_63m33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmdj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq2ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4gsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spt1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14yd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrx86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nadot") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bonechillbarrier.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bonechillbarrier.tres new file mode 100644 index 0000000..7fc00de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bonechillbarrier.tres @@ -0,0 +1,339 @@ +[gd_resource type="SpriteFrames" load_steps=46 format=3 uid="uid://nsj0ktssh667"] + +[ext_resource type="Texture2D" uid="uid://d1q1nml5n8ush" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png" id="1_vea37"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q8ja"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ut5"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw64d"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf8ck"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toeyb"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg1o1"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ofoo"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwbwy"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5nhq"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62tkh"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq7k5"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kohvn"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xawg0"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lq06"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjsdo"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr1my"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb4ft"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qjxj"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5bds"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itcw3"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slyqt"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_estkp"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2spu"] +atlas = ExtResource("1_vea37") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hscg1"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50fb4"] +atlas = ExtResource("1_vea37") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_247i3"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60o6k"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy3we"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twjcy"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbb53"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvanw"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsb4v"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5tu2"] +atlas = ExtResource("1_vea37") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ltct"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2tax"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf5w2"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_808dv"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi1g3"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5y31"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_417ff"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o5tp"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2h1e"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2w04"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uds3q"] +atlas = ExtResource("1_vea37") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q8ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ut5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw64d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf8ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toeyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg1o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ofoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwbwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5nhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62tkh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq7k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kohvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xawg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lq06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjsdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr1my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb4ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qjxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5bds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itcw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slyqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_estkp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2spu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hscg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50fb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_247i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60o6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy3we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twjcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbb53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvanw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsb4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5tu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ltct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2tax") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf5w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_808dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi1g3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5y31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_417ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o5tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2h1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2w04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uds3q") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildcommon.tres new file mode 100644 index 0000000..34eb1a9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildcommon.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://cujef5a7alc45"] + +[ext_resource type="Texture2D" uid="uid://bd1xlata5nwei" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png" id="1_1auf1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tii0x"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr5kn"] +atlas = ExtResource("1_1auf1") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4ikm"] +atlas = ExtResource("1_1auf1") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euiy2"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5ki"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4hv4"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chehx"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5waay"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2gj5"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h3n2"] +atlas = ExtResource("1_1auf1") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b15mp"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56xpm"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3wlu"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yvko"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03xme"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ta73x"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qymsv"] +atlas = ExtResource("1_1auf1") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evylw"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4h2o"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqfsm"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1ux"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpwaa"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8bsw"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeigj"] +atlas = ExtResource("1_1auf1") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iphj0"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32htw"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8puy1"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgrsq"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkclt"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkcsh"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npgmx"] +atlas = ExtResource("1_1auf1") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5flx"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjjuf"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4bno"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnjvl"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5llow"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gegb"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwaa2"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbh8p"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl550"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgvdc"] +atlas = ExtResource("1_1auf1") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd6bk"] +atlas = ExtResource("1_1auf1") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynx6n"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76jgg"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr4ni"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3jek"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4uiy"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1fot"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwey2"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a1xo"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcuwt"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jwjg"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah5xj"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu6dw"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo23t"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40ul2"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq7ry"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak1ac"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awgao"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0qe2"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whd33"] +atlas = ExtResource("1_1auf1") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neyct"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijrvw"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m5fa"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o26op"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx438"] +atlas = ExtResource("1_1auf1") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tco1k"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvexb"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk43q"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj7lw"] +atlas = ExtResource("1_1auf1") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su6pu"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rwhp"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi8xa"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l5ic"] +atlas = ExtResource("1_1auf1") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg66w"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmrnk"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwti2"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il1v4"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjm3r"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjr21"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg80g"] +atlas = ExtResource("1_1auf1") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2f0"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ltal"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sska"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xacl2"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxrwq"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kyd3"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaot1"] +atlas = ExtResource("1_1auf1") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tii0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr5kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4ikm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euiy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4hv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chehx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5waay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2gj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h3n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b15mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56xpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3wlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yvko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03xme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ta73x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qymsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evylw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4h2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqfsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpwaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8bsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeigj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iphj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32htw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8puy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgrsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkclt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkcsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npgmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5flx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjjuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4bno") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnjvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5llow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gegb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwaa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbh8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl550") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgvdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd6bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynx6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76jgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr4ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3jek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4uiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1fot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwey2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a1xo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcuwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jwjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah5xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu6dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo23t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40ul2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq7ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak1ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awgao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0qe2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whd33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neyct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijrvw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m5fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o26op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx438") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tco1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvexb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk43q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj7lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su6pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rwhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi8xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l5ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg66w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmrnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwti2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il1v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjm3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjr21") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg80g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ltal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sska") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xacl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxrwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kyd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaot1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildlegendary.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildlegendary.tres new file mode 100644 index 0000000..5c36e39 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildlegendary.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://c4yrh6n46lgxl"] + +[ext_resource type="Texture2D" uid="uid://cajgkq5k1dl0b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png" id="1_5bp6i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1am7"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62pwx"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih4xj"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e41f"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpx3o"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtlol"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dande"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv3s0"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqf2s"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2q38"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mwlg"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaktj"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urcon"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3670"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jaqs"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wse8j"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pblb"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1pxg"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nylb"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7q5g"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ird"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipblp"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0l3j"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b77w7"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w81g"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkrhq"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b2oq"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_napvi"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpf2x"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q06b"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrwiw"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou4jl"] +atlas = ExtResource("1_5bp6i") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehv7l"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kytb7"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i0k8"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp4ic"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4s6y"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0f5m"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih8us"] +atlas = ExtResource("1_5bp6i") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln8bv"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67t5l"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ybg"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlhs1"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulngx"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g4bo"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2ls5"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45pdq"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7cyy"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mh5r"] +atlas = ExtResource("1_5bp6i") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbx8f"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgokh"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6un2b"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4eyv"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flvj4"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g02f"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucw28"] +atlas = ExtResource("1_5bp6i") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exgav"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxmjh"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0h1u"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvmec"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbgln"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n2un"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stbhv"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cob28"] +atlas = ExtResource("1_5bp6i") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01y73"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi6ca"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sbxc"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bf7l"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r65am"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bce1"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1faj"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igajo"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikotm"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxiwr"] +atlas = ExtResource("1_5bp6i") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4g14"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26d5h"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4v0y"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qxo6"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngxt6"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgaoc"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjwj5"] +atlas = ExtResource("1_5bp6i") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er7j5"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6m50"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqpko"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls2mb"] +atlas = ExtResource("1_5bp6i") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yopu"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgro1"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bai7s"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jb3g"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfqb"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6ek0"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsoyx"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esrqf"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ksq5"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ej3l"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqwka"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skwje"] +atlas = ExtResource("1_5bp6i") +region = Rect2(1048, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1am7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62pwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih4xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e41f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpx3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtlol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dande") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv3s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqf2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2q38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mwlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaktj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urcon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3670") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jaqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wse8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pblb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1pxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nylb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7q5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ird") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipblp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0l3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b77w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w81g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkrhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b2oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_napvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpf2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q06b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrwiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou4jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehv7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kytb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i0k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp4ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4s6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0f5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih8us") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln8bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67t5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ybg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlhs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulngx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g4bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2ls5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45pdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7cyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mh5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbx8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgokh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6un2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4eyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flvj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g02f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucw28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exgav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxmjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0h1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvmec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbgln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n2un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stbhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cob28") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01y73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi6ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sbxc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bf7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r65am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bce1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1faj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igajo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikotm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxiwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4g14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26d5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4v0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qxo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngxt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgaoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjwj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er7j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6m50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqpko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls2mb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yopu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgro1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bai7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jb3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgfqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6ek0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsoyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esrqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ksq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ej3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqwka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skwje") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildminion.tres new file mode 100644 index 0000000..c53b755 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://3voi4si8yycx"] + +[ext_resource type="Texture2D" uid="uid://bqu8xhsgquycy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png" id="1_ms7ji"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqq4x"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wdkx"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej81r"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biwu5"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_corgt"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cxpj"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhi1v"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx2f8"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyjf4"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x7go"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1dq1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq0er"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl2ds"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmvpa"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gomt"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjvxj"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgcks"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtp3b"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8f1i"] +atlas = ExtResource("1_ms7ji") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nacv1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqdgi"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyxl5"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqnm1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvkj1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6orl8"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yva6g"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htrmk"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ix6e"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvymc"] +atlas = ExtResource("1_ms7ji") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3uqq"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo1l7"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjcxn"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l48fg"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ffn"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f6m1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkb6h"] +atlas = ExtResource("1_ms7ji") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvjtm"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk7lm"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eipv6"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i70bt"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik62v"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsgya"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1c4l"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3xx0"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rury"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0br6b"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg4ny"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgxb2"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mikah"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t03if"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eglho"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny1rg"] +atlas = ExtResource("1_ms7ji") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm3hp"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5nyj"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcaep"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ige3"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dyoe"] +atlas = ExtResource("1_ms7ji") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trsrf"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fk35"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anrq4"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo0wr"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k1rl"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvrb1"] +atlas = ExtResource("1_ms7ji") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51dqs"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1qsf"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uvlh"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5bks"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhjv5"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84jm4"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tpha"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kcln"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng7lg"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc77p"] +atlas = ExtResource("1_ms7ji") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqq4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wdkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej81r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biwu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_corgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cxpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhi1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx2f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyjf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x7go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1dq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq0er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl2ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmvpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gomt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjvxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgcks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtp3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8f1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nacv1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqdgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyxl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqnm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvkj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6orl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yva6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htrmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ix6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvymc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3uqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo1l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjcxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l48fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ffn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f6m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkb6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvjtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk7lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eipv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i70bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik62v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsgya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1c4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3xx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rury") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0br6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg4ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgxb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mikah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t03if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eglho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny1rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm3hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5nyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcaep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ige3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dyoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trsrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fk35") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_anrq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo0wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k1rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvrb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51dqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1qsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uvlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5bks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhjv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84jm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tpha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kcln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng7lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc77p") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bur.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bur.tres new file mode 100644 index 0000000..67c470d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_bur.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://c73aag2l1fees"] + +[ext_resource type="Texture2D" uid="uid://ckisc46eo1eiu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png" id="1_ekx8a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3u0s"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_artx5"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6foha"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuotu"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syvcm"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ultla"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxt0f"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7skpv"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayhv0"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i1tb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flnx2"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sorwi"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7d0n"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r24fa"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jwn5"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxj5t"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxfp4"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwb18"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwowt"] +atlas = ExtResource("1_ekx8a") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ofap"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqyej"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktdoh"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6wmm"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swqhe"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2eqt"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkaem"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5bmo"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3j8m"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji65b"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr4fu"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsbmb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aaby"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub7b0"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok13m"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pyfp"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fshla"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p32dd"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaitv"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnwc5"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gocv"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stwor"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y7rq"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crtet"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6blgh"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vumg"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uodb0"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojluc"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph2b4"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1jdt"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n87vi"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ae5e"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc2nq"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1j6n"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_virbb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_223s7"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqi4n"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07cu5"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr3qp"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dacaf"] +atlas = ExtResource("1_ekx8a") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nlgg"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kacdj"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wievu"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhkav"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhajs"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34xac"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si7wn"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw7wj"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o43k8"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py7yr"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfc88"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucqkb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ho71"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5otui"] +atlas = ExtResource("1_ekx8a") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj5wb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmngu"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4scco"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykcn5"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yi85"] +atlas = ExtResource("1_ekx8a") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xr6o"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdxtb"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpmtg"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmq7l"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osbbo"] +atlas = ExtResource("1_ekx8a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11jjr"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpvee"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uibch"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mcxh"] +atlas = ExtResource("1_ekx8a") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3u0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_artx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6foha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuotu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syvcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ultla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxt0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7skpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayhv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i1tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flnx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sorwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7d0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r24fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jwn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxj5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxfp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwb18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwowt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ofap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqyej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktdoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6wmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swqhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2eqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkaem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5bmo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3j8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji65b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr4fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsbmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aaby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub7b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok13m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pyfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fshla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p32dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaitv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnwc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gocv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stwor") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y7rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crtet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6blgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vumg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uodb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojluc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph2b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1jdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n87vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ae5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc2nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1j6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_virbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_223s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqi4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07cu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr3qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dacaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nlgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kacdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wievu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhkav") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhajs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34xac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si7wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw7wj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o43k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py7yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfc88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucqkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ho71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5otui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj5wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmngu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4scco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykcn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yi85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xr6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdxtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpmtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmq7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osbbo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_11jjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpvee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uibch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mcxh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_circulus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_circulus.tres new file mode 100644 index 0000000..49a4b52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_circulus.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://tk0j84oirjnt"] + +[ext_resource type="Texture2D" uid="uid://bwfjq8qqxjtf6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png" id="1_cdpus"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j2by"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nruco"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sux8"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3nnb"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s1ki"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfmn6"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v81jw"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gcx8"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq0rx"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7eyu"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klig6"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl1nw"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1vl6"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbg1f"] +atlas = ExtResource("1_cdpus") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrrys"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0aay"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhnef"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1m2g"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52iup"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1djkm"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1anxe"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kkco"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hawj6"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck1sk"] +atlas = ExtResource("1_cdpus") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tehr7"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqmmk"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8iqu8"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvvuy"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mgio"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4k4o"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p538f"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpdhv"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sh5s"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdnce"] +atlas = ExtResource("1_cdpus") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xcvc"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gvyg"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4f0o"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eecy7"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwgr8"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvvj8"] +atlas = ExtResource("1_cdpus") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn3qd"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v2go"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qd1i"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gu44"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r680c"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfk7y"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okxdp"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3qtu"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pafw"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu1s2"] +atlas = ExtResource("1_cdpus") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnjpu"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wx42"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blvdr"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vqgl"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am3cd"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0krvn"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0mbc"] +atlas = ExtResource("1_cdpus") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miyoc"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhj8g"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ccs"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf2hq"] +atlas = ExtResource("1_cdpus") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waj0x"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptvp0"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqlcm"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxtu3"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrjwm"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f1on"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7vn4"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwfd7"] +atlas = ExtResource("1_cdpus") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ost"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kvfo"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dqxi"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxlg3"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o0iq"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y51fn"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wvpx"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn1dt"] +atlas = ExtResource("1_cdpus") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j2by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nruco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sux8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3nnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s1ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfmn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v81jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gcx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq0rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7eyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klig6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl1nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1vl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbg1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrrys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0aay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhnef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1m2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52iup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1djkm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1anxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kkco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hawj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck1sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tehr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqmmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8iqu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvvuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mgio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4k4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p538f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpdhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sh5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdnce") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xcvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gvyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4f0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eecy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwgr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvvj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn3qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v2go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qd1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gu44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r680c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfk7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okxdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3qtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pafw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu1s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnjpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wx42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blvdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vqgl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_am3cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0krvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0mbc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_miyoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhj8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ccs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf2hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waj0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptvp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqlcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxtu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrjwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f1on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7vn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwfd7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ost") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kvfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dqxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxlg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o0iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y51fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wvpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn1dt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_crystalbeetle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_crystalbeetle.tres new file mode 100644 index 0000000..24c9b0e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_crystalbeetle.tres @@ -0,0 +1,708 @@ +[gd_resource type="SpriteFrames" load_steps=98 format=3 uid="uid://cecvyiynpp58y"] + +[ext_resource type="Texture2D" uid="uid://dq4ytsfycjct2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png" id="1_v1nob"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqs0d"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57bgy"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f67s1"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0438h"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idt0x"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd5lj"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0h81"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b1xp"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24nb2"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ghci"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yicwf"] +atlas = ExtResource("1_v1nob") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw01m"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nap5s"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yu7q"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwi1b"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp6tx"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik3kd"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p1ku"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m5mi"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_726xv"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbcjs"] +atlas = ExtResource("1_v1nob") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bipi"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aflni"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fifqj"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp383"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6r7c"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4bq4"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yecoj"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqe31"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2801n"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrtdh"] +atlas = ExtResource("1_v1nob") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyctl"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eidau"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6am2"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnkea"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3m8u"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg5a1"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfxsj"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca0un"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvc8w"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k77ma"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q14xj"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it716"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h84l1"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmheb"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icxgi"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okbjb"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x00hd"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esm3s"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt4j3"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epmt6"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvby2"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0xbr"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7vkg"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os1wk"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3gxd"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awd32"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xveq4"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bbgg"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbr02"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rumib"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd33m"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8wuq"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44l5u"] +atlas = ExtResource("1_v1nob") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq12j"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6pxr"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3c7g"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4udr"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_henxa"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie2nq"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkbqw"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckmou"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wugll"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k08uy"] +atlas = ExtResource("1_v1nob") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvn8i"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueews"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgi8r"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axxvs"] +atlas = ExtResource("1_v1nob") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxemd"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do750"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nep8p"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so7d8"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wt7w"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20v1e"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53hna"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vegq"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alcxg"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gv8j"] +atlas = ExtResource("1_v1nob") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5th8h"] +atlas = ExtResource("1_v1nob") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu2dj"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54xmv"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl5ey"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bl2a"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmcsc"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahavh"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccp20"] +atlas = ExtResource("1_v1nob") +region = Rect2(808, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqs0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57bgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f67s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0438h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idt0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd5lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0h81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b1xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24nb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ghci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yicwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw01m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nap5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yu7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwi1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp6tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik3kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p1ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m5mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_726xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbcjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bipi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aflni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fifqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp383") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6r7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4bq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yecoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqe31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2801n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrtdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyctl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eidau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6am2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnkea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3m8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg5a1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfxsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca0un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvc8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k77ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q14xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it716") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h84l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmheb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icxgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okbjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x00hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esm3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt4j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epmt6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvby2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0xbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7vkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os1wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3gxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awd32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xveq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bbgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbr02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rumib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd33m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8wuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44l5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq12j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6pxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3c7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4udr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_henxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie2nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkbqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckmou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wugll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k08uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvn8i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueews") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgi8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axxvs") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxemd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do750") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nep8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so7d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wt7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20v1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53hna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vegq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alcxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gv8j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5th8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu2dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54xmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl5ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bl2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmcsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahavh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccp20") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_doofybear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_doofybear.tres new file mode 100644 index 0000000..3693498 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_doofybear.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://goybk7j3i6t7"] + +[ext_resource type="Texture2D" uid="uid://b5xm75a0q6rne" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png" id="1_482go"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjj27"] +atlas = ExtResource("1_482go") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm7mc"] +atlas = ExtResource("1_482go") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cljmw"] +atlas = ExtResource("1_482go") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgabf"] +atlas = ExtResource("1_482go") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_527me"] +atlas = ExtResource("1_482go") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x71ul"] +atlas = ExtResource("1_482go") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mih8r"] +atlas = ExtResource("1_482go") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drcx4"] +atlas = ExtResource("1_482go") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qtgc"] +atlas = ExtResource("1_482go") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8jed"] +atlas = ExtResource("1_482go") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4ahr"] +atlas = ExtResource("1_482go") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e2a5"] +atlas = ExtResource("1_482go") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywun4"] +atlas = ExtResource("1_482go") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ixf"] +atlas = ExtResource("1_482go") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdx0x"] +atlas = ExtResource("1_482go") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qfqj"] +atlas = ExtResource("1_482go") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqi7t"] +atlas = ExtResource("1_482go") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rus1m"] +atlas = ExtResource("1_482go") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nplsf"] +atlas = ExtResource("1_482go") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf0hx"] +atlas = ExtResource("1_482go") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn3to"] +atlas = ExtResource("1_482go") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5mw5"] +atlas = ExtResource("1_482go") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3ltb"] +atlas = ExtResource("1_482go") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fajwd"] +atlas = ExtResource("1_482go") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0e6b"] +atlas = ExtResource("1_482go") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvise"] +atlas = ExtResource("1_482go") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sbcw"] +atlas = ExtResource("1_482go") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cr0i"] +atlas = ExtResource("1_482go") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85s1a"] +atlas = ExtResource("1_482go") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc8m1"] +atlas = ExtResource("1_482go") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wea0p"] +atlas = ExtResource("1_482go") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opdjl"] +atlas = ExtResource("1_482go") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgah5"] +atlas = ExtResource("1_482go") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmyfg"] +atlas = ExtResource("1_482go") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2qwu"] +atlas = ExtResource("1_482go") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4nkc"] +atlas = ExtResource("1_482go") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uusy1"] +atlas = ExtResource("1_482go") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3hvm"] +atlas = ExtResource("1_482go") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq1n2"] +atlas = ExtResource("1_482go") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt67v"] +atlas = ExtResource("1_482go") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nksf"] +atlas = ExtResource("1_482go") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un3w1"] +atlas = ExtResource("1_482go") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5shk4"] +atlas = ExtResource("1_482go") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6dqo"] +atlas = ExtResource("1_482go") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcot2"] +atlas = ExtResource("1_482go") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0a2e"] +atlas = ExtResource("1_482go") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0gsb"] +atlas = ExtResource("1_482go") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b20w"] +atlas = ExtResource("1_482go") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7ni4"] +atlas = ExtResource("1_482go") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npyar"] +atlas = ExtResource("1_482go") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4o4o"] +atlas = ExtResource("1_482go") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8m8e"] +atlas = ExtResource("1_482go") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3xgq"] +atlas = ExtResource("1_482go") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g03l"] +atlas = ExtResource("1_482go") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t41g3"] +atlas = ExtResource("1_482go") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov011"] +atlas = ExtResource("1_482go") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wccr1"] +atlas = ExtResource("1_482go") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4seah"] +atlas = ExtResource("1_482go") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdfc0"] +atlas = ExtResource("1_482go") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg0ie"] +atlas = ExtResource("1_482go") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbc2y"] +atlas = ExtResource("1_482go") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyw7o"] +atlas = ExtResource("1_482go") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxts3"] +atlas = ExtResource("1_482go") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvq71"] +atlas = ExtResource("1_482go") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0hyy"] +atlas = ExtResource("1_482go") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ll0"] +atlas = ExtResource("1_482go") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqnra"] +atlas = ExtResource("1_482go") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt73c"] +atlas = ExtResource("1_482go") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2r1x"] +atlas = ExtResource("1_482go") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mpql"] +atlas = ExtResource("1_482go") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjj27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm7mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cljmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgabf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_527me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x71ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mih8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drcx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qtgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8jed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4ahr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e2a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywun4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ixf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdx0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qfqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqi7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rus1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nplsf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf0hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn3to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5mw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3ltb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fajwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0e6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvise") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sbcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cr0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85s1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc8m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wea0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opdjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgah5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmyfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2qwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4nkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uusy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3hvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq1n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt67v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nksf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un3w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5shk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6dqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcot2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0a2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0gsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b20w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7ni4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npyar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4o4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8m8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3xgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g03l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t41g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov011") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wccr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4seah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdfc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg0ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbc2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyw7o") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxts3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvq71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0hyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ll0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqnra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt73c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2r1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mpql") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_draugarlord.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_draugarlord.tres new file mode 100644 index 0000000..6abb51b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_draugarlord.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://bwd8a0yy27456"] + +[ext_resource type="Texture2D" uid="uid://cxretdjnc73cn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png" id="1_xw1a8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3fjb"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdof8"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsr31"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qparf"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh07n"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcpkq"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crmun"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fxvx"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ktdi"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx3sx"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg4l1"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmroa"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dggq4"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30bij"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5x8"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_com05"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc0q2"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrdgh"] +atlas = ExtResource("1_xw1a8") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clnhu"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewhlf"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hrp2"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5harh"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or81s"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l2rq"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1cdr"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnppj"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjooc"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrgeh"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh61s"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uglrv"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccbxm"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5vam"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l7a7"] +atlas = ExtResource("1_xw1a8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uds56"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2axmb"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jle7i"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1p78"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frf6k"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuics"] +atlas = ExtResource("1_xw1a8") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqthe"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymhfa"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjkst"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s88wx"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlxd0"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngvil"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jbxi"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpts7"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gic2i"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmpkf"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wub87"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht5lk"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu5ya"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epxwq"] +atlas = ExtResource("1_xw1a8") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_750g7"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a881j"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2m40"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svr23"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex877"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78bmo"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oewk5"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyyr1"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5h3w"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymwfe"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqgts"] +atlas = ExtResource("1_xw1a8") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr6uo"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n54l2"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noq67"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tui35"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rth60"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7jd7"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5247"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxp5h"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0dpa"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4viga"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egwfs"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eem4"] +atlas = ExtResource("1_xw1a8") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3fjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdof8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsr31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qparf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh07n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcpkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crmun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fxvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ktdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx3sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg4l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmroa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dggq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30bij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_com05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc0q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrdgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clnhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewhlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hrp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5harh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or81s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l2rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1cdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnppj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjooc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrgeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh61s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uglrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccbxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5vam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l7a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uds56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2axmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jle7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1p78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frf6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuics") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqthe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymhfa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjkst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s88wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlxd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngvil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jbxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpts7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gic2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmpkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wub87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht5lk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu5ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epxwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_750g7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a881j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2m40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svr23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex877") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78bmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oewk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyyr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5h3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymwfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqgts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr6uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n54l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noq67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tui35") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rth60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7jd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5247") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxp5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0dpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4viga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egwfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eem4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_eldersaberspine.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_eldersaberspine.tres new file mode 100644 index 0000000..e703949 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_eldersaberspine.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://btek6a6050ft4"] + +[ext_resource type="Texture2D" uid="uid://crh5ie0y27j8b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png" id="1_h1ofh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gagq2"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onjcc"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j231h"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyy46"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78ff7"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj62u"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6hh8"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibg7e"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auroq"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckwcs"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m4pr"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckpyi"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86lac"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwrig"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj242"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwe7i"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr0kv"] +atlas = ExtResource("1_h1ofh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0pjy"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf3oc"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfne0"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhde8"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e78g2"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kewub"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67l1b"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq5mr"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3vvg"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o7ta"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daabr"] +atlas = ExtResource("1_h1ofh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odgfb"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udhh1"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtdnp"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1etn"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjbyw"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dejf"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eesaf"] +atlas = ExtResource("1_h1ofh") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_550n4"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aujxn"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jl74"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia688"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_818x5"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngkb5"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmhq"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06a2i"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptqfs"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npebn"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74l0x"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw7b0"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcym3"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h3ks"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opxig"] +atlas = ExtResource("1_h1ofh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oxtn"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wab50"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qs4t"] +atlas = ExtResource("1_h1ofh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loe32"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qbi7"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo5ng"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyemq"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sbis"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uji2p"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klkux"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgkmc"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57fv4"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8anl"] +atlas = ExtResource("1_h1ofh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrrdp"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojifa"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s38k"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwqcg"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2le2a"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21tmi"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhca4"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xlnx"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq5wp"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn72a"] +atlas = ExtResource("1_h1ofh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gagq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onjcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j231h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyy46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78ff7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj62u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6hh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibg7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auroq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckwcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m4pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckpyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86lac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwrig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj242") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwe7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr0kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0pjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf3oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfne0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhde8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e78g2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kewub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67l1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq5mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3vvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o7ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daabr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odgfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udhh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtdnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1etn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjbyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dejf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eesaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_550n4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aujxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jl74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia688") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_818x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngkb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06a2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptqfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npebn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74l0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw7b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcym3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h3ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opxig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oxtn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wab50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qs4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loe32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qbi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo5ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyemq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sbis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uji2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klkux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgkmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57fv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8anl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrrdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojifa") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s38k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwqcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2le2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21tmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhca4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xlnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq5wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn72a") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_elklodon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_elklodon.tres new file mode 100644 index 0000000..6b6b8a6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_elklodon.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://s23s5qkm2nc7"] + +[ext_resource type="Texture2D" uid="uid://d3mdds5tw3nuk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png" id="1_4vqb5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhfqk"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnfyl"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wwxf"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wawue"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge7dt"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yf74"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfbvv"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqbl8"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avcxm"] +atlas = ExtResource("1_4vqb5") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdnlw"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpeu2"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m57d7"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhy16"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wka5o"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylmdo"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s60ir"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne784"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn172"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0va0f"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80slg"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4su0n"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luc5q"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bpnl"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp5my"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rem1u"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7kqh"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x0oq"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2up0"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1nul"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6lav"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j5p6"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xg47"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ywa"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urc8k"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw7rj"] +atlas = ExtResource("1_4vqb5") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yjxl"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0gna"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp7tp"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh7oa"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpl1h"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lo4a"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3qqr"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3xrs"] +atlas = ExtResource("1_4vqb5") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn6f7"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1v33"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l5kg"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suw1u"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cabsv"] +atlas = ExtResource("1_4vqb5") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbkxj"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh5e4"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opgua"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyuri"] +atlas = ExtResource("1_4vqb5") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en53p"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbp12"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkkmf"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh8xh"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x5pm"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0gym"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dleya"] +atlas = ExtResource("1_4vqb5") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwvj6"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4axt"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpw34"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g57wa"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ioq"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxc5w"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scsgo"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55uol"] +atlas = ExtResource("1_4vqb5") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhfqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnfyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wwxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wawue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge7dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yf74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfbvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqbl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avcxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdnlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpeu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m57d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhy16") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wka5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylmdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s60ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne784") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn172") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0va0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80slg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4su0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luc5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bpnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp5my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rem1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7kqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x0oq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2up0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1nul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6lav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j5p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xg47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ywa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urc8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw7rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yjxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0gna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp7tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh7oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpl1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lo4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3qqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3xrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn6f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1v33") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l5kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suw1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cabsv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbkxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh5e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opgua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyuri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en53p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbp12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkkmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh8xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x5pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0gym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dleya") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwvj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4axt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpw34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g57wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ioq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxc5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scsgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55uol") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_evilcrystalwisp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_evilcrystalwisp.tres new file mode 100644 index 0000000..2b31d06 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_evilcrystalwisp.tres @@ -0,0 +1,897 @@ +[gd_resource type="SpriteFrames" load_steps=125 format=3 uid="uid://dflpxxpoxm71e"] + +[ext_resource type="Texture2D" uid="uid://bxvquwvtcpbgi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png" id="1_tasok"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmv3k"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6dkk"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33vgr"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beyag"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8uub"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bh2f"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjdda"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htk11"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs5bb"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_638gf"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7vdb"] +atlas = ExtResource("1_tasok") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5h2w"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkoap"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ookvt"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb7q4"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q28b"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp765"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxjp8"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tf0l"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcwme"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spnjv"] +atlas = ExtResource("1_tasok") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjeqv"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18g0j"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yngox"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkwe8"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff50r"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et3s5"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3domj"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppr7u"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an56b"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmbve"] +atlas = ExtResource("1_tasok") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il2od"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10kj4"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcr28"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdoel"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw6he"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsqjg"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooqiy"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7om8u"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjisc"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ur0"] +atlas = ExtResource("1_tasok") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpn36"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjki7"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egqop"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3slw"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ugyp"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxstm"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ar6"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o01l0"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gacec"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm4m1"] +atlas = ExtResource("1_tasok") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e7r0"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riqck"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3gle"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_paflt"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw4iu"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jfv2"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c75vy"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bujx"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aub2n"] +atlas = ExtResource("1_tasok") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5150r"] +atlas = ExtResource("1_tasok") +region = Rect2(1212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nryh"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v10w8"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a645d"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dss5"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wkyi"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8qg"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7m2f"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bjxc"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57j8y"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6ija"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjdtf"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0y2v"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3vkv"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s01al"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btivw"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpwqc"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3irct"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfalf"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpx4h"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5bfq"] +atlas = ExtResource("1_tasok") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txhiq"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg3lc"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vot5b"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek36a"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tm6y"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwi01"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8q83"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0jjc"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6tnx"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klr7m"] +atlas = ExtResource("1_tasok") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euqe0"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwn1f"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ri8"] +atlas = ExtResource("1_tasok") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pl8h"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m72dt"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q5xa"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjkod"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7608r"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7si1"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb8mc"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxfd5"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l2ti"] +atlas = ExtResource("1_tasok") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf65h"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdf5l"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksywl"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bglor"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecrp2"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qgtn"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0rmn"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ernw8"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh18x"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eksav"] +atlas = ExtResource("1_tasok") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhcxv"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfp74"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an5hv"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqjbm"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjbu5"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hilvq"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tg1i"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6u8c"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrd4x"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqsel"] +atlas = ExtResource("1_tasok") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmv3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6dkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33vgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beyag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8uub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bh2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjdda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htk11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs5bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_638gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7vdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5h2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkoap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ookvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb7q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q28b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp765") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxjp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tf0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcwme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spnjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjeqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18g0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yngox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkwe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff50r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et3s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3domj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppr7u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_an56b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmbve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il2od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10kj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcr28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdoel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw6he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsqjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooqiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7om8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjisc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ur0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpn36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjki7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egqop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3slw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ugyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxstm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ar6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o01l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gacec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm4m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e7r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riqck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3gle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_paflt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw4iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jfv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c75vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bujx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aub2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5150r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nryh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v10w8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a645d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dss5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wkyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7m2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bjxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57j8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6ija") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjdtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0y2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3vkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s01al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btivw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpwqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3irct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfalf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpx4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5bfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txhiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg3lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vot5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek36a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tm6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwi01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8q83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0jjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6tnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klr7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euqe0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwn1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ri8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pl8h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m72dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q5xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjkod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7608r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7si1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb8mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxfd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l2ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf65h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdf5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksywl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bglor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecrp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qgtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0rmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ernw8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh18x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eksav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhcxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfp74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an5hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqjbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjbu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hilvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tg1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6u8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrd4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqsel") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_explodingwall.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_explodingwall.tres new file mode 100644 index 0000000..544184b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_explodingwall.tres @@ -0,0 +1,500 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://m4gu72arqs5j"] + +[ext_resource type="Texture2D" uid="uid://br08nrwbkebvn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png" id="1_s4yb0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjjoj"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfn8b"] +atlas = ExtResource("1_s4yb0") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsl3r"] +atlas = ExtResource("1_s4yb0") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkyk2"] +atlas = ExtResource("1_s4yb0") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pmkp"] +atlas = ExtResource("1_s4yb0") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jer1p"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tryek"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aewrq"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qev8v"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dfib"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0bot"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b02hr"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo11t"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hb0j"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qanrv"] +atlas = ExtResource("1_s4yb0") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hhum"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b1yc"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwx7f"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yajvi"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlio3"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae4re"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcv2o"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5arru"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe0rt"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpfmw"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuk0p"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiw88"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joj0y"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfk71"] +atlas = ExtResource("1_s4yb0") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5u56"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jut16"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slag5"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs46t"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j42jb"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qloh"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcq5f"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ca3"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmet0"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpotn"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gww4c"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuwua"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vnej"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0drsy"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vakdx"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8lat"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3vhu"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1swj"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlrqn"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58akc"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv1ei"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bktg1"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6jic"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a26u"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex72h"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boc2o"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufbkq"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5qyl"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p0d0"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou8v6"] +atlas = ExtResource("1_s4yb0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfrx7"] +atlas = ExtResource("1_s4yb0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y40o"] +atlas = ExtResource("1_s4yb0") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgglw"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5yrg"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpvgk"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5544j"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8kdg"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq7nb"] +atlas = ExtResource("1_s4yb0") +region = Rect2(303, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjjoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfn8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsl3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkyk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pmkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jer1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tryek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aewrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qev8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dfib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0bot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b02hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo11t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hb0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qanrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hhum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b1yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwx7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yajvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlio3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae4re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcv2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5arru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe0rt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpfmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuk0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiw88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joj0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfk71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5u56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jut16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slag5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs46t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j42jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qloh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcq5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ca3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmet0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpotn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gww4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuwua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vnej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0drsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vakdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8lat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3vhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1swj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlrqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58akc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv1ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bktg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6jic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a26u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex72h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boc2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufbkq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5qyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p0d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou8v6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfrx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y40o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgglw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5yrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpvgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5544j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8kdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq7nb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_faiefestive.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_faiefestive.tres new file mode 100644 index 0000000..03c2bd4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_faiefestive.tres @@ -0,0 +1,644 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://pquouaqinmr"] + +[ext_resource type="Texture2D" uid="uid://cj6l1csuydx8v" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png" id="1_difyy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl1sh"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boio7"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk7lc"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0v5q"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qqlw"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjbkf"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekymg"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i752d"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jvai"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy1hs"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyv60"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckrfh"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr1fe"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a14x"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8ty3"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6gkw"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glv2f"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yur7d"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy4ae"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io0d2"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg21t"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0o8m"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3e8w"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk5lp"] +atlas = ExtResource("1_difyy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ke71"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tnir"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sua64"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axwav"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd76u"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f08ff"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofrq6"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pki0"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qordv"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74qvp"] +atlas = ExtResource("1_difyy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b05rh"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2cj3"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1lsf"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6kqm"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gh1g"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1kp7"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtj4p"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dntd"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udnht"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36vs2"] +atlas = ExtResource("1_difyy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnxtd"] +atlas = ExtResource("1_difyy") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljtcb"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d51q0"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwb5d"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g74ih"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvpwy"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oemip"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11q5v"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeexe"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w3fg"] +atlas = ExtResource("1_difyy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkitt"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1xd3"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbx6r"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6xn7"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2kfs"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_burfp"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6nm8"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvawx"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohf7"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcoqh"] +atlas = ExtResource("1_difyy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rifon"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnyq7"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0pj6"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk8v7"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bam0o"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oebcc"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bth7j"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpdqx"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_521mm"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25g3i"] +atlas = ExtResource("1_difyy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q25s"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cylor"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cagon"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcqmf"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rykru"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xtlo"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg1s7"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxeq7"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vd0n"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsyu2"] +atlas = ExtResource("1_difyy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl1sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boio7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk7lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0v5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qqlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjbkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i752d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jvai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy1hs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyv60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckrfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr1fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a14x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8ty3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6gkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glv2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yur7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy4ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io0d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg21t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0o8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3e8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk5lp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ke71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tnir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sua64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axwav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd76u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f08ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofrq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pki0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qordv") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_74qvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b05rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2cj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1lsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6kqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gh1g") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1kp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtj4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dntd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udnht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36vs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnxtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljtcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d51q0") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwb5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g74ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvpwy") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oemip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11q5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeexe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w3fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkitt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1xd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbx6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6xn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2kfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_burfp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6nm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvawx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohf7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcoqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rifon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnyq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0pj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk8v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bam0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oebcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bth7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpdqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_521mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25g3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q25s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cylor") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cagon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcqmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rykru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xtlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg1s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxeq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vd0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsyu2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwarmaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwarmaster.tres new file mode 100644 index 0000000..bec0f40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwarmaster.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://x0hcbt283mhy"] + +[ext_resource type="Texture2D" uid="uid://ctj1njeahmm1n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png" id="1_pm023"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_og6n1"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk6g5"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vghve"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivsqk"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq7mu"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pod5i"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oljus"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt5lb"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd80s"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e68aq"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4dr6"] +atlas = ExtResource("1_pm023") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dci1e"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dixj"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uosve"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkef6"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sav42"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xisb"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tww18"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au33v"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7xjk"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw7nn"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wirgj"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bpkb"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw1d2"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcacm"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kihq"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfg0t"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyjd1"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk3go"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udsic"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im758"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh0ji"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwfvd"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtycp"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42wee"] +atlas = ExtResource("1_pm023") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuva7"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crgwu"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_befcx"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urbv3"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oxab"] +atlas = ExtResource("1_pm023") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bwku"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01ary"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmeg6"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfs31"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwsre"] +atlas = ExtResource("1_pm023") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1u4g"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi6b1"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayfmb"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbic7"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68g2v"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtuta"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrifh"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmss8"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ara6s"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gar30"] +atlas = ExtResource("1_pm023") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srku3"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvc7i"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d2gu"] +atlas = ExtResource("1_pm023") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6nua"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0ddi"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qxp5"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fojpd"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faxjy"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84fpu"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dthiy"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sbcu"] +atlas = ExtResource("1_pm023") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvpi8"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr228"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iltuq"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nejq0"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt370"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rhbr"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oickw"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18p7d"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy2vq"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbd4j"] +atlas = ExtResource("1_pm023") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_og6n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk6g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vghve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivsqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq7mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pod5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oljus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt5lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd80s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e68aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4dr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dci1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dixj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uosve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkef6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sav42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xisb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tww18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au33v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7xjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw7nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wirgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bpkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw1d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcacm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kihq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfg0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyjd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udsic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im758") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh0ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwfvd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtycp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42wee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuva7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crgwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_befcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urbv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oxab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bwku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01ary") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmeg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfs31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwsre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1u4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi6b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayfmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbic7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68g2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtuta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmss8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ara6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gar30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srku3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvc7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d2gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6nua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0ddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qxp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fojpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faxjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84fpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dthiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sbcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvpi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr228") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iltuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nejq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt370") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rhbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oickw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18p7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy2vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbd4j") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwerewolf.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwerewolf.tres new file mode 100644 index 0000000..c66494a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_fenrirwerewolf.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://cudwmswvkjpa2"] + +[ext_resource type="Texture2D" uid="uid://bdi1q0447o02a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png" id="1_1hsd4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ntul"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr0ib"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndiqy"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pkix"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm26n"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q1eg"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3gv5"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ahd7"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7iyd"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xu5"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th6h4"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd10s"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjyno"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goik1"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwfh8"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6esv"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtlxu"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd41c"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iklc5"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbdxc"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4cf5"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grke8"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdb37"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i36cm"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4sjj"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_narvv"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqnuw"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8136"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbsda"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxtjw"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1surt"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43sx0"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8kwx"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn8qy"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgu2b"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_minmj"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbp1l"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tcet"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tr25"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02t4d"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edoak"] +atlas = ExtResource("1_1hsd4") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v1ts"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mey76"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyjft"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x0ud"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqqb"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73j6a"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n5po"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ysw"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bva2a"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmxt"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_182hb"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxvtp"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt55w"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjjo0"] +atlas = ExtResource("1_1hsd4") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fx2d"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txbxk"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiha5"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdtdh"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdshy"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_440ko"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0eom"] +atlas = ExtResource("1_1hsd4") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ecwm"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw4sy"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kgtg"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww7qh"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jshhl"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2252h"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t74u2"] +atlas = ExtResource("1_1hsd4") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mqnu"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbq8p"] +atlas = ExtResource("1_1hsd4") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvhk4"] +atlas = ExtResource("1_1hsd4") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41l1y"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wspdc"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ystf"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhf6q"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kstwd"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxurl"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57eqn"] +atlas = ExtResource("1_1hsd4") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hbaa"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sl4m"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqpin"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpmgj"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_272dj"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqm5v"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8x6f"] +atlas = ExtResource("1_1hsd4") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdgh2"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2756r"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yg0m"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku3up"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io3gr"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj5jp"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8ggm"] +atlas = ExtResource("1_1hsd4") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ntul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr0ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndiqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pkix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm26n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q1eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3gv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ahd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7iyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th6h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd10s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjyno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goik1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwfh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6esv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtlxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd41c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iklc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbdxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4cf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grke8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdb37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i36cm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4sjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_narvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8136") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbsda") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxtjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1surt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43sx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8kwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn8qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgu2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_minmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbp1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tcet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tr25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02t4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edoak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v1ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mey76") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyjft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x0ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybqqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73j6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n5po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ysw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bva2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_182hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxvtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt55w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjjo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fx2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txbxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiha5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdtdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdshy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_440ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0eom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ecwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw4sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kgtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww7qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jshhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2252h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t74u2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mqnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbq8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvhk4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_41l1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wspdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ystf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhf6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kstwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxurl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57eqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hbaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sl4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqpin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpmgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_272dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqm5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8x6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdgh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2756r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yg0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku3up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io3gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj5jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8ggm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_freeblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_freeblade.tres new file mode 100644 index 0000000..dae8f3b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_freeblade.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://dvxsd80oh7ho2"] + +[ext_resource type="Texture2D" uid="uid://b1ji4mh6uerl7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png" id="1_qcflq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0imp"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv6bp"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs1yl"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg4vk"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggirs"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mobbo"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6o3u"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjoyd"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d36v"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egutu"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o4sh"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyrgi"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mad8k"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bivec"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u43sg"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f1cv"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07o4s"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfvi5"] +atlas = ExtResource("1_qcflq") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va0vd"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dis3"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnmgl"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dftf"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfnrh"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1m8p"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cnwa"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm322"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndb2e"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbkg1"] +atlas = ExtResource("1_qcflq") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v00hw"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0mae"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv76x"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6fwi"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn46o"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltvlq"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqhf2"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_con0e"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r56ci"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o8md"] +atlas = ExtResource("1_qcflq") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gogo"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxof8"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4hnx"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74qc7"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yrmc"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fkrf"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5wbd"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhvn7"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t18l"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aou48"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a44d0"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt38t"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td4eq"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md0h5"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjjt3"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7frc"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_003sf"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipn0u"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwces"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71urj"] +atlas = ExtResource("1_qcflq") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hy47"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06dga"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jis62"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saupo"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bheje"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtefu"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uapo"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ifn"] +atlas = ExtResource("1_qcflq") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxl8e"] +atlas = ExtResource("1_qcflq") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rxjk"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwmag"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhvwy"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es6ag"] +atlas = ExtResource("1_qcflq") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jx1f"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guuar"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqqak"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kypq2"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l67id"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk3ad"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq53o"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7kgm"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afhqu"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h52b"] +atlas = ExtResource("1_qcflq") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpqej"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c7tc"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxvwm"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0gul"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjh1h"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u5jq"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uch4k"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulyxp"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bolpd"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go87g"] +atlas = ExtResource("1_qcflq") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0imp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv6bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs1yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg4vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggirs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mobbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6o3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjoyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d36v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egutu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o4sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyrgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mad8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bivec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u43sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f1cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07o4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfvi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va0vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dis3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnmgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dftf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfnrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1m8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cnwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm322") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndb2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbkg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v00hw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0mae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv76x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6fwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn46o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltvlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqhf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_con0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r56ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o8md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gogo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxof8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4hnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74qc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yrmc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fkrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5wbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhvn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t18l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aou48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a44d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt38t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td4eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md0h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjjt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7frc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_003sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipn0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwces") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71urj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hy47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06dga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jis62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saupo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bheje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtefu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uapo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ifn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxl8e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rxjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwmag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhvwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es6ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jx1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guuar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqqak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kypq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l67id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk3ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq53o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7kgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afhqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h52b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpqej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c7tc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxvwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0gul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjh1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u5jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uch4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulyxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bolpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go87g") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostbitehawker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostbitehawker.tres new file mode 100644 index 0000000..6738ed3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostbitehawker.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://w73rhvjksprh"] + +[ext_resource type="Texture2D" uid="uid://di54ajedtokxo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png" id="1_8kiqb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuadc"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ekpt"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n3v1"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s07jc"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmc1f"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgq3c"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1idfa"] +atlas = ExtResource("1_8kiqb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w34sf"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8tyw"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qumu4"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe77v"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hyaf"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jlim"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fnsh"] +atlas = ExtResource("1_8kiqb") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yc2e"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gbww"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkgps"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvp6e"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlgru"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g70ur"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfefh"] +atlas = ExtResource("1_8kiqb") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ubhq"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3085i"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng3t4"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rekdv"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dga8p"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsq3h"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8cv4"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjlhd"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2xim"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcotp"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es6f8"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb5ck"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4o2n"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fvol"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1mwt"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vices"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oatb8"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww283"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bi1i"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xypg"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdd0i"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ors6"] +atlas = ExtResource("1_8kiqb") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bcqv"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a6gt"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fft1"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kow30"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oegf5"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmugy"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odthd"] +atlas = ExtResource("1_8kiqb") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmm23"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7it6o"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp261"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8qj1"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o20l7"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4hn4"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u35a2"] +atlas = ExtResource("1_8kiqb") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bc3i"] +atlas = ExtResource("1_8kiqb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl0rc"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xnqe"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10tt2"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqq3m"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt3t8"] +atlas = ExtResource("1_8kiqb") +region = Rect2(917, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuadc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ekpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n3v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s07jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmc1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgq3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1idfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w34sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8tyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qumu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe77v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hyaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jlim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fnsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yc2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gbww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkgps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvp6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlgru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g70ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfefh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ubhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3085i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng3t4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rekdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dga8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsq3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8cv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjlhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2xim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcotp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es6f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb5ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4o2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fvol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1mwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vices") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oatb8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww283") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bi1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xypg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdd0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ors6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bcqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a6gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fft1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kow30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oegf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmugy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_odthd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmm23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7it6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp261") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8qj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o20l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4hn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u35a2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bc3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl0rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xnqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10tt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqq3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt3t8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostdrake.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostdrake.tres new file mode 100644 index 0000000..abb3031 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostdrake.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://x65krgk4t4te"] + +[ext_resource type="Texture2D" uid="uid://dxtqkkqs6pqo7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png" id="1_o8ce8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a1ah"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6dvx"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keh0a"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwkog"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6i2k"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiimy"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j00nn"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpnaw"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4kfd"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl8qf"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw418"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myg0t"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oqwe"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0h5k"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0rd1"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm6dk"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4olw"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvgwh"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op3yt"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl5rr"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlnea"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evth2"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6cab"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo28y"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqtei"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4xwi"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq3em"] +atlas = ExtResource("1_o8ce8") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj4wu"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeuxq"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sa7l"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8u7g"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpmep"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omlwt"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua6x0"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwv8l"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys0s5"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhfsd"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rib1c"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok82t"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ina3o"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x85nh"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ioxw"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvps3"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50cgc"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj6vb"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scqfl"] +atlas = ExtResource("1_o8ce8") +region = Rect2(486, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu4tv"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br7wd"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70ach"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrxyj"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aehdq"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a108w"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mft22"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jenf5"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjxjl"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b0se"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7n6p"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ymks"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo8ru"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so81e"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xwu5"] +atlas = ExtResource("1_o8ce8") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jixqd"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiv8r"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm1tt"] +atlas = ExtResource("1_o8ce8") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwlki"] +atlas = ExtResource("1_o8ce8") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0leb"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpx74"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ksd"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts30t"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gw1x"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roxda"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50ubw"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lbtr"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tki0w"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot1r0"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwe81"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir5c1"] +atlas = ExtResource("1_o8ce8") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvx4x"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cd83"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmhl7"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omta3"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpp2y"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yunic"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snbiu"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h72u"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80len"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dx5j"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfagt"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec5ch"] +atlas = ExtResource("1_o8ce8") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a1ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6dvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keh0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwkog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6i2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiimy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j00nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpnaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4kfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl8qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw418") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myg0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oqwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0h5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0rd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm6dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4olw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvgwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op3yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl5rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlnea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evth2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6cab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo28y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqtei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4xwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq3em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj4wu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeuxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sa7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8u7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpmep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omlwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua6x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwv8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys0s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhfsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rib1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok82t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ina3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x85nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ioxw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvps3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50cgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj6vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scqfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu4tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br7wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70ach") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrxyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aehdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a108w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mft22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jenf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjxjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b0se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7n6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ymks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo8ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so81e") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xwu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jixqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiv8r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm1tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwlki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0leb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpx74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ksd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts30t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gw1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roxda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50ubw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lbtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tki0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot1r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwe81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir5c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvx4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cd83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmhl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omta3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpp2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yunic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snbiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h72u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80len") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dx5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfagt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec5ch") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostiva.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostiva.tres new file mode 100644 index 0000000..91e198f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_frostiva.tres @@ -0,0 +1,855 @@ +[gd_resource type="SpriteFrames" load_steps=119 format=3 uid="uid://nqfco5n5up4r"] + +[ext_resource type="Texture2D" uid="uid://deoypmi570xhp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png" id="1_b0ohi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbdxd"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0git"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuteg"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6b40"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7evrb"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqbus"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coreu"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm7kl"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oooki"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssxqc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsus6"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wach"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88bmo"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecj16"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65wd2"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulykj"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bycrx"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke13h"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vm4m"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x3rj"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgar"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34jn4"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gl3y"] +atlas = ExtResource("1_b0ohi") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ssm"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3tjm"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmstp"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwoaf"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pckwg"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjetf"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mekjw"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sbjs"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjh7c"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yulo"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ywil"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deyl4"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v73o5"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_art4b"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h8ke"] +atlas = ExtResource("1_b0ohi") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fxmb"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dtlq"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mspv"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0njvi"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eey5"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma0ld"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp7c1"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hqgc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_506al"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhb3g"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qix6s"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecgoo"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeokd"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0cbu"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aflc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eacv3"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuoxu"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0voi"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aflk2"] +atlas = ExtResource("1_b0ohi") +region = Rect2(917, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6h0l"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxfbi"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us34x"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wae1"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owlim"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iy0c"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ms3"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va2rq"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx3go"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i51gl"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pplvf"] +atlas = ExtResource("1_b0ohi") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi53l"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqntc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybx47"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4gdt"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgwsk"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afi5y"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cuem"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8lb4"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qao5a"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o7hv"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdtq1"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e0yg"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mb3d"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j7cv"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cak78"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0petm"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4in16"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uec0p"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cmd6"] +atlas = ExtResource("1_b0ohi") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwtrm"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rye03"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlwio"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2asp"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acsh7"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biefc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wls4p"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmoud"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shcek"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij2dc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqmhi"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adw5r"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yylww"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcrsv"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwjvk"] +atlas = ExtResource("1_b0ohi") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c287"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6em7x"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxcu4"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu4pr"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2vva"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_colkd"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w327"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bqpa"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wghu1"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtkam"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekd23"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57jkc"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac73a"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjaaf"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awv0h"] +atlas = ExtResource("1_b0ohi") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbdxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0git") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuteg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6b40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7evrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqbus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coreu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm7kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oooki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssxqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsus6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wach") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88bmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecj16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65wd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulykj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bycrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke13h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vm4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x3rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34jn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gl3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56ssm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3tjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmstp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwoaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pckwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjetf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mekjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sbjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjh7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yulo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ywil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deyl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v73o5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_art4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h8ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fxmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dtlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mspv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0njvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eey5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma0ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp7c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hqgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_506al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhb3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qix6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecgoo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeokd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0cbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aflc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eacv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuoxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0voi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aflk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6h0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxfbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us34x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wae1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owlim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iy0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ms3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va2rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i51gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pplvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi53l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqntc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybx47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4gdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgwsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afi5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cuem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8lb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qao5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o7hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdtq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e0yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mb3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j7cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cak78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0petm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4in16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uec0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cmd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwtrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rye03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlwio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2asp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acsh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biefc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wls4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmoud") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_shcek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij2dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqmhi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_adw5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yylww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcrsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwjvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c287") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6em7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxcu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu4pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2vva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_colkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w327") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bqpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wghu1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtkam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekd23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57jkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac73a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjaaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awv0h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_general.tres new file mode 100644 index 0000000..d206b83 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_general.tres @@ -0,0 +1,644 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://dm3i7elif2lkx"] + +[ext_resource type="Texture2D" uid="uid://dra7ltq84nxyu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png" id="1_heplj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj0gh"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnwv5"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o7i4"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8imne"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21t5m"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4we8y"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dskt"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw0h1"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s3yo"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5l5u"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_406qf"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl6hr"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m37f4"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygp1n"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns7im"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwbtc"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh164"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkh73"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgmqi"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n2qv"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypl0d"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6g7p"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ops"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m48gi"] +atlas = ExtResource("1_heplj") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwdi7"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqcjc"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyhe1"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmd2q"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkk2r"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmyyj"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwgxd"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r2w4"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35deh"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt8ct"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp6tm"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrnai"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrm0d"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdpho"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e021b"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ntt"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlkud"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhj3y"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbc1h"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swi54"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45iwa"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5omdp"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m1ku"] +atlas = ExtResource("1_heplj") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgicy"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gl26d"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_785il"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syp05"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kjj2"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbodp"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg0mq"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_423cy"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1drrt"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhr0i"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh6kh"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4xi8"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkfu5"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23c5n"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikb1x"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whnuj"] +atlas = ExtResource("1_heplj") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3olh"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld4dj"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvfeo"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxaca"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egwhx"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p0vm"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnmeh"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyrt4"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk3c3"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_armtn"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq8tb"] +atlas = ExtResource("1_heplj") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu0nf"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yut56"] +atlas = ExtResource("1_heplj") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcl7j"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coj76"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqpp4"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxj16"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n524r"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx2db"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42til"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sndr"] +atlas = ExtResource("1_heplj") +region = Rect2(243, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj0gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnwv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o7i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8imne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21t5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4we8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dskt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw0h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s3yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5l5u") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_406qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl6hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m37f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygp1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns7im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwbtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh164") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkh73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgmqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n2qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypl0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6g7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ops") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m48gi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwdi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqcjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyhe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmd2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkk2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmyyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwgxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r2w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35deh") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt8ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp6tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrnai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrm0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdpho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e021b") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ntt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlkud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhj3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbc1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swi54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45iwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5omdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m1ku") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgicy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gl26d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_785il") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_syp05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kjj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbodp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg0mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_423cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1drrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhr0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh6kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4xi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkfu5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23c5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikb1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whnuj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3olh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld4dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvfeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxaca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egwhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p0vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnmeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyrt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk3c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_armtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq8tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu0nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yut56") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcl7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coj76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqpp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxj16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n524r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx2db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42til") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sndr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ghostseraphim.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ghostseraphim.tres new file mode 100644 index 0000000..91b3596 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ghostseraphim.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://duleqasfvvf27"] + +[ext_resource type="Texture2D" uid="uid://bjf13eaxtvywt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png" id="1_soa7l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fp17"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5isaf"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr72y"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khwml"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67chg"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1n5d"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peyvi"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pofsx"] +atlas = ExtResource("1_soa7l") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cekeq"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeava"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt2l2"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsrtk"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo5su"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcxxl"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fedr5"] +atlas = ExtResource("1_soa7l") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vqu7"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drwth"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxub8"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v43fb"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yelw7"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu3ds"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yofmr"] +atlas = ExtResource("1_soa7l") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uku2"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88slk"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylywj"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqoy1"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bxrb"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv3yj"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li20g"] +atlas = ExtResource("1_soa7l") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfywj"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxfhj"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcpyo"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hapuc"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifhqb"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h02k2"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pe1c"] +atlas = ExtResource("1_soa7l") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nakfr"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpr86"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnof8"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g1m0"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f8yy"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtv1r"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnwgd"] +atlas = ExtResource("1_soa7l") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7rbu"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0kib"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxrup"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q20d"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j37je"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orqsx"] +atlas = ExtResource("1_soa7l") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i2ei"] +atlas = ExtResource("1_soa7l") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbkww"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkks5"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8qyc"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxdtu"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sksju"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c6vx"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seqi7"] +atlas = ExtResource("1_soa7l") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h56yf"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q458g"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kevdu"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fdsn"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5nn8"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h65xr"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gf1s"] +atlas = ExtResource("1_soa7l") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewdxp"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i71kv"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvv8t"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33bmm"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs6vt"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvhjl"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj26w"] +atlas = ExtResource("1_soa7l") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn4cn"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbeky"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h71ik"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87o31"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14l6s"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvj2s"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dstbv"] +atlas = ExtResource("1_soa7l") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckbu6"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2106h"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq41x"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc15h"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2168x"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wylih"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spgxm"] +atlas = ExtResource("1_soa7l") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwyd7"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7b72"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nn5c"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_705o3"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_verdd"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgg7n"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hetbx"] +atlas = ExtResource("1_soa7l") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i4c0"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kny6g"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irv4e"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdmxp"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0r74"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj7y1"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7lxl"] +atlas = ExtResource("1_soa7l") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fp17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5isaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr72y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khwml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67chg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1n5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peyvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pofsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cekeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeava") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt2l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsrtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo5su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcxxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fedr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vqu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drwth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxub8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v43fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yelw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu3ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yofmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uku2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88slk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylywj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqoy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bxrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv3yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li20g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfywj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxfhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcpyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hapuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifhqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h02k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pe1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nakfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpr86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnof8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g1m0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f8yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtv1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnwgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7rbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0kib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxrup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q20d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j37je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orqsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i2ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbkww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkks5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8qyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxdtu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sksju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c6vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seqi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h56yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q458g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kevdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fdsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5nn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h65xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gf1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewdxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i71kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvv8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33bmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs6vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvhjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj26w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn4cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbeky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h71ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87o31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14l6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvj2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dstbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckbu6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2106h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq41x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc15h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2168x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wylih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spgxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwyd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7b72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nn5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_705o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_verdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgg7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hetbx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i4c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kny6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irv4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdmxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0r74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj7y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7lxl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_grandmasterembla.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_grandmasterembla.tres new file mode 100644 index 0000000..accf5a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_grandmasterembla.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://dwhyrtn4kyqdm"] + +[ext_resource type="Texture2D" uid="uid://omwcwsh8gv1p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png" id="1_g7shk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qqc3"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh4sc"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vyu7"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw82t"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3kk1"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uuqh"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so18u"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw7yd"] +atlas = ExtResource("1_g7shk") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ipj"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqg88"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjp3k"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf2bg"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1va8"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swot3"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htka4"] +atlas = ExtResource("1_g7shk") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy1ms"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3qkt"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j43u"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jagy7"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yad4k"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpdh"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fon5s"] +atlas = ExtResource("1_g7shk") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld1hk"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4ptn"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ewjs"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy241"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hprpb"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bmso"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rllh5"] +atlas = ExtResource("1_g7shk") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv358"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bfc8"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_356j4"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htncr"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fejw3"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rylbe"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_larhd"] +atlas = ExtResource("1_g7shk") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75ytj"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpbas"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86nsa"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5p1c"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_641bb"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb0c2"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16s4u"] +atlas = ExtResource("1_g7shk") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsy72"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh8fr"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51snq"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgjie"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgxuv"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uexc7"] +atlas = ExtResource("1_g7shk") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fjjk"] +atlas = ExtResource("1_g7shk") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y41fl"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsl8e"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45lv0"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssbqn"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c3gt"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsf0w"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h12ow"] +atlas = ExtResource("1_g7shk") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka7un"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv7bn"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc3wi"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkbc0"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uosy7"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ba7x"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxuhw"] +atlas = ExtResource("1_g7shk") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpare"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lni8h"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjnbq"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_871ld"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmxqs"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lbuy"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0x7h"] +atlas = ExtResource("1_g7shk") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlfx3"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk3s3"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emdye"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blgbc"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwptr"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tw78"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr0yg"] +atlas = ExtResource("1_g7shk") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no17u"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydbfv"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlxhp"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq7hq"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cptg3"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loruk"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysg3a"] +atlas = ExtResource("1_g7shk") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eknp"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak8cp"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xqea"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad0mu"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4n3j"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0tg6"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm2et"] +atlas = ExtResource("1_g7shk") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fr3w"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k675w"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0rb1"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43lss"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3mlh"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1g0s"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl4tg"] +atlas = ExtResource("1_g7shk") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qqc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh4sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vyu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw82t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3kk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uuqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so18u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw7yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ipj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqg88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjp3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf2bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1va8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swot3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htka4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy1ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3qkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j43u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jagy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yad4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fon5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld1hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4ptn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ewjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy241") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hprpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bmso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rllh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv358") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bfc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_356j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htncr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fejw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rylbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_larhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75ytj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpbas") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_86nsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5p1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_641bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb0c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16s4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsy72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh8fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51snq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgjie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgxuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uexc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fjjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y41fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsl8e") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_45lv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssbqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c3gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsf0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h12ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka7un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv7bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc3wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkbc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uosy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ba7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxuhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpare") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lni8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjnbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_871ld") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmxqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lbuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0x7h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlfx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk3s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emdye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blgbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwptr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tw78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr0yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no17u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydbfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlxhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq7hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cptg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loruk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysg3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eknp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak8cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xqea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad0mu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4n3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0tg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm2et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fr3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k675w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0rb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43lss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3mlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1g0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl4tg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_gravitywell.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_gravitywell.tres new file mode 100644 index 0000000..2bcfa22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_gravitywell.tres @@ -0,0 +1,404 @@ +[gd_resource type="SpriteFrames" load_steps=56 format=3 uid="uid://dc7ldrgplumdu"] + +[ext_resource type="Texture2D" uid="uid://bkl2lixk6eoul" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png" id="1_t2vjg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir5nf"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc0rf"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuj2a"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2oge"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xddha"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lntr3"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhp58"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msr4q"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4afp"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqbm6"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3l64"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmohy"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3w0m"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm5jq"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86j6b"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew3qw"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bseax"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjwto"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj5g7"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylo1k"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htxrm"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbc7x"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdfts"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3ul8"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scosb"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yfns"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unmil"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea8rv"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g73q1"] +atlas = ExtResource("1_t2vjg") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnhkr"] +atlas = ExtResource("1_t2vjg") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bteil"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh1ir"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk6yt"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ikuq"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck8f7"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1bjb"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8os33"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wefbc"] +atlas = ExtResource("1_t2vjg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5rnf"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_askpu"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb071"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ni0u"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqqcf"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufuen"] +atlas = ExtResource("1_t2vjg") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xveaj"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30nls"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaeyt"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uerex"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njies"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hldil"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd87u"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usax3"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtsm4"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2enw"] +atlas = ExtResource("1_t2vjg") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir5nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc0rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuj2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2oge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xddha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lntr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhp58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msr4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4afp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqbm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3l64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmohy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3w0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm5jq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_86j6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew3qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bseax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjwto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj5g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylo1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htxrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbc7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdfts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3ul8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scosb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yfns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unmil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea8rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g73q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnhkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bteil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh1ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk6yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ikuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck8f7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1bjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8os33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wefbc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5rnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_askpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb071") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ni0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqqcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufuen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xveaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30nls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaeyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uerex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njies") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hldil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd87u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usax3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtsm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2enw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_greatwhitenorth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_greatwhitenorth.tres new file mode 100644 index 0000000..388f3f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_greatwhitenorth.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://biv41qjuurldf"] + +[ext_resource type="Texture2D" uid="uid://bbqctlh3obnhr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png" id="1_1rmwh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlcba"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvwu1"] +atlas = ExtResource("1_1rmwh") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gupuq"] +atlas = ExtResource("1_1rmwh") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_180a8"] +atlas = ExtResource("1_1rmwh") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiebp"] +atlas = ExtResource("1_1rmwh") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60gvr"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os7re"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve5qk"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux7fr"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6afm"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu6pt"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm4pf"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k2lr"] +atlas = ExtResource("1_1rmwh") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk83p"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leu65"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b11b"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfnhg"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itr14"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi6f2"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfq38"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f5yu"] +atlas = ExtResource("1_1rmwh") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yranw"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljud5"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vgik"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hi31"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghsmw"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl3tn"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfioj"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6rds"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnrre"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxynv"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc44k"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf3x2"] +atlas = ExtResource("1_1rmwh") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18hje"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs2ef"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptejx"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru8wy"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiegq"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8jnv"] +atlas = ExtResource("1_1rmwh") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f01no"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn7kr"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee51g"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf888"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0d51"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61u7w"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd25t"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0apn"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mx4n"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o86li"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tqsh"] +atlas = ExtResource("1_1rmwh") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyu8u"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8ink"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jghs4"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fufo"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkaqb"] +atlas = ExtResource("1_1rmwh") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egu0c"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn7dh"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq5bd"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5c32"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ktyg"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61tf7"] +atlas = ExtResource("1_1rmwh") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lhef"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e17u"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skex0"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jbq1"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txo33"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b0or"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxd2l"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uhmc"] +atlas = ExtResource("1_1rmwh") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfeg2"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isqf5"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayf5f"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viltc"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0pbf"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng1a1"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt5tf"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2ng4"] +atlas = ExtResource("1_1rmwh") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlcba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvwu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gupuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_180a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiebp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60gvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os7re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve5qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux7fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6afm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu6pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm4pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k2lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk83p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leu65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b11b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfnhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itr14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi6f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfq38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f5yu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yranw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljud5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vgik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hi31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghsmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl3tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfioj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6rds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnrre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxynv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc44k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf3x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18hje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs2ef") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptejx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru8wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiegq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8jnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f01no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn7kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee51g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf888") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0d51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61u7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd25t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0apn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mx4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o86li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tqsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyu8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8ink") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jghs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fufo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkaqb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_egu0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn7dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq5bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5c32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ktyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61tf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lhef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e17u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skex0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jbq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txo33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b0or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxd2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uhmc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfeg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isqf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayf5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viltc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0pbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng1a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt5tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2ng4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_huldra.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_huldra.tres new file mode 100644 index 0000000..f638be2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_huldra.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://h857v4k2kikd"] + +[ext_resource type="Texture2D" uid="uid://ct23325kipb4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png" id="1_gkbrr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnbbv"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq1w4"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxkfo"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ktlt"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v254e"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo7c2"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iworl"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s01c"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn7c6"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfuqi"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8shl5"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnabf"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqld1"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81m88"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbp16"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n43h7"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4pis"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y17uv"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5mjs"] +atlas = ExtResource("1_gkbrr") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2q04"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kj7r"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7shw0"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp372"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it0iu"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2btfv"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiy74"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_excua"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0vw2"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5wu6"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir07a"] +atlas = ExtResource("1_gkbrr") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8gs8"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qjfq"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hofm"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf0ed"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gm1h"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g0um"] +atlas = ExtResource("1_gkbrr") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tfax"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a5ns"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ru4"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hehm"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0q72"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ljvk"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdabv"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kixko"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1urle"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8vap"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8l4t"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0k0m"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsv8g"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8cvi"] +atlas = ExtResource("1_gkbrr") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax84e"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytlgn"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iilp7"] +atlas = ExtResource("1_gkbrr") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdua6"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82e1a"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7l2y"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgjny"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2dsk"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g80ha"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdief"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl6k4"] +atlas = ExtResource("1_gkbrr") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v8c0"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lge25"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgipd"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8p4w"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjg4n"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6dto"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ialtx"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkjip"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf43h"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecgcf"] +atlas = ExtResource("1_gkbrr") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnbbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq1w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxkfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ktlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v254e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo7c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iworl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s01c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn7c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfuqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8shl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnabf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqld1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81m88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbp16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n43h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4pis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y17uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5mjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2q04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kj7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7shw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp372") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_it0iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2btfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiy74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_excua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0vw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5wu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir07a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8gs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qjfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hofm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf0ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gm1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g0um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tfax") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a5ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ru4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hehm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0q72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ljvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdabv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kixko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1urle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8vap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8l4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0k0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsv8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8cvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax84e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytlgn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iilp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdua6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82e1a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7l2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgjny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2dsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g80ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdief") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl6k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v8c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lge25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgipd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8p4w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjg4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6dto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ialtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkjip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf43h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecgcf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icedryad.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icedryad.tres new file mode 100644 index 0000000..7479372 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icedryad.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://kp44n858uej0"] + +[ext_resource type="Texture2D" uid="uid://b7grbod4f0m80" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png" id="1_uvsmb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dvou"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbyg3"] +atlas = ExtResource("1_uvsmb") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70mjp"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r7ox"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ol2"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gaso"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j42e6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf43i"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te5np"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yoc6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouxq6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2m01"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06xak"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80vw4"] +atlas = ExtResource("1_uvsmb") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6guve"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl1i2"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urnsi"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8pks"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wunk"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kogvg"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3pey"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7i6d"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ojqu"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kpl7"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mdxv"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijlkh"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y88tf"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apm21"] +atlas = ExtResource("1_uvsmb") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldyyq"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0e4j"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lng4c"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncyo6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba8br"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q23ic"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpw8b"] +atlas = ExtResource("1_uvsmb") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtu55"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7sx6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c848x"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41f4x"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcr8l"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmqg6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2plve"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytcfw"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxg0s"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjfv3"] +atlas = ExtResource("1_uvsmb") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy2ed"] +atlas = ExtResource("1_uvsmb") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6wk6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwf3d"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgku6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fo0c"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jummn"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yigoi"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55cxr"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqsh6"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rm1a"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7y6c"] +atlas = ExtResource("1_uvsmb") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e2tu"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdjwc"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apxd1"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y42n"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsljl"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h62x7"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j12jn"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo3y4"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ykmv"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8nqm"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j23w"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irmj7"] +atlas = ExtResource("1_uvsmb") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dvou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbyg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70mjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r7ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ol2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gaso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j42e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf43i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te5np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yoc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouxq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2m01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06xak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80vw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6guve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl1i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urnsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8pks") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wunk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kogvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3pey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7i6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ojqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kpl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mdxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijlkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y88tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apm21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldyyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0e4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lng4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncyo6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba8br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q23ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpw8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtu55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7sx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c848x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41f4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcr8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmqg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2plve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytcfw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxg0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjfv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy2ed") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6wk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwf3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgku6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fo0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jummn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yigoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55cxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqsh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rm1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7y6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e2tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdjwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y42n") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsljl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h62x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j12jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo3y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ykmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8nqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j23w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irmj7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icehornet.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icehornet.tres new file mode 100644 index 0000000..ced24d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icehornet.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://by82xip3mv0bp"] + +[ext_resource type="Texture2D" uid="uid://c2gymwhayl2aj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png" id="1_ft81i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_iylu0"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ded"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2tw4"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tdwb"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7djus"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ruft"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgb1p"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wakq"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m25p1"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xewm"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2te62"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks6to"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wlgf"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axd8x"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm34s"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gtde"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsgmh"] +atlas = ExtResource("1_ft81i") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmnvh"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj1l0"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m36fl"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07rku"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deex8"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rww17"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cil7f"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r40yf"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2vse"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnwa1"] +atlas = ExtResource("1_ft81i") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gps60"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dts8a"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgcup"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht6re"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgflt"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftxs1"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym7jg"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a36aj"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80dck"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyoqf"] +atlas = ExtResource("1_ft81i") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k606"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7stp"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyft7"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cltb8"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxlvk"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmpn1"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylydo"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un3fm"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27k2d"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxcjr"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0gyr"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b14hm"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t8hg"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw1rx"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hldv7"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6ps0"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa272"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nne5e"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tvbq"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agfvs"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djy15"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7gbr"] +atlas = ExtResource("1_ft81i") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63vsy"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp4il"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gyir"] +atlas = ExtResource("1_ft81i") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw6xc"] +atlas = ExtResource("1_ft81i") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22dcl"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2es7u"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqjcr"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pu45"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbpt2"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77thm"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itrhw"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trnlg"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxm62"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg2xb"] +atlas = ExtResource("1_ft81i") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84fhx"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iegpa"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn2eg"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umd67"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pf8g"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt3jh"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj34t"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jul3p"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v5ul"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jilfk"] +atlas = ExtResource("1_ft81i") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm4l4"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4fja"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s54j2"] +atlas = ExtResource("1_ft81i") +region = Rect2(505, 707, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iylu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ded") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2tw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tdwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7djus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ruft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgb1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wakq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m25p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xewm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2te62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks6to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wlgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axd8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm34s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gtde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsgmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmnvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj1l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m36fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07rku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deex8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rww17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cil7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r40yf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2vse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnwa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gps60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dts8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgcup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht6re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgflt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftxs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym7jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a36aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80dck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyoqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k606") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7stp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyft7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cltb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxlvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmpn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylydo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un3fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27k2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxcjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0gyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b14hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t8hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw1rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hldv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6ps0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa272") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nne5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tvbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agfvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djy15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7gbr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_63vsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp4il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gyir") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw6xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22dcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2es7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqjcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pu45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbpt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77thm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itrhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trnlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxm62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg2xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84fhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iegpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn2eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umd67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pf8g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt3jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj34t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jul3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v5ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jilfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm4l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4fja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s54j2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icy.tres new file mode 100644 index 0000000..a573f75 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_icy.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://c0bqt1qk0nfrm"] + +[ext_resource type="Texture2D" uid="uid://son6y8gneynd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png" id="1_xr8ck"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_67uto"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stymw"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfq8b"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwas"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adu28"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkull"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oi1d"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k56xp"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6jcs"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5uuy"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pq8f"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn1jg"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ymf"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4mnb"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xagj6"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdh7h"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j70xk"] +atlas = ExtResource("1_xr8ck") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g34vw"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dxit"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqjy7"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp8ha"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2k84"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyui3"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q13uc"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm8wb"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mb67"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kss7"] +atlas = ExtResource("1_xr8ck") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mjtv"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpetr"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xygtr"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4g0a"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8x1w"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ysl"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sou3v"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnabh"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3gcs"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb85c"] +atlas = ExtResource("1_xr8ck") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svq7r"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptqvx"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydcqa"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6htb"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7p86"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n34hq"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moty6"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltsfq"] +atlas = ExtResource("1_xr8ck") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x11o5"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iya0"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yhv3"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvrvf"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnjbh"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_167sd"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7x68"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otbx1"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh6sp"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcjrh"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuirc"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbsxv"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwrke"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsvx7"] +atlas = ExtResource("1_xr8ck") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwx0f"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofj3j"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebnnl"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tipa2"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3bdr"] +atlas = ExtResource("1_xr8ck") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jakxy"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwr35"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ih6h"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lbm3"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13ivc"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg7sq"] +atlas = ExtResource("1_xr8ck") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plnt8"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deuuc"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x5sk"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1wgj"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b32cn"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv4qt"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poqi6"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yldje"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3orrw"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on571"] +atlas = ExtResource("1_xr8ck") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c6sm"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orlkm"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwwbw"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77mlo"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og3kc"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_607qe"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4s6p"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pi5c"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h6ss"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pxii"] +atlas = ExtResource("1_xr8ck") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_67uto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stymw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfq8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxwas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adu28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkull") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oi1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k56xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6jcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5uuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pq8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn1jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ymf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4mnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xagj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdh7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j70xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g34vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dxit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqjy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp8ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2k84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyui3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q13uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm8wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mb67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kss7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mjtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpetr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xygtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4g0a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8x1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ysl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sou3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnabh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3gcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb85c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svq7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptqvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydcqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6htb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7p86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n34hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moty6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltsfq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x11o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iya0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yhv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvrvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnjbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_167sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7x68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otbx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh6sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcjrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuirc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbsxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwrke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsvx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwx0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofj3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebnnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tipa2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3bdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jakxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwr35") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ih6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lbm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13ivc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg7sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plnt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deuuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x5sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1wgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b32cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv4qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poqi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yldje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3orrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on571") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c6sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orlkm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwwbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77mlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og3kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_607qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4s6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pi5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h6ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pxii") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ilenamk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ilenamk2.tres new file mode 100644 index 0000000..a89d78d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ilenamk2.tres @@ -0,0 +1,868 @@ +[gd_resource type="SpriteFrames" load_steps=118 format=3 uid="uid://5u6n30ijsta"] + +[ext_resource type="Texture2D" uid="uid://dtsb77ywavnwb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png" id="1_338jj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qmxx"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqj2m"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jmuu"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlr52"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thags"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqjgc"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awnu2"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11adt"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1migb"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5hmo"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq3x2"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvdfa"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leyq3"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kf8y"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbldp"] +atlas = ExtResource("1_338jj") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr0sa"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08km2"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul23w"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6qrl"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdvmi"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbref"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p8ou"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hesxp"] +atlas = ExtResource("1_338jj") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2n4e"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ix0q"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2co6"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkmuc"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rme50"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d44s"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpi3b"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mmqo"] +atlas = ExtResource("1_338jj") +region = Rect2(0, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ehh7"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxwt6"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6svi6"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtre5"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erf2s"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ea6b"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4gyx"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d21mn"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqhfu"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry32n"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cihta"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f87y2"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8vvo"] +atlas = ExtResource("1_338jj") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohguc"] +atlas = ExtResource("1_338jj") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7ywg"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt3rk"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oltbx"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooj3a"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npv27"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpyj1"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muty3"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sbin"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2g7y"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bagj7"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t1e4"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o02c"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvydh"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3cpe"] +atlas = ExtResource("1_338jj") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sex0v"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m5ey"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wck2p"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24myp"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgqay"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5yc8"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdk8v"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12moh"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_makg0"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uvjl"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phhjm"] +atlas = ExtResource("1_338jj") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54dib"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjdo3"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bcih"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wewbw"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgkcw"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq6am"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0priq"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ro8q"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdfml"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j2ph"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_618dw"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk41d"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3c2l"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o03lk"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjr1o"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqil7"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltplf"] +atlas = ExtResource("1_338jj") +region = Rect2(1008, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jepqb"] +atlas = ExtResource("1_338jj") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaw3u"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kycbk"] +atlas = ExtResource("1_338jj") +region = Rect2(1638, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n2ah"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea7qb"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3plk"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol1ln"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87ti5"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bptey"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey7tp"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lotf3"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86hdv"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5np6"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tg8a"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wn4r"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o416"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwoki"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig5g3"] +atlas = ExtResource("1_338jj") +region = Rect2(1260, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kd41"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di31r"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ls42"] +atlas = ExtResource("1_338jj") +region = Rect2(1134, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lij5l"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7ti2"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl7ol"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qxav"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xum1"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq2xd"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eshf6"] +atlas = ExtResource("1_338jj") +region = Rect2(1512, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq5km"] +atlas = ExtResource("1_338jj") +region = Rect2(1386, 882, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qmxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqj2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jmuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlr52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thags") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqjgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awnu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11adt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1migb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5hmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq3x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvdfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leyq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kf8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbldp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr0sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08km2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul23w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6qrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdvmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbref") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p8ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hesxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2n4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ix0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2co6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkmuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rme50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d44s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpi3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mmqo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ehh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxwt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6svi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtre5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erf2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ea6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4gyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d21mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqhfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry32n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cihta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f87y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8vvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohguc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7ywg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt3rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oltbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooj3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npv27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpyj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muty3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sbin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2g7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bagj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t1e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o02c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvydh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3cpe") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sex0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m5ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wck2p") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24myp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgqay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5yc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdk8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12moh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_makg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uvjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phhjm") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_54dib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjdo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bcih") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wewbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgkcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq6am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0priq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ro8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdfml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j2ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_618dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk41d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3c2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o03lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjr1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqil7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltplf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jepqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaw3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kycbk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n2ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea7qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3plk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol1ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87ti5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bptey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey7tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lotf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86hdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5np6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tg8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wn4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwoki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig5g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kd41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di31r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ls42") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lij5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7ti2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl7ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qxav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xum1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq2xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eshf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq5km") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_justice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_justice.tres new file mode 100644 index 0000000..76c9964 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_justice.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://vvcgpt5ndnk1"] + +[ext_resource type="Texture2D" uid="uid://cfvwh3yrrdnth" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png" id="1_qa4ps"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_drdpd"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtqib"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljpb6"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12dy6"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6fbi"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iynlk"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yehy"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2k5v"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unmvp"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k27qk"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atydg"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mam8"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0hnq"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxira"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50wdx"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26810"] +atlas = ExtResource("1_qa4ps") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q76dk"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfupb"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4u6g"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tolvi"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pygvx"] +atlas = ExtResource("1_qa4ps") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0rdw"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qqla"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahs07"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ydfu"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onhh1"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt2qe"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7w88"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iku6"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anmiy"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhk67"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53sfv"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgvh4"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks1j7"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mndv"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i36n"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t7co"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj7i7"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgqhq"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w44se"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxdon"] +atlas = ExtResource("1_qa4ps") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpm3o"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg261"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oft3b"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5knr"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjk58"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4o22"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be2bq"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wl54"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqns7"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqa6q"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtyn2"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gtpm"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lde81"] +atlas = ExtResource("1_qa4ps") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82c8f"] +atlas = ExtResource("1_qa4ps") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7odi"] +atlas = ExtResource("1_qa4ps") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx2ct"] +atlas = ExtResource("1_qa4ps") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5kjf"] +atlas = ExtResource("1_qa4ps") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdr3g"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7pcn"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdyq6"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at6jb"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05enh"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apb8u"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywikx"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdmfa"] +atlas = ExtResource("1_qa4ps") +region = Rect2(324, 324, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_drdpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtqib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljpb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12dy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6fbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iynlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yehy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2k5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unmvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k27qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atydg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mam8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0hnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxira") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50wdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26810") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q76dk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfupb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4u6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tolvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pygvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0rdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qqla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahs07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ydfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onhh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt2qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7w88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iku6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_anmiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhk67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53sfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgvh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks1j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mndv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i36n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t7co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj7i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgqhq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w44se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxdon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpm3o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg261") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oft3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5knr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjk58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4o22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be2bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wl54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqns7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqa6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtyn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gtpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lde81") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_82c8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7odi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx2ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5kjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdr3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7pcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdyq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at6jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05enh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apb8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywikx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdmfa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_kindredhunter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_kindredhunter.tres new file mode 100644 index 0000000..690ed1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_kindredhunter.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://c8l2dtcaudnbm"] + +[ext_resource type="Texture2D" uid="uid://d3l76wwv0ur7q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png" id="1_crr3r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_k046r"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liinj"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkx2m"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckayr"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymcfr"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcex8"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o1wu"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ld2"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa6ar"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a7d4"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvo4o"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buwag"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u00r"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e3gs"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt0fc"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6fqw"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sbhr"] +atlas = ExtResource("1_crr3r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7n2h"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nde7t"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6wn6"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g77is"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk8e8"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8copw"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scfg5"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smew0"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thp3h"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqd8n"] +atlas = ExtResource("1_crr3r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx63x"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02egp"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uccfn"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5siw"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr3vf"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob3ja"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iddxp"] +atlas = ExtResource("1_crr3r") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf4py"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1321u"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lv0l"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8lpj"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axw86"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqodn"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw0jk"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh4tu"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvcai"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eogn4"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el6t7"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqshg"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cd2s"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5115"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbs56"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i73xk"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbhto"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyt54"] +atlas = ExtResource("1_crr3r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f6js"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l61j"] +atlas = ExtResource("1_crr3r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0l1a"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chs7w"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ectnn"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf1qp"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_likba"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckqc8"] +atlas = ExtResource("1_crr3r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k25hp"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60sh8"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egka3"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoh7k"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkkpo"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77k66"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqyyw"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnhvy"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la330"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc51e"] +atlas = ExtResource("1_crr3r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k046r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liinj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkx2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckayr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymcfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcex8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o1wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ld2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa6ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a7d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvo4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buwag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u00r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e3gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt0fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6fqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sbhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7n2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nde7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6wn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g77is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk8e8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8copw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scfg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smew0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thp3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqd8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx63x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02egp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uccfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5siw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr3vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob3ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iddxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf4py") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1321u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lv0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8lpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axw86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqodn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw0jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh4tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvcai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eogn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el6t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqshg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cd2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5115") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbs56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i73xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbhto") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyt54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f6js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l61j") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0l1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chs7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ectnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf1qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_likba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckqc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k25hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60sh8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_egka3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoh7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkkpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77k66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqyyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnhvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la330") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc51e") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mech.tres new file mode 100644 index 0000000..ba51de0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mech.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://uvb31v3dq0mm"] + +[ext_resource type="Texture2D" uid="uid://ds64b6l1o515b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png" id="1_osr5o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm8cl"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y13c2"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3dih"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6bjl"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sayi0"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwgsm"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jn0v"] +atlas = ExtResource("1_osr5o") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hni2"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0re3"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eroko"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wyvl"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wifm1"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q8e1"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxq5u"] +atlas = ExtResource("1_osr5o") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5rru"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7psy"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e05xi"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31v6l"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8bvd"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydoyy"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejss1"] +atlas = ExtResource("1_osr5o") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yvrl"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1knjp"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c66a1"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yimd"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl7k8"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwyi3"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fcx7"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4reb"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awh55"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c3a8"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4f8n"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pthr"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwbn0"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1y8v"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3wtu"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uupgy"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1t5c"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_584p8"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0jb8"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n02ku"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmiuy"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qutf"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21kba"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dnlg"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haxie"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8lws"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewx1k"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h8m2"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deca4"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpq1g"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2xhv"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjuvv"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uatxc"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhavc"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcm0d"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbp6y"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47hdy"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qxwh"] +atlas = ExtResource("1_osr5o") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv0c1"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pub7"] +atlas = ExtResource("1_osr5o") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2pm3"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uju4m"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxhra"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcrjj"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjf0l"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlybr"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myv8e"] +atlas = ExtResource("1_osr5o") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3o44"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkl6t"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0kds"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyiu4"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuucp"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f27rh"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fnli"] +atlas = ExtResource("1_osr5o") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8wr1"] +atlas = ExtResource("1_osr5o") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2gef"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1ld"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vdy2"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86eis"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wddli"] +atlas = ExtResource("1_osr5o") +region = Rect2(1048, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm8cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y13c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3dih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6bjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sayi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwgsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jn0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0re3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eroko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wyvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wifm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q8e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxq5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5rru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7psy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e05xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31v6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8bvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydoyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejss1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yvrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1knjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c66a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yimd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl7k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwyi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fcx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4reb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_awh55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c3a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4f8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pthr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwbn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1y8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3wtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uupgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1t5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_584p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0jb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n02ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmiuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qutf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21kba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dnlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haxie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8lws") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewx1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h8m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deca4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpq1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2xhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjuvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uatxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhavc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcm0d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbp6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47hdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qxwh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv0c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pub7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2pm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uju4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxhra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcrjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjf0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlybr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myv8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3o44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkl6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0kds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyiu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuucp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f27rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fnli") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8wr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2gef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vdy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86eis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wddli") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_minitreant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_minitreant.tres new file mode 100644 index 0000000..0f3581e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_minitreant.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://5f3mxa7rvqky"] + +[ext_resource type="Texture2D" uid="uid://cdiqokds2g1hc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png" id="1_lb8aj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyx3d"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o0tm"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlp0t"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpdap"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpvg5"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g51dy"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w7w0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8kp5"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfowv"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy7xe"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdptb"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwxip"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mflg8"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf2ld"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br6p0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7ate"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i108"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu2w3"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m33p"] +atlas = ExtResource("1_lb8aj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbgjl"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mrav"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l65hj"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6db5b"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbplw"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcmnd"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea06h"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vt41"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0uqq"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjjdq"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbfhq"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4cyo"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3lso"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fit6o"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvd2t"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb1wq"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us13c"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siqjs"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic1w0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qypn"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrdbn"] +atlas = ExtResource("1_lb8aj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy3ms"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dif2o"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7l7j"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw80y"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me4gx"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tuln"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u42in"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byyrd"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyou1"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q17k0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l53yt"] +atlas = ExtResource("1_lb8aj") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv3s7"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc1kp"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc6u0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1bjv"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj60s"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uis6c"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abluj"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lciml"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54lvw"] +atlas = ExtResource("1_lb8aj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spwt1"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjkki"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va63q"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufw4f"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpn8q"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d22kp"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmak1"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkugr"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hgqg"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h441r"] +atlas = ExtResource("1_lb8aj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sabbb"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hemvd"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx122"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uolp"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwdl8"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33y1k"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w5n0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6icas"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_581o2"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca41h"] +atlas = ExtResource("1_lb8aj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhxgr"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on32c"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5c07"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayy68"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw1f4"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbw7r"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nohrx"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1yxj"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t86yu"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk4h0"] +atlas = ExtResource("1_lb8aj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyx3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o0tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlp0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpdap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpvg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g51dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w7w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8kp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfowv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy7xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdptb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwxip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mflg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf2ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br6p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7ate") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i108") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu2w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m33p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbgjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mrav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l65hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6db5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbplw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcmnd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea06h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vt41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0uqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjjdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbfhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4cyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3lso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fit6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvd2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb1wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us13c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siqjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic1w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qypn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrdbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy3ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dif2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7l7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw80y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me4gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tuln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u42in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byyrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyou1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q17k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l53yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv3s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc1kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc6u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1bjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj60s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uis6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lciml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54lvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spwt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjkki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va63q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufw4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpn8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d22kp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmak1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkugr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hgqg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h441r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sabbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hemvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx122") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uolp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwdl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33y1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w5n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6icas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_581o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca41h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhxgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on32c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5c07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayy68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw1f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbw7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nohrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1yxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t86yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk4h0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_motherofdrakes.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_motherofdrakes.tres new file mode 100644 index 0000000..d23ca52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_motherofdrakes.tres @@ -0,0 +1,671 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://ca3lomben88sb"] + +[ext_resource type="Texture2D" uid="uid://3qje0ijbff02" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png" id="1_ysbik"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bj07"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2s6b"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06pwp"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f22gy"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk814"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1b2l"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3us4"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miwll"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lj6j"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nhg3"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qtvo"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t2hj"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5nfv"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om7es"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkva5"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dssid"] +atlas = ExtResource("1_ysbik") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yilx"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tahrm"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el27i"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkfva"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg4b5"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gejkx"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md53q"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoqp3"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r22qw"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0aku"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmser"] +atlas = ExtResource("1_ysbik") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqawi"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18k3u"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv3ln"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtbn7"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42c66"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heb1l"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj1b5"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyd4v"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uj8d"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0m11"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iogg4"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll1u6"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xnmi"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sivo6"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsnes"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu6vo"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knns2"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4a3p"] +atlas = ExtResource("1_ysbik") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b531r"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bencm"] +atlas = ExtResource("1_ysbik") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ji6v"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27lau"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5iuc"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngmvy"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vr85"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1bio"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfnuc"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx4gl"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ybom"] +atlas = ExtResource("1_ysbik") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra1jq"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpnvl"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq4ty"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v4hg"] +atlas = ExtResource("1_ysbik") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6yi2"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbapl"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vga67"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_533gg"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_posw1"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6p11"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nslxo"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ep6"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4o4m"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv4da"] +atlas = ExtResource("1_ysbik") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e31gs"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cacu6"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjy1c"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1htli"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdj8l"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbodh"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxbew"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxdra"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuogm"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjcjb"] +atlas = ExtResource("1_ysbik") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56qpx"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvojt"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28sf8"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7ols"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0o2c"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbdsu"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw5cr"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqbvg"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1agw"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqta3"] +atlas = ExtResource("1_ysbik") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bj07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2s6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06pwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f22gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk814") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1b2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3us4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miwll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lj6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nhg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qtvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t2hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5nfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om7es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkva5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dssid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yilx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tahrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el27i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkfva") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg4b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gejkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md53q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoqp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r22qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0aku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmser") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqawi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18k3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv3ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtbn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42c66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heb1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj1b5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyd4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uj8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0m11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iogg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll1u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xnmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sivo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsnes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu6vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knns2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4a3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b531r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bencm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ji6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27lau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5iuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngmvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vr85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1bio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfnuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx4gl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ybom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra1jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpnvl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq4ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v4hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6yi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbapl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vga67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_533gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_posw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6p11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nslxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ep6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4o4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv4da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e31gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cacu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjy1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1htli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdj8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbodh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxbew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxdra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuogm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjcjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56qpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvojt") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_28sf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7ols") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0o2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbdsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw5cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqbvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1agw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqta3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_myriad.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_myriad.tres new file mode 100644 index 0000000..a6867cc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_myriad.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://bytn5bpo6g8td"] + +[ext_resource type="Texture2D" uid="uid://52u7hoo5qgwo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png" id="1_ys3ch"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqnll"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lg24"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p0n3"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sam1d"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b586"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkuqi"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leyp0"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td515"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibugm"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1faj"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwhn0"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ehue"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt44w"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs16s"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scn78"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00nd2"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yao8a"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc878"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tb00"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnjua"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1knh"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skpjo"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdhv0"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unyj4"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk20i"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tr1y"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq02s"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8jjf"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsjhl"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22ovb"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsngb"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu2yo"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t7mv"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5000h"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnpjk"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4keb2"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjj6a"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gvgk"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80eno"] +atlas = ExtResource("1_ys3ch") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jyq2"] +atlas = ExtResource("1_ys3ch") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8fln"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbqvm"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kp2x"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y26cx"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so6l3"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dkyd"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khw5a"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcfme"] +atlas = ExtResource("1_ys3ch") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fltg"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pijxn"] +atlas = ExtResource("1_ys3ch") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_div1d"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlogy"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icqj3"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvmpx"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4etk"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tani"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ks3"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk6ay"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72eeu"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqge1"] +atlas = ExtResource("1_ys3ch") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7wi8"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6os6"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ht6i"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x87p3"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snis0"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mphh"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l84xw"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buy2h"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4cm2"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u6oi"] +atlas = ExtResource("1_ys3ch") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqnll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lg24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p0n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sam1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b586") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkuqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leyp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td515") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibugm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1faj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwhn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ehue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt44w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs16s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scn78") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_00nd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yao8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tb00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnjua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1knh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skpjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdhv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unyj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk20i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tr1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq02s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8jjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsjhl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_22ovb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsngb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu2yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t7mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5000h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnpjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4keb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjj6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gvgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80eno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jyq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8fln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbqvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kp2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y26cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so6l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dkyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khw5a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcfme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fltg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pijxn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_div1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlogy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icqj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvmpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4etk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tani") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ks3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk6ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72eeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqge1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7wi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6os6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ht6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x87p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snis0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mphh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l84xw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buy2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4cm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u6oi") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mythronquest.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mythronquest.tres new file mode 100644 index 0000000..4610dc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_mythronquest.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://du6jmbl2ht8pf"] + +[ext_resource type="Texture2D" uid="uid://dphmx0imhtis2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png" id="1_4xe7c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouhb2"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wry0t"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13kei"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a641o"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwb5a"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gscu1"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx6sh"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61gip"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx7o7"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psfam"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dt6c"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gugmg"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du37e"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb8q6"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j5jd"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umvvi"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fre8"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssxsk"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dvyj"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yeqq"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbwg2"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx43x"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rxv0"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw63k"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmg0v"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtotm"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msvi5"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhvld"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkgsc"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drnyf"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onbde"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b70i2"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k44o1"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esw27"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyfww"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd3wr"] +atlas = ExtResource("1_4xe7c") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nevbd"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_165pi"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_latuf"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw2so"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl5kt"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqday"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsq35"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mewr"] +atlas = ExtResource("1_4xe7c") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67jpk"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3f2n"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unbrp"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maxia"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg4fr"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dkl0"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj3xr"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha4wg"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd6af"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twnj8"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b4q6"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xntbd"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frq2m"] +atlas = ExtResource("1_4xe7c") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n21gl"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5upbd"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghfb0"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydhvi"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rim0k"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbogt"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g11qk"] +atlas = ExtResource("1_4xe7c") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32kxt"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x57ak"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydk22"] +atlas = ExtResource("1_4xe7c") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nqn4"] +atlas = ExtResource("1_4xe7c") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw4r7"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xun7a"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7ayb"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hajbs"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okhdd"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vms2"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kjfi"] +atlas = ExtResource("1_4xe7c") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5nmv"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qr78"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50u0y"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prc25"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydsep"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7co1c"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yioix"] +atlas = ExtResource("1_4xe7c") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rqss"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h3dw"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v8vb"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg7qo"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im542"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43n15"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrbhr"] +atlas = ExtResource("1_4xe7c") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouhb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wry0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13kei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a641o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwb5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gscu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx6sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61gip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx7o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psfam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dt6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gugmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du37e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb8q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j5jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umvvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fre8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssxsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dvyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yeqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbwg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx43x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rxv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw63k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmg0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtotm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_msvi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhvld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkgsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drnyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onbde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b70i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k44o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esw27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyfww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd3wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nevbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_165pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_latuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw2so") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl5kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqday") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsq35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mewr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67jpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3f2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unbrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maxia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg4fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dkl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj3xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha4wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd6af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twnj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b4q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xntbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frq2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n21gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5upbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghfb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydhvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rim0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbogt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g11qk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_32kxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x57ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydk22") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nqn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw4r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xun7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7ayb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hajbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okhdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vms2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kjfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5nmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qr78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50u0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prc25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydsep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7co1c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yioix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rqss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h3dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v8vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg7qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im542") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43n15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrbhr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_perfectreflection.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_perfectreflection.tres new file mode 100644 index 0000000..0fcfec1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_perfectreflection.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://dmj7bsftsl2qg"] + +[ext_resource type="Texture2D" uid="uid://cu27odx54eota" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png" id="1_m5ouu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cu0l"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysf64"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxxfu"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6jca"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyi20"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p3og"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr3qi"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjs1o"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u57w"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syvly"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vmw8"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwkd5"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfpsm"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls651"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gkw3"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00ni0"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwdjt"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh3lq"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7b3x"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7lf4"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s34y"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rry55"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa4f0"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glwr3"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqw1a"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu1t1"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqj3p"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me568"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkbia"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7g8r"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2qu2"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhla1"] +atlas = ExtResource("1_m5ouu") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6dkb"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej1h3"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eomev"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upomd"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clcqx"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l6o8"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqffu"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtjks"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etdac"] +atlas = ExtResource("1_m5ouu") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk4mu"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0futl"] +atlas = ExtResource("1_m5ouu") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rko7v"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1tvs"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1urfe"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aadv"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pie0i"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gg6x"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gsf5"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aildq"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuely"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ddi"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeqsk"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g02uv"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sac66"] +atlas = ExtResource("1_m5ouu") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61k24"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8v6a"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5hjn"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_almny"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjg2c"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmren"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7neth"] +atlas = ExtResource("1_m5ouu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnjbf"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6glt"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm1qb"] +atlas = ExtResource("1_m5ouu") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evxde"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jpg7"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c3tl"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j40ka"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gsqi"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv13k"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8xm4"] +atlas = ExtResource("1_m5ouu") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uca0"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctp3j"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fi1r"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk4lt"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luh6o"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6sly"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1ffw"] +atlas = ExtResource("1_m5ouu") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skte4"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2tjo"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45xmx"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1hmd"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb5ur"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hyxy"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od442"] +atlas = ExtResource("1_m5ouu") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cu0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysf64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxxfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6jca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyi20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p3og") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr3qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjs1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u57w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syvly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vmw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwkd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfpsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls651") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gkw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00ni0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwdjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh3lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7b3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7lf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s34y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rry55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa4f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glwr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqw1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu1t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqj3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me568") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkbia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7g8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2qu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhla1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6dkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej1h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eomev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upomd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clcqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l6o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqffu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtjks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etdac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk4mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0futl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rko7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1tvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1urfe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aadv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pie0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gg6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gsf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aildq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuely") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeqsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g02uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sac66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61k24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8v6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5hjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_almny") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjg2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmren") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7neth") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnjbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6glt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm1qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evxde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jpg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c3tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j40ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gsqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv13k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8xm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uca0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctp3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fi1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk4lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luh6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6sly") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1ffw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skte4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2tjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45xmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1hmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb5ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hyxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od442") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ravager.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ravager.tres new file mode 100644 index 0000000..0bcae3c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ravager.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://cvfoqutme1rb1"] + +[ext_resource type="Texture2D" uid="uid://hi26vjjmccf2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png" id="1_6gk2l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ijcc"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bderr"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vpsp"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0lm2"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg3kp"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clq7l"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh2gd"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3yvo"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x711o"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87mno"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lixc1"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mvf2"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ijf"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3gn7"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nbar"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwprb"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhvlf"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofxr6"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkqcp"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru8p6"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6jsp"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ipyj"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1dr"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa7ld"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t3uq"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kjhi"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6wg8"] +atlas = ExtResource("1_6gk2l") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwit4"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fouf4"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6heuv"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mufr3"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbymw"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ul5"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3s03"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ee4v"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcgu5"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bcqd"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vesbb"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deene"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t1hm"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoelh"] +atlas = ExtResource("1_6gk2l") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu5mj"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2f6r"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mikvg"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eml6g"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urttg"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uo1h"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b88rr"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ga8j"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj7n3"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6q8y"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg525"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woyjm"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg822"] +atlas = ExtResource("1_6gk2l") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v6vo"] +atlas = ExtResource("1_6gk2l") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwcmp"] +atlas = ExtResource("1_6gk2l") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ugi0"] +atlas = ExtResource("1_6gk2l") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amqdn"] +atlas = ExtResource("1_6gk2l") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmra5"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7knh"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2yq8"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik2nd"] +atlas = ExtResource("1_6gk2l") +region = Rect2(243, 648, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ijcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bderr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vpsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0lm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg3kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clq7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh2gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3yvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x711o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87mno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lixc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mvf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ijf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3gn7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nbar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwprb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhvlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofxr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkqcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru8p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6jsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ipyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa7ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t3uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kjhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6wg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwit4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fouf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6heuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mufr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbymw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ul5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3s03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ee4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcgu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bcqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vesbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deene") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t1hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoelh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu5mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2f6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mikvg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eml6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urttg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uo1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b88rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ga8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj7n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6q8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg525") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woyjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg822") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v6vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwcmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ugi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amqdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmra5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7knh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2yq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik2nd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_seismicelemental.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_seismicelemental.tres new file mode 100644 index 0000000..4452983 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_seismicelemental.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://crgn5vppbst5b"] + +[ext_resource type="Texture2D" uid="uid://bi3dovarx1rt3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png" id="1_kdfyp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8dht"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lohx4"] +atlas = ExtResource("1_kdfyp") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_146ls"] +atlas = ExtResource("1_kdfyp") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yggh"] +atlas = ExtResource("1_kdfyp") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj3as"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qun7"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uykk"] +atlas = ExtResource("1_kdfyp") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q37yw"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncc5s"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rv47"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yphjl"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i22vn"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fqco"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wudya"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf0vu"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7soi"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjnva"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jgnf"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qdy7"] +atlas = ExtResource("1_kdfyp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdlfr"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sbxb"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5kuj"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptoqj"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6w4h"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x8mp"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0cqg"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6gyl"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qigss"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v53aw"] +atlas = ExtResource("1_kdfyp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywp0b"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg1ew"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyxou"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stoit"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt7b6"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn57t"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufrc7"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlrc3"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk40k"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wryuo"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2qcm"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84ivc"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcucd"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flmyt"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14q6"] +atlas = ExtResource("1_kdfyp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r1sg"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s4nk"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf6d6"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6tes"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njgen"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uackg"] +atlas = ExtResource("1_kdfyp") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhjsj"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1wg4"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nysxf"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia1cl"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tseae"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vom8c"] +atlas = ExtResource("1_kdfyp") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxu50"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri0e2"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygdvc"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wryu"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxj38"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elctf"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp8m5"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xffot"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nadyl"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sivlr"] +atlas = ExtResource("1_kdfyp") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7rju"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptol7"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71d7a"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrnw7"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjjtb"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56uye"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85ymg"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x2iu"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyca1"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_655uf"] +atlas = ExtResource("1_kdfyp") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de524"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a6nx"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ondfa"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dixgq"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j10pc"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnotc"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83pdx"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lu35"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrh17"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g6cs"] +atlas = ExtResource("1_kdfyp") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8dht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lohx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_146ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yggh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj3as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qun7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uykk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q37yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncc5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rv47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yphjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i22vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fqco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wudya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf0vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7soi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjnva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jgnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qdy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdlfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sbxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5kuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptoqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6w4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x8mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0cqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6gyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qigss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v53aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywp0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg1ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyxou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stoit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt7b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn57t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufrc7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlrc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk40k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wryuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2qcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84ivc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcucd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flmyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r1sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s4nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf6d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6tes") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_njgen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uackg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhjsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1wg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nysxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia1cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tseae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vom8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxu50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri0e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygdvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wryu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxj38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elctf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp8m5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xffot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nadyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sivlr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7rju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptol7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71d7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrnw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjjtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56uye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85ymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x2iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyca1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_655uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de524") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a6nx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ondfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dixgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j10pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnotc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83pdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lu35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrh17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g6cs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sentinel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sentinel.tres new file mode 100644 index 0000000..48774cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sentinel.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://df5cnac2ieejl"] + +[ext_resource type="Texture2D" uid="uid://bpknabekyvskb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png" id="1_q0mnn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyd5c"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_350n7"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r58ye"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlrln"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p25i"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82hnh"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_865nf"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uee31"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smuh5"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_535gr"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6232m"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7psa0"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vnbt"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sydl"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51ddu"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ay7y"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cvv5"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3i3p"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja8t2"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2gia"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my6wx"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utmhq"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upo6e"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rchh6"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyjmv"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3vlh"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxy55"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojd8s"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt4dd"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d36ca"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvhmg"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvv0p"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frfaf"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hkvo"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfk3m"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x40d3"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_res5k"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db7aj"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emth0"] +atlas = ExtResource("1_q0mnn") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5droj"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsp2g"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi36d"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvbj0"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pdfc"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qrfd"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgo7u"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pixdf"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy11v"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p775j"] +atlas = ExtResource("1_q0mnn") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg38s"] +atlas = ExtResource("1_q0mnn") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr8kj"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvm3v"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyvli"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bbi3"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6kss"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh7kh"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo0q5"] +atlas = ExtResource("1_q0mnn") +region = Rect2(243, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyd5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_350n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r58ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlrln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p25i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82hnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_865nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uee31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smuh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_535gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6232m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7psa0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vnbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sydl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51ddu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ay7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cvv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3i3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja8t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2gia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my6wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utmhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upo6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rchh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyjmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3vlh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxy55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojd8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt4dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d36ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvhmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvv0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frfaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hkvo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfk3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x40d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_res5k") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_db7aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emth0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5droj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsp2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi36d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvbj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pdfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qrfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgo7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pixdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy11v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p775j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg38s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr8kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvm3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyvli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bbi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6kss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh7kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo0q5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_shadowvespyr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_shadowvespyr.tres new file mode 100644 index 0000000..87c5787 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_shadowvespyr.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://bcmeihfirkiai"] + +[ext_resource type="Texture2D" uid="uid://qs8fnjevpopw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png" id="1_ms6o4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5nv1"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5enw"] +atlas = ExtResource("1_ms6o4") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es8fc"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5snr3"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5fb8"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6x7b"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf10p"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vn4y"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d0be"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0kuj"] +atlas = ExtResource("1_ms6o4") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkgu7"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckiya"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj7pu"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pnir"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yimw1"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx4o5"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3w02"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk7hg"] +atlas = ExtResource("1_ms6o4") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgh17"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmatk"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b2f4"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b43ui"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mck5p"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_578dg"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lsu8"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6bwv"] +atlas = ExtResource("1_ms6o4") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmrl7"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beinh"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8apg"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h6vs"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4y4w"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53of8"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ty5v"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bol6r"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qu20"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxxfg"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uwyp"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7cuc"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nmda"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srwro"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqc6"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbo7i"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smejy"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mceun"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfe4o"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e2eb"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb8xn"] +atlas = ExtResource("1_ms6o4") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6bgu"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1reb"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4qbm"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umh5q"] +atlas = ExtResource("1_ms6o4") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pped2"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs1pu"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gitly"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4ed0"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pniv"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwf1a"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dee5q"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctf7b"] +atlas = ExtResource("1_ms6o4") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbstj"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24ier"] +atlas = ExtResource("1_ms6o4") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj10h"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4h6y"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0swx8"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0hss"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2ay2"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5mwa"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytoi3"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgx2m"] +atlas = ExtResource("1_ms6o4") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksi7e"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_587ya"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd386"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mxh2"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0bke"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddwo1"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uocb3"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wcp0"] +atlas = ExtResource("1_ms6o4") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snubn"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdc47"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6o2v"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d75j7"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o4eh"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka3of"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmdi0"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_452pi"] +atlas = ExtResource("1_ms6o4") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5nv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5enw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es8fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5snr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5fb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6x7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf10p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vn4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d0be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0kuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkgu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckiya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj7pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pnir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yimw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx4o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3w02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk7hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgh17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmatk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b2f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b43ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mck5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_578dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lsu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6bwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmrl7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_beinh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8apg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h6vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4y4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53of8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ty5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bol6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qu20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxxfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uwyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7cuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nmda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srwro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqc6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbo7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smejy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mceun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfe4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e2eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb8xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6bgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1reb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4qbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umh5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pped2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs1pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gitly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4ed0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pniv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwf1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dee5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctf7b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbstj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24ier") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj10h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4h6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0swx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0hss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2ay2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5mwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytoi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgx2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksi7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_587ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd386") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mxh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0bke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddwo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uocb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wcp0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_snubn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdc47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6o2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d75j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o4eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka3of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmdi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_452pi") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sinergyunit.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sinergyunit.tres new file mode 100644 index 0000000..f5219b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sinergyunit.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://cta0bedok10lp"] + +[ext_resource type="Texture2D" uid="uid://be7byj55uak7p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png" id="1_pm30m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l88n6"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnbb0"] +atlas = ExtResource("1_pm30m") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otp3s"] +atlas = ExtResource("1_pm30m") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5eddj"] +atlas = ExtResource("1_pm30m") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2n37"] +atlas = ExtResource("1_pm30m") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uy5a"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7c2f"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kinb"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqi6v"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv14u"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1ggf"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvhkf"] +atlas = ExtResource("1_pm30m") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojy8y"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lh1m"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwrpo"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8diq"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltx81"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxdl6"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx3wt"] +atlas = ExtResource("1_pm30m") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccxjh"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxy5i"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap7kk"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aumj2"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m2ls"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctcpb"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1i0f"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skkng"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cupno"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxuj0"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82dtm"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40tc0"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vwt0"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn3a1"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owmdp"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h36ol"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6ujx"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pmve"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34otf"] +atlas = ExtResource("1_pm30m") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soed2"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw0i3"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eu0q"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd8lq"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxxvu"] +atlas = ExtResource("1_pm30m") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvqho"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0f7e"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpdni"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhvog"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ymdo"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsi2f"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c18ur"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0get5"] +atlas = ExtResource("1_pm30m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwvw7"] +atlas = ExtResource("1_pm30m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blr5c"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xnwj"] +atlas = ExtResource("1_pm30m") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeboe"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kpj5"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdjga"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nay22"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ik0s"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epdj2"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg5yp"] +atlas = ExtResource("1_pm30m") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be4tv"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxtwt"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3dlo"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1ajh"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egehx"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmfuc"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjj50"] +atlas = ExtResource("1_pm30m") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq0hv"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxly6"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdmfp"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hra1f"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiu0l"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aamq5"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfya8"] +atlas = ExtResource("1_pm30m") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l88n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnbb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otp3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5eddj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2n37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uy5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7c2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kinb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqi6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv14u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1ggf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvhkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojy8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lh1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwrpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8diq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltx81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxdl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx3wt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccxjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxy5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap7kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aumj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m2ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctcpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1i0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skkng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cupno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxuj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82dtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40tc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vwt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn3a1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_owmdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h36ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6ujx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pmve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34otf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soed2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw0i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eu0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd8lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxxvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvqho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0f7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpdni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhvog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ymdo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsi2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c18ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0get5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwvw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blr5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xnwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeboe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kpj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdjga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nay22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ik0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epdj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg5yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be4tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxtwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3dlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1ajh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egehx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmfuc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjj50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq0hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxly6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdmfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hra1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiu0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aamq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfya8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sister.tres new file mode 100644 index 0000000..cd4e954 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sister.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://mgvauy54a5u7"] + +[ext_resource type="Texture2D" uid="uid://cj1n3k52e78oi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png" id="1_8jppb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_031q7"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1nth"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c1sb"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmcjf"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt4nm"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp43b"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68j2l"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15n3p"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yomit"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to8gq"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx4wk"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qdox"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ednvf"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ip0k"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mydj1"] +atlas = ExtResource("1_8jppb") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elww2"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmmcl"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g34yc"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5f4c"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkg2e"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fon8s"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tymi"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eysy"] +atlas = ExtResource("1_8jppb") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad8fh"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leia8"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yir34"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr531"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd3l0"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cn1c"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjt0p"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16812"] +atlas = ExtResource("1_8jppb") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7jn8"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpb1f"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu8rn"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6ajo"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rwac"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xpw7"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uw5e"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjqm7"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fywwm"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb4ww"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugbbw"] +atlas = ExtResource("1_8jppb") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4sjp"] +atlas = ExtResource("1_8jppb") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_166p8"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kebpc"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ad0v"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug7do"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4hu2"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttvvq"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fv7i"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8jf4"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw860"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rakg"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jb2d"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl0ka"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_681sm"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q85ig"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxqwx"] +atlas = ExtResource("1_8jppb") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3jrg"] +atlas = ExtResource("1_8jppb") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrlx2"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfe6b"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hr0v"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxwvn"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvm07"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr8fp"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4fg3"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbcod"] +atlas = ExtResource("1_8jppb") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ilhi"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh6th"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kebc"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqqjs"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beduk"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnbaq"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f18l"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhc16"] +atlas = ExtResource("1_8jppb") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbbg4"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8nq"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp7do"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4208"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei7rk"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2suta"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yihsd"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04sat"] +atlas = ExtResource("1_8jppb") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_031q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1nth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c1sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmcjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt4nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp43b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68j2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15n3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yomit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to8gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx4wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qdox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ednvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ip0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mydj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elww2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmmcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g34yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5f4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkg2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fon8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tymi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eysy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad8fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leia8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yir34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr531") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd3l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cn1c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjt0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16812") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7jn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpb1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu8rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6ajo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rwac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xpw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uw5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjqm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fywwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb4ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugbbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4sjp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_166p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kebpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ad0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug7do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4hu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttvvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fv7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8jf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw860") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rakg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jb2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl0ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_681sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q85ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxqwx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3jrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrlx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfe6b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hr0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxwvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvm07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr8fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4fg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbcod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ilhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh6th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kebc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqqjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beduk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnbaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f18l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhc16") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbbg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp7do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4208") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei7rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2suta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yihsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04sat") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sleetdasher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sleetdasher.tres new file mode 100644 index 0000000..72fc168 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_sleetdasher.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://blquuqole8nk6"] + +[ext_resource type="Texture2D" uid="uid://chw7rxc27vu2y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png" id="1_ogjtt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae10f"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ke16"] +atlas = ExtResource("1_ogjtt") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ved"] +atlas = ExtResource("1_ogjtt") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j28rl"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giirp"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0vxm"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vl2m"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovr4b"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doqos"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po313"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq3dm"] +atlas = ExtResource("1_ogjtt") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpgpe"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwcsd"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4ukv"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38kg4"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5lcy"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlgrr"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ke1g"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtmj1"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35lsa"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn5lf"] +atlas = ExtResource("1_ogjtt") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idwt5"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s806"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep48w"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mwyr"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi47u"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21658"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5tw7"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr5iw"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlhwe"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep57i"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taste"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07jbq"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucrwd"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p8ak"] +atlas = ExtResource("1_ogjtt") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i1tg"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bafur"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m2ie"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m60rs"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6yr3"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy2m5"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vouax"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri8l2"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5yyh"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp8qq"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwxos"] +atlas = ExtResource("1_ogjtt") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oahtb"] +atlas = ExtResource("1_ogjtt") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a44a"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65bq6"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slfpl"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ompk"] +atlas = ExtResource("1_ogjtt") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6sse"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leqni"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_185p8"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3v4u"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80okr"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaa7s"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eixb0"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f55ir"] +atlas = ExtResource("1_ogjtt") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2eql"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq4w1"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yohao"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn27q"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrvv3"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqnmn"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo5cy"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk8p2"] +atlas = ExtResource("1_ogjtt") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae10f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ke16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ved") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j28rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giirp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0vxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vl2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovr4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doqos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po313") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq3dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpgpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwcsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4ukv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38kg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5lcy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlgrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ke1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtmj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35lsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn5lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idwt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s806") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep48w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mwyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi47u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21658") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5tw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr5iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlhwe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep57i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taste") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07jbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucrwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p8ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i1tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bafur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m2ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m60rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6yr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy2m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vouax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri8l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5yyh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp8qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwxos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oahtb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a44a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65bq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slfpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ompk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6sse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leqni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_185p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3v4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80okr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaa7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eixb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f55ir") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2eql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq4w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yohao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn27q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrvv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqnmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo5cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk8p2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchaser.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchaser.tres new file mode 100644 index 0000000..cbc638f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchaser.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://bj6en0k8j1o6m"] + +[ext_resource type="Texture2D" uid="uid://cwchnnplmdd8w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png" id="1_44g5b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks8ue"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjd5c"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjade"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0roaj"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oedmq"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtc18"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8ha3"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5cyy"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62p8g"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8qke"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hddk"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0sxm"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r64nx"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7qyq"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqjrs"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vym7q"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccxej"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc1se"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e5ar"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v65v"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm0rx"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a11b"] +atlas = ExtResource("1_44g5b") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm2yn"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08syt"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yje17"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x17db"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jklnh"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnf14"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ghqn"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnpw0"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa2p7"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndrnf"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdnwu"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yp4r"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrhdh"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mrwv"] +atlas = ExtResource("1_44g5b") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je7iw"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk5w3"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o538"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l656p"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpoc6"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdpwx"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4gv7"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uepaa"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo0qh"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuebx"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq4wm"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6mry"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esghd"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edwu2"] +atlas = ExtResource("1_44g5b") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgqsu"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0b1e"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sft0"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv5or"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klwh6"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1scy"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_180xu"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2khsw"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnvy3"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w3ol"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0qdh"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1uq5"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxc0l"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah8oi"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4qdu"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr5we"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1020"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t08v5"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ttb"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs3gk"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxgdx"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evibf"] +atlas = ExtResource("1_44g5b") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqheb"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kj76"] +atlas = ExtResource("1_44g5b") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpfqv"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a16yf"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2opc8"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa1nw"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmqfe"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqofd"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlqwx"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7guc2"] +atlas = ExtResource("1_44g5b") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks8ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjd5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjade") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0roaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oedmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtc18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8ha3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5cyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62p8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8qke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hddk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0sxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r64nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7qyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqjrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vym7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccxej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc1se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e5ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v65v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm0rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a11b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm2yn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_08syt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yje17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x17db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jklnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnf14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ghqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnpw0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa2p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndrnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdnwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yp4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrhdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mrwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je7iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk5w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o538") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l656p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpoc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdpwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4gv7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uepaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo0qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuebx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq4wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6mry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esghd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edwu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgqsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0b1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sft0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv5or") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_klwh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1scy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_180xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2khsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnvy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w3ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0qdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1uq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxc0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah8oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4qdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr5we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1020") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t08v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ttb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs3gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxgdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evibf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqheb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kj76") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpfqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a16yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2opc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa1nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmqfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqofd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlqwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7guc2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchasermk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchasermk2.tres new file mode 100644 index 0000000..ade1200 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowchasermk2.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://b2ydxdj2eyr66"] + +[ext_resource type="Texture2D" uid="uid://c02bd5fpa4xio" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png" id="1_ciqbh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0584h"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ty5"] +atlas = ExtResource("1_ciqbh") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr1wt"] +atlas = ExtResource("1_ciqbh") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg37f"] +atlas = ExtResource("1_ciqbh") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nog2l"] +atlas = ExtResource("1_ciqbh") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38xev"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk11x"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6utly"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b4ks"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nqh5"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w1yn"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o12ng"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucast"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihynk"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w24a"] +atlas = ExtResource("1_ciqbh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyhhe"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kss8e"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut4nn"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86qlk"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1t7o"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7c08"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xets2"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jivsy"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6k1v"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqe4p"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xsej"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqqag"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4c5a"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88wx5"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mr57"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir7qm"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxoco"] +atlas = ExtResource("1_ciqbh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opadd"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37vsm"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igmwe"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eriuw"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sluxy"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6njgo"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wwhk"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oa20"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjoji"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1paer"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueb17"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scblk"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2b6y"] +atlas = ExtResource("1_ciqbh") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abl4q"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swey2"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jvbi"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj6rl"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_son31"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3wst"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5frb"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3545"] +atlas = ExtResource("1_ciqbh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc44f"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqoq6"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnsfc"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr1q4"] +atlas = ExtResource("1_ciqbh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lkxf"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dl4g"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioe0l"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eus0f"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl4fe"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nv7h"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiu75"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak01p"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf086"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bhd8"] +atlas = ExtResource("1_ciqbh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1k4"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_404wt"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnlyk"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv40s"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmn2i"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v57tp"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sfm5"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnmcv"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0lti"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahp3q"] +atlas = ExtResource("1_ciqbh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vucnb"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr44p"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6810j"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbeky"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5ae4"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bms2"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyx5b"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hroxu"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l1co"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6njp"] +atlas = ExtResource("1_ciqbh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0584h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ty5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr1wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg37f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nog2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38xev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk11x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6utly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b4ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nqh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w1yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o12ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucast") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihynk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w24a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyhhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kss8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut4nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86qlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1t7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7c08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xets2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jivsy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6k1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqe4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xsej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqqag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4c5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88wx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mr57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir7qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxoco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opadd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37vsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igmwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eriuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sluxy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6njgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wwhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oa20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjoji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1paer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueb17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scblk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2b6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abl4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swey2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jvbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj6rl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_son31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3wst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5frb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3545") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc44f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqoq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnsfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr1q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lkxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dl4g") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioe0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eus0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl4fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nv7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiu75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak01p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf086") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bhd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_404wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnlyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv40s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmn2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v57tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sfm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnmcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0lti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahp3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vucnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr44p") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6810j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbeky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5ae4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bms2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyx5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hroxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l1co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6njp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowman.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowman.tres new file mode 100644 index 0000000..fa537aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowman.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://k5vwu0p1p8h"] + +[ext_resource type="Texture2D" uid="uid://o8gn5vh2dws7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png" id="1_kjjth"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7al3v"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3giwn"] +atlas = ExtResource("1_kjjth") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoo3a"] +atlas = ExtResource("1_kjjth") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc0ck"] +atlas = ExtResource("1_kjjth") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50jh1"] +atlas = ExtResource("1_kjjth") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64i8e"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imk2n"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6hp5"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqqkm"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv7xv"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu4g5"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcpqw"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2nqg"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa4lh"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tawg"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij2kl"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj8bp"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p3fn"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il74v"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp27r"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gt8h"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xot8"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jl88"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbhes"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbhmj"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abeyw"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4agkx"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2dv7"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bf1m"] +atlas = ExtResource("1_kjjth") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmplj"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64fua"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vs3p"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_218ep"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xavo"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqfr6"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66m1e"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do2e5"] +atlas = ExtResource("1_kjjth") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiggs"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ucxf"] +atlas = ExtResource("1_kjjth") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y0fw"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5207f"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p70au"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u55h"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y844g"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlgxb"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twcua"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub0i4"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkh13"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv8fi"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e65db"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dywg"] +atlas = ExtResource("1_kjjth") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gi3w"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwp03"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck2sx"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faw2x"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqwq7"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vebw"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa0ct"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm4m7"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqcon"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s23yu"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v0l2"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7e1i"] +atlas = ExtResource("1_kjjth") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7al3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3giwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoo3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc0ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50jh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64i8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imk2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6hp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqqkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv7xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu4g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcpqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2nqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa4lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tawg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij2kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj8bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p3fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il74v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp27r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gt8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xot8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jl88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbhes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbhmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abeyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4agkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2dv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bf1m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmplj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64fua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vs3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_218ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xavo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqfr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66m1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do2e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiggs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ucxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y0fw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5207f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p70au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u55h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y844g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlgxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twcua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub0i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkh13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv8fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e65db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dywg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gi3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwp03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck2sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faw2x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqwq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vebw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa0ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm4m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqcon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s23yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v0l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7e1i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowrippler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowrippler.tres new file mode 100644 index 0000000..36f11bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowrippler.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://b6dgnpw52mhns"] + +[ext_resource type="Texture2D" uid="uid://et2n55hegaba" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png" id="1_jb872"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7utu3"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw2f5"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbedp"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsbab"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8isuf"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ihk2"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n42m"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqibn"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xlfd"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vshtf"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r46o4"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pslta"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ipi7"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk1ey"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqsqo"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kajh"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wem44"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l160l"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_284ad"] +atlas = ExtResource("1_jb872") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c5ig"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76xcy"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5asq5"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_busn7"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qneb"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0lln"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7isr"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsi10"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k844h"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtx2b"] +atlas = ExtResource("1_jb872") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wku8h"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h7e7"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5hw5"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8deiv"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i687b"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5x8f"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1qqt"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sl4o"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x1ie"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em3kb"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls4lm"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk4yg"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbq7u"] +atlas = ExtResource("1_jb872") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g42g0"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcqec"] +atlas = ExtResource("1_jb872") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnauu"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr1et"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lxa2"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wybj3"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfq6g"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_214v4"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7wl8"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvloe"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31g38"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5i64"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8vud"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi6ls"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2ojo"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5eqw"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewwce"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwodd"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_385nm"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xdxh"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twn2x"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swcqi"] +atlas = ExtResource("1_jb872") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpgeh"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20v6r"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baomw"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u52bk"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq7rt"] +atlas = ExtResource("1_jb872") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqsnu"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3rf6"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8mwn"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay540"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2jgq"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugvia"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcf4e"] +atlas = ExtResource("1_jb872") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8cr7"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2la44"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxdkx"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bw40"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvyf7"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw24o"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqjfe"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yetg5"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdj7r"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf6pu"] +atlas = ExtResource("1_jb872") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7utu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw2f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbedp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsbab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8isuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ihk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n42m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqibn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xlfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vshtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r46o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pslta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ipi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk1ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqsqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kajh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wem44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l160l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_284ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c5ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76xcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5asq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_busn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qneb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0lln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7isr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsi10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k844h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtx2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wku8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h7e7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5hw5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8deiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i687b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5x8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1qqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sl4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x1ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em3kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls4lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk4yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbq7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g42g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcqec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnauu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr1et") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lxa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wybj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfq6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_214v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7wl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvloe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31g38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5i64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8vud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi6ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2ojo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5eqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewwce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwodd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_385nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xdxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twn2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swcqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpgeh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_20v6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baomw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u52bk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq7rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqsnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3rf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8mwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay540") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2jgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugvia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcf4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8cr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2la44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxdkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bw40") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvyf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw24o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqjfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yetg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdj7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf6pu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowwyvern.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowwyvern.tres new file mode 100644 index 0000000..6d01fb4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_snowwyvern.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://jqfav2hx6ar2"] + +[ext_resource type="Texture2D" uid="uid://cely8m0m8yctt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png" id="1_i3x33"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cea03"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unhsj"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54j18"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ye4b"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dho2d"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojshd"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgsce"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36yxf"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eui1r"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0gm0"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvf3x"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7jrp"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yo3v"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kobmj"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm4tl"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8x75"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y7wi"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u0d3"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oe6i"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkiig"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y2j8"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mes61"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3pxu"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7skn"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rydu"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4jue"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8sd0"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypaiw"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxr2w"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05i62"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sedhd"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_078xx"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx1jc"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2c5e"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdray"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuwu7"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw83f"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbmgk"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pysx0"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbae4"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrsx6"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24khm"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbegl"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcomm"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o42qg"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxsl7"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvts"] +atlas = ExtResource("1_i3x33") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akjd1"] +atlas = ExtResource("1_i3x33") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avcqk"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhn1t"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5gtu"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huwrg"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3kwp"] +atlas = ExtResource("1_i3x33") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p41sg"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opqun"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4jd5"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn237"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05u1w"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i54h8"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_002kk"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnfuy"] +atlas = ExtResource("1_i3x33") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cea03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unhsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54j18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ye4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dho2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojshd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgsce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36yxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eui1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0gm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvf3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7jrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yo3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kobmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm4tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8x75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y7wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u0d3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oe6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkiig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y2j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mes61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3pxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7skn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rydu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4jue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8sd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypaiw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxr2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05i62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sedhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_078xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx1jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2c5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdray") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuwu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw83f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbmgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pysx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbae4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrsx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24khm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbegl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcomm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o42qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxsl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akjd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avcqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhn1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5gtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huwrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3kwp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p41sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opqun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4jd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn237") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05u1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i54h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_002kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnfuy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_spiritwolf.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_spiritwolf.tres new file mode 100644 index 0000000..a313311 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_spiritwolf.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://domvrexrn6jhe"] + +[ext_resource type="Texture2D" uid="uid://dnq7nad368d02" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png" id="1_g3osu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k8ex"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2aqv"] +atlas = ExtResource("1_g3osu") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1is18"] +atlas = ExtResource("1_g3osu") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j3u4"] +atlas = ExtResource("1_g3osu") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xugl7"] +atlas = ExtResource("1_g3osu") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08d2p"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6bky"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk10f"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46ffv"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ykxl"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p25i"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p10fd"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlia4"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4rwj"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20job"] +atlas = ExtResource("1_g3osu") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bysi4"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myut5"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6rgk"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78gw0"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4nr6"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tos7"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be7mq"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a86t"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v884d"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8def"] +atlas = ExtResource("1_g3osu") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbp3e"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxe7n"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw1y7"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg6it"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve2kr"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxtnc"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjxna"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgvxx"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxkee"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mca5w"] +atlas = ExtResource("1_g3osu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvcsy"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qss56"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixlit"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhiam"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wktb"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdc03"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xvwl"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td7lf"] +atlas = ExtResource("1_g3osu") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw6ul"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0wir"] +atlas = ExtResource("1_g3osu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44ftb"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60h37"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cuw5"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2udmo"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cfxc"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw6c1"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12wya"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk884"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j27hp"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2okt"] +atlas = ExtResource("1_g3osu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f86rl"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fl8e"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80g4i"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rfsk"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiy1i"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykwvl"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75yy0"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ramlw"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi73c"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syyt8"] +atlas = ExtResource("1_g3osu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h42qh"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7ehh"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gse1p"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eptgo"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8o5y"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0n40"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nrcr"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3u06"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp8p2"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k6qp"] +atlas = ExtResource("1_g3osu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si2tl"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28krr"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b4um"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oym6y"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xtto"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ox7w"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ugoi"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qk4i"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ileb5"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0xs4"] +atlas = ExtResource("1_g3osu") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k8ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2aqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1is18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j3u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xugl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08d2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6bky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk10f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46ffv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ykxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p25i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p10fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlia4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4rwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20job") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bysi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myut5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6rgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78gw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4nr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tos7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be7mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a86t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v884d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8def") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbp3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxe7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw1y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg6it") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve2kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxtnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjxna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgvxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxkee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mca5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvcsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qss56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixlit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhiam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wktb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdc03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xvwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td7lf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw6ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0wir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44ftb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60h37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cuw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2udmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cfxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw6c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12wya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk884") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j27hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2okt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f86rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fl8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80g4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rfsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiy1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykwvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75yy0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ramlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi73c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syyt8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h42qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7ehh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gse1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eptgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8o5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0n40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nrcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3u06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp8p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k6qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si2tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28krr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b4um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oym6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xtto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ox7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ugoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qk4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ileb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0xs4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tier2general.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tier2general.tres new file mode 100644 index 0000000..6f9b536 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tier2general.tres @@ -0,0 +1,826 @@ +[gd_resource type="SpriteFrames" load_steps=112 format=3 uid="uid://b16elv284i2me"] + +[ext_resource type="Texture2D" uid="uid://bkudps4jnytwo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png" id="1_uvcte"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_phhmd"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lr8t"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruvm1"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00xjb"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvplu"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm5uf"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77la3"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwnk0"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3osug"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5amvo"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgxqi"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cwep"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qmjv"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g78s"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v8yk"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mg3q"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2odfq"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2va4"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w21wn"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s2fr"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhiok"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdm4k"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8whj0"] +atlas = ExtResource("1_uvcte") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83c3x"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3kul"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oadci"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lt6y"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yn4s"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e6lq"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eulco"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jup3f"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5lnu"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deho4"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hcpp"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0108w"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se1i4"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1ss4"] +atlas = ExtResource("1_uvcte") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6lcc"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf51q"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycdv6"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dn6g"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhwio"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awnvj"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opcrw"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw3ql"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo5ed"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5tkn"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vikee"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mppmh"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi7lg"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbucq"] +atlas = ExtResource("1_uvcte") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkqd5"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hnbh"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn1sj"] +atlas = ExtResource("1_uvcte") +region = Rect2(987, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n77ef"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l4jv"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lpoq"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njkva"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpnn6"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu4p0"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkoq1"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqsui"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11qsu"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np76i"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d8bt"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfnda"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofwe8"] +atlas = ExtResource("1_uvcte") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o52ml"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkepx"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrnp3"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evaik"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds0g7"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ou5"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ift"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2khw"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg27y"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xdfi"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcktn"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lulee"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fnn0"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2dnb"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3o1n"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_635i0"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miot1"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08vsy"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmjkn"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88wtk"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4767"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nst5i"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjc5h"] +atlas = ExtResource("1_uvcte") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaa5j"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu04l"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hwei"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkdph"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qghf"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iftp3"] +atlas = ExtResource("1_uvcte") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6eym"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw3m0"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy5pb"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v41wx"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1biou"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwuqg"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t17l"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fttaq"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owoa8"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdd3a"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02g8l"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2cog"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n26pp"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avdte"] +atlas = ExtResource("1_uvcte") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_phhmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lr8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruvm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00xjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvplu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm5uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77la3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwnk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3osug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5amvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgxqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cwep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qmjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g78s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v8yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mg3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2odfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2va4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w21wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s2fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhiok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdm4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8whj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83c3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3kul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oadci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lt6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yn4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e6lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eulco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jup3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5lnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deho4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hcpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0108w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se1i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1ss4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6lcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf51q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycdv6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dn6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhwio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awnvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opcrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw3ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo5ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5tkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vikee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mppmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi7lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbucq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkqd5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hnbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn1sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n77ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l4jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lpoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njkva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpnn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu4p0") +}], +"loop": true, +"name": &"cast", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkoq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqsui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11qsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np76i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d8bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfnda") +}], +"loop": true, +"name": &"castend", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofwe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o52ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkepx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrnp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evaik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds0g7") +}], +"loop": true, +"name": &"castloop", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ou5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ift") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2khw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg27y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xdfi") +}], +"loop": true, +"name": &"caststart", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcktn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lulee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fnn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2dnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3o1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_635i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miot1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08vsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmjkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88wtk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4767") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nst5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjc5h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaa5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu04l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hwei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkdph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qghf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iftp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6eym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw3m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy5pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v41wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1biou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwuqg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t17l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fttaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owoa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdd3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02g8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2cog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n26pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avdte") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_treant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_treant.tres new file mode 100644 index 0000000..d0787ad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_treant.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://bvfk6rip64blc"] + +[ext_resource type="Texture2D" uid="uid://cvuch0yiqatbb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png" id="1_2xwx8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyy2w"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8r8v"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ask5d"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duwwx"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxl6x"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbk6u"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdo2j"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci0od"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a88ao"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y34u1"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqwt3"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u0mx"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcldc"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2w46"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtn7g"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qwkv"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kekh7"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ujp"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61wv8"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agakl"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj5wd"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksrpi"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsiim"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akrs7"] +atlas = ExtResource("1_2xwx8") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7n3k"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61gbd"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfjdv"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ds7s"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdfy"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55lgm"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58emf"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4psd"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us7eu"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psm0u"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do6b2"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po645"] +atlas = ExtResource("1_2xwx8") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvrc2"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvnfs"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k1a4"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cto3"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y63ex"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ax3t"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgi0y"] +atlas = ExtResource("1_2xwx8") +region = Rect2(486, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qubcm"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3e5b"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ttt"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mekli"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldsx4"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwgvx"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06dhh"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmd2b"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2437"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tfea"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikqxl"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehw5w"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l846a"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjuee"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k051s"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiwov"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41i2i"] +atlas = ExtResource("1_2xwx8") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5i6v"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qydh6"] +atlas = ExtResource("1_2xwx8") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlku5"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm17b"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueohh"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm76t"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0i52"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tl2r"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebqy2"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wnpy"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q0gt"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0w0r"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io7fv"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afx5y"] +atlas = ExtResource("1_2xwx8") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00j0v"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfsry"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjunc"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h50wc"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qg6x"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkrkl"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mcx8"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn5b5"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu5ym"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mibi"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll3pl"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muesl"] +atlas = ExtResource("1_2xwx8") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyy2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8r8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ask5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duwwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxl6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbk6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdo2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci0od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a88ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y34u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqwt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u0mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcldc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2w46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtn7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qwkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kekh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ujp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61wv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agakl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj5wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksrpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsiim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akrs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7n3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61gbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfjdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ds7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swdfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55lgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58emf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4psd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us7eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psm0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do6b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po645") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvrc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvnfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k1a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cto3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y63ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ax3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgi0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qubcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3e5b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ttt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mekli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldsx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwgvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06dhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmd2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2437") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tfea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikqxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehw5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l846a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjuee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k051s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiwov") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_41i2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5i6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qydh6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlku5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm17b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueohh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm76t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0i52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tl2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebqy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wnpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q0gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0w0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io7fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afx5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00j0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfsry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjunc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h50wc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qg6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkrkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mcx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn5b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu5ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mibi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll3pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muesl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tundraguardian.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tundraguardian.tres new file mode 100644 index 0000000..fdfe798 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_tundraguardian.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://fs6bam8gfwow"] + +[ext_resource type="Texture2D" uid="uid://boonw71of5yil" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png" id="1_3xlab"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ykml"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgece"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pr5h"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xnhp"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyaqq"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30nr0"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srb5k"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtxf0"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqbfj"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ahlc"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejgj1"] +atlas = ExtResource("1_3xlab") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bjqh"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3leq"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc5ww"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8w3r"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_828xi"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c18m5"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kqym"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njn4m"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf8tt"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5a7h"] +atlas = ExtResource("1_3xlab") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pny1"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkwy3"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otro0"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wopx"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd07l"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15h1l"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0hl4"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddfmr"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w88q"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh1to"] +atlas = ExtResource("1_3xlab") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4wqa"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rlrb"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03sa5"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m0ew"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkcft"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl3s0"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcoi3"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibcdp"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iou2c"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f38fp"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekckk"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj6u3"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o14l"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqt7s"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p5y7"] +atlas = ExtResource("1_3xlab") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfgy3"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4g5d"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bx1m"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x3na"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onivs"] +atlas = ExtResource("1_3xlab") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfwdv"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr1ro"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l53sm"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmj7b"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vair"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj464"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4up0r"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_587h4"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wsl2"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13iws"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asgby"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4lfc"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn0jp"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvbly"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y0dl"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4dc5"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6crpg"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jcou"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjjal"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8loyi"] +atlas = ExtResource("1_3xlab") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06n17"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbhob"] +atlas = ExtResource("1_3xlab") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a7fi"] +atlas = ExtResource("1_3xlab") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xur7a"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuwgl"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5noj"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51er4"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wcuv"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxtfh"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2ein"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c5i0"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvs3t"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5u3r"] +atlas = ExtResource("1_3xlab") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7or6"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16y6d"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2il1"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da2qh"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn80x"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efvdn"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dytr"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qwif"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a724n"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oyvt"] +atlas = ExtResource("1_3xlab") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ykml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgece") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pr5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xnhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyaqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30nr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srb5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtxf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqbfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ahlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejgj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bjqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3leq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc5ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8w3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_828xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c18m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kqym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njn4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf8tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5a7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pny1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkwy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otro0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wopx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd07l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15h1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0hl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddfmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w88q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh1to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4wqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rlrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03sa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m0ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkcft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl3s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcoi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibcdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iou2c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f38fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekckk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj6u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o14l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqt7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p5y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfgy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4g5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bx1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x3na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onivs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfwdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr1ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l53sm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmj7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vair") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj464") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4up0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_587h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wsl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13iws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asgby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4lfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn0jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvbly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y0dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4dc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6crpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jcou") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjjal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8loyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06n17") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbhob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a7fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xur7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuwgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5noj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51er4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wcuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxtfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2ein") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c5i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvs3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5u3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7or6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16y6d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2il1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da2qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn80x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efvdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dytr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qwif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a724n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oyvt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_vanarsentinel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_vanarsentinel.tres new file mode 100644 index 0000000..59de3a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_vanarsentinel.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://djsf5bv4gck6e"] + +[ext_resource type="Texture2D" uid="uid://cyx7aj3unal7i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png" id="1_aqpww"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vuwd"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cco1h"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xup7y"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuorn"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbwhu"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsfq7"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpygc"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3acjo"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk37j"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhvhv"] +atlas = ExtResource("1_aqpww") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfpcn"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2c5s"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svxsr"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oao16"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr0r0"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfgw5"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8c8o"] +atlas = ExtResource("1_aqpww") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82vck"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us6l3"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkd8i"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urm0w"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lshpv"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0d11"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ulje"] +atlas = ExtResource("1_aqpww") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of7h8"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vdt7"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r8g5"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy6ki"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjy63"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiepf"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f7lo"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyp2l"] +atlas = ExtResource("1_aqpww") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wdqu"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mttvq"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7m53"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp1xr"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5unl"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37khu"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_povas"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1r5f"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqi2q"] +atlas = ExtResource("1_aqpww") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kur4"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcnhc"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jo24"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wf8e"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6dut"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj5mp"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r1ia"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5liot"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwc7x"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrwnp"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66q6q"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3ap5"] +atlas = ExtResource("1_aqpww") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kev0o"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qg2s"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dibvf"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk8gn"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kl30"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnh5g"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s37go"] +atlas = ExtResource("1_aqpww") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1xs"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki66o"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdvl2"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ks43"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf4vd"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aulrq"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmes1"] +atlas = ExtResource("1_aqpww") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhodd"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhfnd"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnpkh"] +atlas = ExtResource("1_aqpww") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpoat"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85fgt"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oqwa"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tcvf"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml0bg"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkgnr"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve4vf"] +atlas = ExtResource("1_aqpww") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrth4"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kimpm"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj2sm"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_122pk"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klxot"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1x4n"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgbkj"] +atlas = ExtResource("1_aqpww") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4efld"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcyjd"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5lw6"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc2ee"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sq1w"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ar5h"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_je8am"] +atlas = ExtResource("1_aqpww") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jew38"] +atlas = ExtResource("1_aqpww") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdt38"] +atlas = ExtResource("1_aqpww") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wco0l"] +atlas = ExtResource("1_aqpww") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87aal"] +atlas = ExtResource("1_aqpww") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxh8a"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52elh"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm4rl"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3t60"] +atlas = ExtResource("1_aqpww") +region = Rect2(1572, 393, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vuwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cco1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xup7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuorn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbwhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsfq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpygc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3acjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk37j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhvhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfpcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2c5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svxsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oao16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr0r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfgw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8c8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82vck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us6l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkd8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urm0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lshpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0d11") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ulje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of7h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vdt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r8g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy6ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjy63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiepf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f7lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyp2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wdqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mttvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7m53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp1xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5unl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_37khu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_povas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1r5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqi2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kur4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcnhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jo24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wf8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6dut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj5mp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r1ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5liot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwc7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrwnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66q6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3ap5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kev0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qg2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dibvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk8gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kl30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnh5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s37go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki66o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdvl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ks43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf4vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aulrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmes1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhodd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhfnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnpkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpoat") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_85fgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oqwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tcvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml0bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkgnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve4vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrth4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kimpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj2sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_122pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klxot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1x4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgbkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4efld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcyjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5lw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc2ee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sq1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ar5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_je8am") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jew38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdt38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wco0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87aal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxh8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52elh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm4rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3t60") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_voiceofthewind.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_voiceofthewind.tres new file mode 100644 index 0000000..46b1446 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_voiceofthewind.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cdrn28qvepmcf"] + +[ext_resource type="Texture2D" uid="uid://dch3amlke6qf7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png" id="1_qtllx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwic6"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2e7k"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i13gm"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5f6w"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxdlk"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6c0j"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7hjw"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56ecu"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmiqk"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvfa8"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8kke"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkgpu"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17awe"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pryvb"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xioc4"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yv6r"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryiad"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3lrs"] +atlas = ExtResource("1_qtllx") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uia4e"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3o02"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aelqv"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot80y"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1hwe"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6vw1"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dods"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf881"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw3qj"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12cvg"] +atlas = ExtResource("1_qtllx") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt1uw"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80ns5"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kfu5"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qbx2"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2b4w"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fr0y"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqnls"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maxn6"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctroe"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iefr3"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xlxl"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e626t"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydu03"] +atlas = ExtResource("1_qtllx") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74yao"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od56q"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ni43"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da8ad"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf4sr"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no88l"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1nlt"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gufab"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or1uu"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbb3s"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmvee"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2aix"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai433"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0jj2"] +atlas = ExtResource("1_qtllx") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxtjd"] +atlas = ExtResource("1_qtllx") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n5kn"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iktyt"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx6at"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3r7a"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go8uc"] +atlas = ExtResource("1_qtllx") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swcdm"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcqxv"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qovih"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no70k"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdg80"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuea8"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onbb6"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ispeq"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm7n8"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qxc4"] +atlas = ExtResource("1_qtllx") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2thsb"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dnq0"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd3lj"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tageu"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sstpi"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u61nj"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fis1s"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5abv2"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1csh"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0oks"] +atlas = ExtResource("1_qtllx") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwic6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2e7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i13gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5f6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxdlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6c0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7hjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56ecu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmiqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvfa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8kke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkgpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17awe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pryvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xioc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yv6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryiad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3lrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uia4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3o02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aelqv") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot80y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1hwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6vw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dods") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf881") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw3qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12cvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt1uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80ns5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kfu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qbx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2b4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fr0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqnls") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_maxn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctroe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iefr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xlxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e626t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydu03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74yao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od56q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ni43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da8ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf4sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no88l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1nlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gufab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or1uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbb3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmvee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2aix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai433") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0jj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxtjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n5kn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iktyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx6at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3r7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go8uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swcdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcqxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qovih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no70k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdg80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuea8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onbb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ispeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm7n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qxc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2thsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dnq0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd3lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tageu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sstpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u61nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fis1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5abv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1csh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0oks") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterbear.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterbear.tres new file mode 100644 index 0000000..c7523f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterbear.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://colyyuea0adtm"] + +[ext_resource type="Texture2D" uid="uid://bjx8dx4lf2inj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png" id="1_uda7n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpcbe"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c71ml"] +atlas = ExtResource("1_uda7n") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxywd"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp8d5"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sa0a"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4fo4"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b2uh"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6npd"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h8xb"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o0ei"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvy0l"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4idpn"] +atlas = ExtResource("1_uda7n") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plpdg"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t23md"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4abh"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvld2"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysf5g"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly1qi"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgp2p"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwcu1"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c6jd"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5vmi"] +atlas = ExtResource("1_uda7n") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1x4s"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct614"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr3as"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yh7p"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kal8c"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg4p2"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esdaf"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dny63"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ex4w"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjbcs"] +atlas = ExtResource("1_uda7n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awkit"] +atlas = ExtResource("1_uda7n") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syn61"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh56c"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fpdu"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icpw1"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cfda"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlko6"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lslgq"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df14s"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77xkg"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dshqb"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67riy"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqqtr"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py2yu"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avceo"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b84w"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n07e"] +atlas = ExtResource("1_uda7n") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc1v4"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuklk"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt5ln"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j1e0"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scpfu"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcydg"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0gag"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ka8"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo6bk"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucr2c"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xdk"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m6jp"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11qwe"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgpwf"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ungc1"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei00x"] +atlas = ExtResource("1_uda7n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7y2w"] +atlas = ExtResource("1_uda7n") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juujc"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5aj2"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr7qe"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv6u8"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ud81"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23bt4"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y3ov"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awyx4"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roolq"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k636r"] +atlas = ExtResource("1_uda7n") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdg0r"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o65m"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e083c"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v48cx"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvl7n"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1flro"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw104"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i730h"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s304s"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elinn"] +atlas = ExtResource("1_uda7n") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpcbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c71ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxywd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp8d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sa0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4fo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b2uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6npd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h8xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o0ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvy0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4idpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plpdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t23md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4abh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvld2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysf5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly1qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgp2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwcu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c6jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5vmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1x4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct614") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr3as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yh7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kal8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg4p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esdaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dny63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ex4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjbcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awkit") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_syn61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh56c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fpdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icpw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cfda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlko6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lslgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df14s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77xkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dshqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67riy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqqtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py2yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avceo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b84w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n07e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc1v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuklk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt5ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j1e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scpfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcydg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0gag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ka8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo6bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucr2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m6jp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_11qwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgpwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ungc1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei00x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7y2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juujc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5aj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr7qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv6u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ud81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23bt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y3ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awyx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roolq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k636r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdg0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o65m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e083c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v48cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvl7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1flro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw104") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i730h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s304s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elinn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterelemental.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterelemental.tres new file mode 100644 index 0000000..e8be259 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_waterelemental.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://jxm50t4krex8"] + +[ext_resource type="Texture2D" uid="uid://bwpwygkayu8ch" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png" id="1_qaibp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwkpw"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47ss6"] +atlas = ExtResource("1_qaibp") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr71k"] +atlas = ExtResource("1_qaibp") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d42o5"] +atlas = ExtResource("1_qaibp") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vce3"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl1mg"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe30d"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_443mc"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg7ck"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn4lx"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eaea"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha2dd"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbgq6"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r15i6"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1jco"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1cj5"] +atlas = ExtResource("1_qaibp") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_117d1"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smmp5"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbvwc"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8g0t"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puwgm"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf1j7"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4rj6"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfrig"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7q34"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xdgh"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inbxt"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwev6"] +atlas = ExtResource("1_qaibp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4ypw"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhsxs"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m4ms"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdtb7"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gevk"] +atlas = ExtResource("1_qaibp") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sng2"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfg2u"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywnjw"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tva0x"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te7ki"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8bpw"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7miri"] +atlas = ExtResource("1_qaibp") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1csu"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb6d7"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shh0w"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ssrj"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2gug"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sotj"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xjyi"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4femx"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ui08"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njk57"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xqo7"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiyrc"] +atlas = ExtResource("1_qaibp") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nxn8"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fcmh"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3nu"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlcs8"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b753k"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd5fw"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2nxo"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_287xr"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1deue"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyexi"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y0si"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onqg0"] +atlas = ExtResource("1_qaibp") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwkpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47ss6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr71k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d42o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl1mg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe30d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_443mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg7ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn4lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eaea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha2dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbgq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r15i6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1jco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1cj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_117d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smmp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbvwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8g0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puwgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf1j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4rj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfrig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7q34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xdgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inbxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwev6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4ypw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhsxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m4ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdtb7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gevk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sng2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfg2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywnjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tva0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te7ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8bpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7miri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1csu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb6d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shh0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ssrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2gug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sotj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xjyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4femx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ui08") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_njk57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xqo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiyrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nxn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fcmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlcs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b753k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd5fw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2nxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_287xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1deue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyexi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y0si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onqg0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_whitewyvern.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_whitewyvern.tres new file mode 100644 index 0000000..7f8eb32 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_whitewyvern.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://2x07y02kb4o5"] + +[ext_resource type="Texture2D" uid="uid://cnmpnoonepig1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png" id="1_csfs0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0kx8"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuebi"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kg87"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xjid"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao15l"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_465va"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6y1y"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbmxp"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ee0b"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i86i"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otifp"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rd7j"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bimr"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt7rv"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa3c5"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ran07"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy0in"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1snf6"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jrvu"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j2s4"] +atlas = ExtResource("1_csfs0") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf50p"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiuta"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iafr"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eeip"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5qwo"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laahx"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcyy3"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5qjp"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vclb4"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlybc"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4ge6"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b578q"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un8le"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sstyw"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ndm"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgpgk"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un1r0"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi2jc"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7y0g"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqq5v"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e3ra"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkbc1"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4q8k"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ary1d"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c0mh"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3472"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rn0b"] +atlas = ExtResource("1_csfs0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3couh"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ljgk"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na1bo"] +atlas = ExtResource("1_csfs0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew5gk"] +atlas = ExtResource("1_csfs0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ginmj"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mrw"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aq5h"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06bnk"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osfqs"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh01r"] +atlas = ExtResource("1_csfs0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sinjx"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgdsx"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nn0y"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar4dd"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irpl4"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mpwj"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl3pt"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w8os"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwkyu"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo07l"] +atlas = ExtResource("1_csfs0") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0kx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuebi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kg87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xjid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao15l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_465va") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6y1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbmxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ee0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i86i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otifp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rd7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bimr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt7rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa3c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ran07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy0in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1snf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jrvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j2s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf50p") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiuta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iafr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eeip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5qwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laahx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcyy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5qjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vclb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlybc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4ge6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b578q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un8le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sstyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ndm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgpgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un1r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi2jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7y0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqq5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e3ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkbc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4q8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ary1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c0mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3472") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rn0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3couh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ljgk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_na1bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew5gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ginmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aq5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06bnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osfqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh01r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sinjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgdsx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nn0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar4dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irpl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mpwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl3pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w8os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwkyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo07l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_wolfraven.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_wolfraven.tres new file mode 100644 index 0000000..7174063 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_wolfraven.tres @@ -0,0 +1,379 @@ +[gd_resource type="SpriteFrames" load_steps=51 format=3 uid="uid://bik8tg2a0df40"] + +[ext_resource type="Texture2D" uid="uid://dvgy7gb6x24ws" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png" id="1_v3po3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gq7l"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q6bj"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnj57"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gatq0"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aplp1"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w5in"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb3qd"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqtxj"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db8i4"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uihgl"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icjm3"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h1v3"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asqy6"] +atlas = ExtResource("1_v3po3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loxyj"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bno0i"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1256"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qh7y"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xamds"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5om8q"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0do71"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m7ag"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fc0s"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r3un"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkaqu"] +atlas = ExtResource("1_v3po3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhgw7"] +atlas = ExtResource("1_v3po3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6o6b"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqyde"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fathn"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkjxn"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8ipp"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdswf"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw2jn"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgx08"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sqlg"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhf2v"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iu75"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o5ll"] +atlas = ExtResource("1_v3po3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf774"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5j3t"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb6u0"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0v1u"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylukx"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nsgp"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhqie"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkoff"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdrb4"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orefj"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0kl1"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfdml"] +atlas = ExtResource("1_v3po3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gq7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q6bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnj57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gatq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aplp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w5in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb3qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqtxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db8i4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uihgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icjm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h1v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asqy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loxyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bno0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1256") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qh7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xamds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5om8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0do71") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m7ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fc0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r3un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkaqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhgw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6o6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqyde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fathn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkjxn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8ipp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdswf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw2jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgx08") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sqlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhf2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iu75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf774") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5j3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb6u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0v1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylukx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nsgp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhqie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkoff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdrb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orefj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0kl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfdml") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuyttracker.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuyttracker.tres new file mode 100644 index 0000000..5d9d9dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuyttracker.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://bkw5xeas3okbv"] + +[ext_resource type="Texture2D" uid="uid://u5b20vcqmseu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png" id="1_fbdb6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hiw7"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogkua"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxdg2"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8viq"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qsnu"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u22xl"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qns3f"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbend"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4hbx"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nckxm"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx8my"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3vwq"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ovmh"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26rfw"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76pov"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1on4f"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coded"] +atlas = ExtResource("1_fbdb6") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekvx8"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tsqo"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocori"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8vm"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyxy2"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3duqj"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw4kh"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wryfr"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et4d4"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ngko"] +atlas = ExtResource("1_fbdb6") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skftm"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuyk5"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d4y5"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7f1u"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7d8u"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5uut"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpxs8"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xlnu"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6l4v"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5amn"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as4s6"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbdq7"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2o56"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uuhf"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eht4f"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i01wy"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpmdd"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8hlg"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ohs0"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkl2r"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpnlt"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukt3t"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06tpf"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06dvh"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaqv6"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg8i4"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbkvl"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiiyk"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4srsi"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nomk"] +atlas = ExtResource("1_fbdb6") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbnld"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fnbg"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu41v"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jya6n"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o05iw"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gous7"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfh4q"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqcbu"] +atlas = ExtResource("1_fbdb6") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mxpw"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmdi0"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbiuq"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q2w3"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y865u"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r35ku"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fec4"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d67o"] +atlas = ExtResource("1_fbdb6") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub1vu"] +atlas = ExtResource("1_fbdb6") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4vt4"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6a7j"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilo72"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jex7"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_835ob"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrgab"] +atlas = ExtResource("1_fbdb6") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha335"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inm7k"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vecju"] +atlas = ExtResource("1_fbdb6") +region = Rect2(606, 707, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hiw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogkua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxdg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8viq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qsnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u22xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qns3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbend") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4hbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nckxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx8my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3vwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ovmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26rfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76pov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1on4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coded") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekvx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tsqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocori") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyxy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3duqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw4kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wryfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et4d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ngko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skftm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuyk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d4y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7f1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7d8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5uut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpxs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xlnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6l4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5amn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as4s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbdq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2o56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uuhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eht4f") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i01wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpmdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8hlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ohs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkl2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpnlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukt3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06tpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06dvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaqv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg8i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbkvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiiyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4srsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nomk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbnld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fnbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu41v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jya6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o05iw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gous7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfh4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqcbu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mxpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmdi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbiuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q2w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y865u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r35ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fec4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d67o") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub1vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4vt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6a7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilo72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jex7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_835ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrgab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha335") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inm7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vecju") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytunleashed.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytunleashed.tres new file mode 100644 index 0000000..8afec51 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytunleashed.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://bw13u7iw1gp1w"] + +[ext_resource type="Texture2D" uid="uid://cjn6lcbu1ylxs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png" id="1_rq6i8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e07lr"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kxh7"] +atlas = ExtResource("1_rq6i8") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl060"] +atlas = ExtResource("1_rq6i8") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxgtj"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwna8"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ireg4"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy3lm"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaccy"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xw1c"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arhg0"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1q6n"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q68vd"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d8ti"] +atlas = ExtResource("1_rq6i8") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvkam"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73tow"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldt23"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys1u2"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ohj"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gy753"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc5bq"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42mri"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aq4b"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eubre"] +atlas = ExtResource("1_rq6i8") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6hxq"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acl8b"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rddnr"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t67ic"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfvqq"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31xgg"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trstt"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i36pn"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chk86"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm3oh"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6v5t"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aejrt"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0pqe"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqkor"] +atlas = ExtResource("1_rq6i8") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb3us"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7fw1"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r14uk"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hajod"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jckyn"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeajh"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8prw0"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g0qc"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwq1o"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugv6p"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6vvp"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpcw6"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6067"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn7ld"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onc1f"] +atlas = ExtResource("1_rq6i8") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v0be"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8vs"] +atlas = ExtResource("1_rq6i8") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oa4v"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwmtl"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otpqs"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6n6u"] +atlas = ExtResource("1_rq6i8") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf75f"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7a6e"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj0wk"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymmad"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohu06"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iychq"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqo3f"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdpbx"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8laiq"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ljc4"] +atlas = ExtResource("1_rq6i8") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjjpo"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psjgu"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqull"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt3lp"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1fyp"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdmi7"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rokr2"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_354aj"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv62u"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8xsw"] +atlas = ExtResource("1_rq6i8") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e07lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kxh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl060") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxgtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwna8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ireg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy3lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaccy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xw1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arhg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1q6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q68vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d8ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvkam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73tow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldt23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys1u2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ohj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gy753") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc5bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42mri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aq4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eubre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6hxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acl8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rddnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t67ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfvqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31xgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trstt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i36pn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_chk86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm3oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6v5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aejrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0pqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqkor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb3us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7fw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r14uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hajod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jckyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeajh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8prw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g0qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwq1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugv6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6vvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpcw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6067") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn7ld") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_onc1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v0be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8vs") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oa4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwmtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otpqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6n6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf75f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7a6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj0wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymmad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohu06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iychq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqo3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdpbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8laiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ljc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjjpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psjgu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqull") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt3lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1fyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdmi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rokr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_354aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv62u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8xsw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytwarlock.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytwarlock.tres new file mode 100644 index 0000000..f929f0d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/f6_ynuytwarlock.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://dhw1gncn86s0u"] + +[ext_resource type="Texture2D" uid="uid://235m3c3rjd1i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png" id="1_5p415"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_p04vn"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wcvu"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11hk7"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3482"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnbwx"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ido"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihwt4"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kciw"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3ado"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb4cu"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iouw3"] +atlas = ExtResource("1_5p415") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fytc"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk8jx"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is4yg"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x64mb"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7f5m"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4hde"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmagr"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e76t7"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bigu"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltq43"] +atlas = ExtResource("1_5p415") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13v0r"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyes5"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x04av"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m514t"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkao5"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jfvb"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13sx3"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0wad"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmail"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3mjn"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2usfw"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov7ww"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a53s"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2v00"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni0ki"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hbyq"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocoij"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwii1"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nugoq"] +atlas = ExtResource("1_5p415") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amqup"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ids"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xoei"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4r2t"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdspu"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji3qn"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4ybc"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eva3"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mvpp"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8opo3"] +atlas = ExtResource("1_5p415") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv7si"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtaf4"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8bwq"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43e37"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8jpb"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy0h2"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebohd"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvn2c"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug1nb"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8f5f"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkwwb"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83vnd"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgpu7"] +atlas = ExtResource("1_5p415") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oenfu"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btjql"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2iep"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6oh3"] +atlas = ExtResource("1_5p415") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20bye"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bby8s"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32tco"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dy6l"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abjjr"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfjnw"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_226gr"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7ejh"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq43x"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_410ln"] +atlas = ExtResource("1_5p415") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p04vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wcvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11hk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3482") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnbwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ido") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihwt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kciw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3ado") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb4cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iouw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fytc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk8jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is4yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x64mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7f5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4hde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmagr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e76t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bigu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltq43") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_13v0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyes5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x04av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m514t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkao5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jfvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13sx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0wad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmail") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3mjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2usfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov7ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a53s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2v00") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni0ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hbyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocoij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwii1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nugoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amqup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ids") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xoei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4r2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdspu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji3qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4ybc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eva3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mvpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8opo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv7si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtaf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8bwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43e37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8jpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy0h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebohd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvn2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug1nb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8f5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkwwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83vnd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgpu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oenfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btjql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2iep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6oh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20bye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bby8s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_32tco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dy6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abjjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfjnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_226gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7ejh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq43x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_410ln") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_abjudicator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_abjudicator.tres new file mode 100644 index 0000000..4fb2ca3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_abjudicator.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://ix3sgyeliwqy"] + +[ext_resource type="Texture2D" uid="uid://cf8xpm3f3ckur" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png" id="1_brvgk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvt8a"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymr5f"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4xj4"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gblbv"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwx8b"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbq0a"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syivs"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg5rg"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8phc"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45wx1"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjqn3"] +atlas = ExtResource("1_brvgk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c58h"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kcmy"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x67lf"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvrpy"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvqcj"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nwk6"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqpny"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m182n"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4f50"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd0ku"] +atlas = ExtResource("1_brvgk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t46ra"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k7l3"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj0id"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb487"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2151"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16fvy"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lpwn"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gihp"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwgdt"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jca0j"] +atlas = ExtResource("1_brvgk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgnw7"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chrqw"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmn75"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih7gp"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81hs1"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmwj8"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hr6g"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7de2d"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiyk8"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cr26v"] +atlas = ExtResource("1_brvgk") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8y7g"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fca2y"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykltl"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seven"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33tqw"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol6o3"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyx0s"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0xpy"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rkof"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v5kf"] +atlas = ExtResource("1_brvgk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mwej"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egyp8"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2wxr"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok0le"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33cvo"] +atlas = ExtResource("1_brvgk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33bbi"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fth4l"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3msm7"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okvia"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao0jn"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cexu7"] +atlas = ExtResource("1_brvgk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjlwo"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfuh6"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kxl6"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfdpu"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7baej"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2e13"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giqwg"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13hbm"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viuyv"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eid30"] +atlas = ExtResource("1_brvgk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjakf"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22aos"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqol0"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slvd6"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh3ui"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6wjm"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk6gv"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj4v5"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb5nc"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl056"] +atlas = ExtResource("1_brvgk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvt8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymr5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4xj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gblbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwx8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbq0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syivs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg5rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8phc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45wx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjqn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c58h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kcmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x67lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvrpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvqcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nwk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqpny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m182n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4f50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd0ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t46ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k7l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj0id") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb487") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2151") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16fvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lpwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gihp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwgdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jca0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgnw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chrqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmn75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih7gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81hs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmwj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hr6g") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7de2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiyk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cr26v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8y7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fca2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykltl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seven") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33tqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol6o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyx0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0xpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rkof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v5kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mwej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egyp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2wxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok0le") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33cvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33bbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fth4l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3msm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okvia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao0jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cexu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjlwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfuh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kxl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfdpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7baej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2e13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giqwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13hbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viuyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eid30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjakf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22aos") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqol0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slvd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh3ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6wjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj4v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb5nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl056") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aer.tres new file mode 100644 index 0000000..75ff93e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aer.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://bvr0vo2gn107b"] + +[ext_resource type="Texture2D" uid="uid://d111n43wthplo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png" id="1_0sav0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1enlg"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8bet"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_405a0"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30ywu"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owlqi"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5b0x"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5alh6"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tigib"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6up5k"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6aa5"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxeis"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l662n"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3qsm"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l87xi"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv0g8"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atnnk"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei1s5"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr1qu"] +atlas = ExtResource("1_0sav0") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k02fg"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfb2a"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avhq6"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxh4g"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k07v"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00ag6"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbd46"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swqvc"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en2ln"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdkt2"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1akys"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5xoe"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u76x4"] +atlas = ExtResource("1_0sav0") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lej2"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_httoy"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2nqf"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3yo8"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf7oh"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvs31"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydy2d"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alj7q"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh23f"] +atlas = ExtResource("1_0sav0") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs3kj"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egoyw"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh8j7"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26d1p"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv6tc"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsgaf"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baim2"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_culep"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3npd2"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qmsr"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c60x"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4dmm"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ah8q"] +atlas = ExtResource("1_0sav0") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr147"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0mr7"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1rvp"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xk2s"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dicdn"] +atlas = ExtResource("1_0sav0") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weoxb"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyxdh"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my11g"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh8xc"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1whd"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n68o"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq32g"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jwey"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvvyf"] +atlas = ExtResource("1_0sav0") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcsxe"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rm4i"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhc7e"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80vl7"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpjm5"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s6dv"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g020a"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3nhl"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvw5x"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ahv"] +atlas = ExtResource("1_0sav0") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1enlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8bet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_405a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ywu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owlqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5b0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5alh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tigib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6up5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6aa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxeis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l662n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3qsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l87xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv0g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atnnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei1s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr1qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k02fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfb2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avhq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxh4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k07v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00ag6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbd46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swqvc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_en2ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdkt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1akys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5xoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u76x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lej2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_httoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2nqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3yo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf7oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvs31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydy2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alj7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh23f") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs3kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egoyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh8j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26d1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv6tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsgaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_baim2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_culep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3npd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qmsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c60x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4dmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ah8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr147") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0mr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1rvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xk2s") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dicdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weoxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyxdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my11g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh8xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1whd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n68o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq32g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jwey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvvyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcsxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rm4i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhc7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80vl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpjm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s6dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g020a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3nhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvw5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ahv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aethermaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aethermaster.tres new file mode 100644 index 0000000..704d6d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_aethermaster.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://bulyjx7ib767c"] + +[ext_resource type="Texture2D" uid="uid://b5qsssa7kvo5g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png" id="1_uvpgl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6pfi"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll4gd"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2htu1"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ar4y"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xw00"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ro4h"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j4xu"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k8kw"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5dv3"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mo3c"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqf5y"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27vk6"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q58al"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2016t"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok0bl"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e21rs"] +atlas = ExtResource("1_uvpgl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sqwg"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3afe"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hrp2"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg2d3"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkbyu"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ym8g"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6i50"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i5wf"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vbpm"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h42h8"] +atlas = ExtResource("1_uvpgl") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjm1c"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w4xo"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1i5j"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5kpk"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfwmm"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv6gv"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1wvt"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewvl3"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxbu0"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24xhk"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x6rr"] +atlas = ExtResource("1_uvpgl") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deht6"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3t77"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_melkt"] +atlas = ExtResource("1_uvpgl") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec8hh"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghbl6"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsyed"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfkh1"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcnsk"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsfs2"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5yo0"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onhaw"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4f8v"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g7nr"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbi1m"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cipqj"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jer1o"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xoqi"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jf8"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7voc"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs3eg"] +atlas = ExtResource("1_uvpgl") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i71h"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj6vs"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p733s"] +atlas = ExtResource("1_uvpgl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bws0y"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5m3q"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnyjs"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_858dl"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4daj3"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsopr"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr6fx"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po05f"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbuff"] +atlas = ExtResource("1_uvpgl") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8qaj"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxvrq"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6jsb"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaofg"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt5sn"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayocx"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th1ks"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fxt1"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipj6v"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uw0tl"] +atlas = ExtResource("1_uvpgl") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6pfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll4gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2htu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ar4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xw00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ro4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j4xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k8kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5dv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mo3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqf5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27vk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q58al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2016t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok0bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e21rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sqwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3afe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hrp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg2d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkbyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ym8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6i50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i5wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vbpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h42h8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjm1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w4xo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1i5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5kpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfwmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv6gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1wvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewvl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxbu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24xhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x6rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deht6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3t77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_melkt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec8hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghbl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsyed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfkh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcnsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsfs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5yo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onhaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4f8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g7nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbi1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cipqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jer1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xoqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0jf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7voc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs3eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i71h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj6vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p733s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bws0y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5m3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnyjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_858dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4daj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsopr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr6fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po05f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbuff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8qaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxvrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6jsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaofg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt5sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayocx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th1ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fxt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipj6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uw0tl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_alterrexx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_alterrexx.tres new file mode 100644 index 0000000..f492f1d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_alterrexx.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://b8lwl02fgsbgn"] + +[ext_resource type="Texture2D" uid="uid://cfrk5mxxauhu7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png" id="1_pwu3m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq62k"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy7e0"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqfba"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1gj6"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xjq5"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhsvr"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q148c"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmry7"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3giy"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv4xy"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1ach"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjs2s"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tqrs"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmw2i"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbyup"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wykec"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0gop"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx5kf"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyl3c"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3r1x"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0ncb"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewyjo"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljiu5"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o275g"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa8js"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukw7c"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qadvx"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwctl"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxww5"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc5ha"] +atlas = ExtResource("1_pwu3m") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l874"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ssk"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iak38"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgrcr"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwujo"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnoka"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50588"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqj4k"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsohj"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtt4b"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7yel"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhd4m"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eps6k"] +atlas = ExtResource("1_pwu3m") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmf80"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kex7"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqgdu"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh6gx"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f7b6"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fvfj"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic7rg"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsrki"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wner"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7g4e"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv3ck"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlrip"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8c1a"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_133xj"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds0vy"] +atlas = ExtResource("1_pwu3m") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7cct"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc4pt"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pb8v"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik8jd"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnw32"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3yhd"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyf1e"] +atlas = ExtResource("1_pwu3m") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p8ke"] +atlas = ExtResource("1_pwu3m") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1bih"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khqi8"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjnp0"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_338nt"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6qu3"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fclqr"] +atlas = ExtResource("1_pwu3m") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q711j"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r7df"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xith"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs3i0"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evj10"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sibpv"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcoqp"] +atlas = ExtResource("1_pwu3m") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seghi"] +atlas = ExtResource("1_pwu3m") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o37d1"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t3pp"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq43p"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6671j"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy4sh"] +atlas = ExtResource("1_pwu3m") +region = Rect2(1441, 262, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq62k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy7e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqfba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1gj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xjq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhsvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q148c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmry7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3giy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv4xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1ach") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjs2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tqrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmw2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbyup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wykec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0gop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx5kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyl3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3r1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0ncb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewyjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljiu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o275g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa8js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukw7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qadvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwctl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxww5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc5ha") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l874") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ssk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iak38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgrcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwujo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnoka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50588") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqj4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsohj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtt4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7yel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhd4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eps6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmf80") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kex7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqgdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh6gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f7b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fvfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic7rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsrki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wner") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7g4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv3ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlrip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8c1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_133xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds0vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7cct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc4pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pb8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik8jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnw32") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3yhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyf1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p8ke") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1bih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khqi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjnp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_338nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6qu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fclqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q711j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r7df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xith") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs3i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evj10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sibpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcoqp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_seghi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o37d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t3pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq43p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6671j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy4sh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_amu.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_amu.tres new file mode 100644 index 0000000..7caba89 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_amu.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://b3fau1rfh46kc"] + +[ext_resource type="Texture2D" uid="uid://dqk8mhl5wwgv7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png" id="1_olb7i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdaeh"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo2qp"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ussq0"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cgkd"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbqt7"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sknaj"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibbuy"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mfh2"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p5x3"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtiuu"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w65j1"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndhtc"] +atlas = ExtResource("1_olb7i") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4ytw"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbq5q"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hlux"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhxd5"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo36t"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x7br"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf26a"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0mbu"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea36v"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikpyy"] +atlas = ExtResource("1_olb7i") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nau6i"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys6q1"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82ykt"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm2fe"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txb5u"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iq0j"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocgvw"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcrd7"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sscy"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mybpo"] +atlas = ExtResource("1_olb7i") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0acvf"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd12c"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l4q2"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5ils"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnlqb"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtx4m"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpwbc"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nf5s"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rscn"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hium5"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k101q"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w72g6"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lksn7"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lae5s"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2aqik"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcq4m"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb7ge"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlxps"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3ajw"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbldv"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtr5i"] +atlas = ExtResource("1_olb7i") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3axky"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svc1q"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7721"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t27a"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icqws"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0hap"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xublg"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ivxo"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hc1s"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy2n6"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ap8"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe2f2"] +atlas = ExtResource("1_olb7i") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmxrg"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fby0t"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddkmr"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x18q"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5npk"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4j05"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxego"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t445l"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ixa7"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwbpe"] +atlas = ExtResource("1_olb7i") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jlvq"] +atlas = ExtResource("1_olb7i") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg8uo"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o73vp"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpvym"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc6fm"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyn45"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d536l"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp8xa"] +atlas = ExtResource("1_olb7i") +region = Rect2(707, 202, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdaeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo2qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ussq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cgkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbqt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sknaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibbuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mfh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p5x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtiuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w65j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndhtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4ytw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbq5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hlux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhxd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo36t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x7br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf26a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0mbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea36v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikpyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nau6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys6q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82ykt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm2fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txb5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iq0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocgvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcrd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sscy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mybpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0acvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd12c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l4q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5ils") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnlqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtx4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpwbc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nf5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rscn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hium5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k101q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w72g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lksn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lae5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2aqik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcq4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb7ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlxps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3ajw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbldv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtr5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3axky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svc1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7721") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t27a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icqws") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0hap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xublg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ivxo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hc1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy2n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ap8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe2f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmxrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fby0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x18q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5npk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4j05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxego") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t445l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ixa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwbpe") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jlvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg8uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o73vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpvym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc6fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyn45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d536l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp8xa") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arakiheadhunter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arakiheadhunter.tres new file mode 100644 index 0000000..a7e15ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arakiheadhunter.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://bttupllowvvvf"] + +[ext_resource type="Texture2D" uid="uid://dj45ovaaim5x3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png" id="1_flfrw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt4xp"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxf06"] +atlas = ExtResource("1_flfrw") +region = Rect2(1044, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r78qk"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv3g5"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaq6e"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkuu7"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w231l"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avg6a"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45sv4"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjjwq"] +atlas = ExtResource("1_flfrw") +region = Rect2(928, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkydx"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2t27"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27pi7"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0n7s"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckrvw"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr3n2"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asq1p"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2u2e"] +atlas = ExtResource("1_flfrw") +region = Rect2(812, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv5c3"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmdml"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj0q0"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5erug"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrvpi"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08rc7"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k2mq"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_580av"] +atlas = ExtResource("1_flfrw") +region = Rect2(696, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tghj"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0xwn"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot260"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osgeu"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obj2b"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ts4i"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0dw2"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1bi8"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqdw1"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qci3i"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqecf"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64y88"] +atlas = ExtResource("1_flfrw") +region = Rect2(580, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f051t"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woes0"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpgva"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f1ww"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knyx7"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlxrk"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x37c"] +atlas = ExtResource("1_flfrw") +region = Rect2(1044, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6kgj"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp858"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tsbn"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy0fo"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp540"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcr2x"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7yk5"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h52e"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoeqg"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt4pb"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0f1j"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjub4"] +atlas = ExtResource("1_flfrw") +region = Rect2(348, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7hf0"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwrj0"] +atlas = ExtResource("1_flfrw") +region = Rect2(1044, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw3pb"] +atlas = ExtResource("1_flfrw") +region = Rect2(464, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cv3v"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83lyf"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2owg"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4neur"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05gt6"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cbt5"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btbf0"] +atlas = ExtResource("1_flfrw") +region = Rect2(232, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhbvs"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5kk1"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13xqp"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lypnd"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npvah"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a6y2"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxrfo"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stqte"] +atlas = ExtResource("1_flfrw") +region = Rect2(116, 0, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6cnh"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 812, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3som"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 696, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfk7x"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 580, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5q0g"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 464, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wiff"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 348, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgw0u"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 232, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo307"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 116, 115, 115) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcvbw"] +atlas = ExtResource("1_flfrw") +region = Rect2(0, 0, 115, 115) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt4xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxf06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r78qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv3g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaq6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkuu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w231l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avg6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45sv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjjwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkydx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2t27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27pi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0n7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckrvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr3n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asq1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2u2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv5c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmdml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj0q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5erug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrvpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08rc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k2mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_580av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tghj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0xwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot260") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osgeu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_obj2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ts4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0dw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1bi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqdw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qci3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqecf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64y88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f051t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woes0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpgva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f1ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knyx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlxrk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x37c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6kgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp858") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tsbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy0fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp540") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcr2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7yk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h52e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoeqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt4pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0f1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjub4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7hf0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwrj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw3pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cv3v") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_83lyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2owg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4neur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05gt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cbt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btbf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhbvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5kk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13xqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lypnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npvah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a6y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxrfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stqte") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6cnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3som") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfk7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5q0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wiff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgw0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo307") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcvbw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arrowwhistler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arrowwhistler.tres new file mode 100644 index 0000000..0243b0d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_arrowwhistler.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://cbt6wgj5f6hv4"] + +[ext_resource type="Texture2D" uid="uid://8qhomnpmoyv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png" id="1_5xifw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyblq"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqsho"] +atlas = ExtResource("1_5xifw") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dv1v"] +atlas = ExtResource("1_5xifw") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_647cw"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doxuo"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg38d"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiduv"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05bdc"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1610s"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iecw"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mqtu"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5008"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk3vx"] +atlas = ExtResource("1_5xifw") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd76g"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0cwe"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21o8n"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgv4g"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bryl"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e62o"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3rke"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3uu6"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwyun"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v48l3"] +atlas = ExtResource("1_5xifw") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qxvv"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iejb0"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5cxj"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yymu2"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7402c"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmg2w"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqjwf"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc76m"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0kp7"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bekl"] +atlas = ExtResource("1_5xifw") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6wkn"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2qmk"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0nkv"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ppp"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gw1pu"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24hkx"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uijxc"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1t27"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2nqn"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b65nw"] +atlas = ExtResource("1_5xifw") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs6j7"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc1qr"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffbbr"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5201"] +atlas = ExtResource("1_5xifw") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrq16"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpgmx"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce6ft"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a76hm"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kh0po"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0bty"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc8fg"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s06i"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpo6e"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxyjr"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aucdq"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhanq"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h71xk"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51fuc"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjini"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1uls"] +atlas = ExtResource("1_5xifw") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfrqm"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyd2v"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea4no"] +atlas = ExtResource("1_5xifw") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bykm"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipqnl"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy2oi"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_033e6"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmr30"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n6eg"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vfw5"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf1s5"] +atlas = ExtResource("1_5xifw") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02llh"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78plo"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj6am"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agd2q"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8kvl"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csetp"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vosa"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evg4e"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko136"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fial6"] +atlas = ExtResource("1_5xifw") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fdw2"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg50s"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odb10"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7j0d"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmx56"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8amlh"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5c6w"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh45c"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4l5n"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43cdv"] +atlas = ExtResource("1_5xifw") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyblq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqsho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dv1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_647cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doxuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg38d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiduv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05bdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1610s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iecw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mqtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5008") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk3vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd76g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0cwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21o8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgv4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bryl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e62o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3rke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3uu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwyun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v48l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qxvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iejb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5cxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yymu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7402c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmg2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqjwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc76m") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0kp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bekl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6wkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2qmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0nkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ppp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gw1pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24hkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uijxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1t27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2nqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b65nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs6j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc1qr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffbbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5201") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrq16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpgmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce6ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a76hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kh0po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0bty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc8fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s06i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpo6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxyjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aucdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhanq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h71xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51fuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjini") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1uls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfrqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyd2v") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea4no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bykm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipqnl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy2oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_033e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmr30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n6eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vfw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf1s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02llh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78plo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj6am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agd2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8kvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csetp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vosa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evg4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko136") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fial6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fdw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg50s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_odb10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7j0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmx56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8amlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5c6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh45c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4l5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43cdv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificer.tres new file mode 100644 index 0000000..abcbe1c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificer.tres @@ -0,0 +1,757 @@ +[gd_resource type="SpriteFrames" load_steps=105 format=3 uid="uid://djaonuqswm0pe"] + +[ext_resource type="Texture2D" uid="uid://bxe37q5lcicqp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png" id="1_wyw3w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwss7"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7omtv"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h8s7"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voamb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giisv"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jocog"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asbdh"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk82t"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n56fv"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xftvk"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efe8v"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddr8k"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he3eb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21cpm"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwk4h"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaav4"] +atlas = ExtResource("1_wyw3w") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iw6u"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7el4"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86a3x"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkrq0"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqr27"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu1qt"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nijol"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6gry"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d8tb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_korcw"] +atlas = ExtResource("1_wyw3w") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v8ha"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3x7r"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh68s"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo0la"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi2lh"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf0d2"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e1at"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf0sb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru0r8"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10jmq"] +atlas = ExtResource("1_wyw3w") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h63uw"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmy38"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l7d2"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1at37"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf6pu"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8rsq"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_805ag"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xd6o"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voycc"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aunom"] +atlas = ExtResource("1_wyw3w") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv1me"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syi8u"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xev4k"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i10fc"] +atlas = ExtResource("1_wyw3w") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ln6"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30txh"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji5s6"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sgkt"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86xbd"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oawoe"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aihq"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfiq0"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qipkl"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4npr"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k2nb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm6i4"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5var4"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utm1f"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2ak2"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42exh"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv2n0"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5wfp"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o7sn"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndblp"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rpwb"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp885"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w471j"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjkxg"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htndp"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5136"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kx2i"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj5m7"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmhea"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf44k"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iqe6"] +atlas = ExtResource("1_wyw3w") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubd4g"] +atlas = ExtResource("1_wyw3w") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx6n7"] +atlas = ExtResource("1_wyw3w") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbfyd"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7buer"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m02yi"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3eda"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ksro"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5fw6"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjem7"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hccjf"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dupoo"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fctyn"] +atlas = ExtResource("1_wyw3w") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3u4q"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddama"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye1om"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igebu"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t23x6"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ihun"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ie0i"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2yem"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pre1a"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tljb2"] +atlas = ExtResource("1_wyw3w") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwss7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7omtv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h8s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voamb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giisv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jocog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asbdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk82t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n56fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xftvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efe8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddr8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he3eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21cpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwk4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaav4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iw6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7el4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86a3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkrq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqr27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu1qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nijol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6gry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d8tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_korcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v8ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3x7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh68s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo0la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi2lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf0d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e1at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf0sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru0r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10jmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h63uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmy38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l7d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1at37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf6pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8rsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_805ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xd6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voycc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aunom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv1me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syi8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xev4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i10fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ln6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_30txh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji5s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sgkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86xbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oawoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aihq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfiq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qipkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4npr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k2nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm6i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5var4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utm1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2ak2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42exh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv2n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5wfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o7sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndblp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rpwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp885") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w471j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjkxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htndp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5136") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kx2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj5m7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmhea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf44k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iqe6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubd4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx6n7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbfyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7buer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m02yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3eda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ksro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5fw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjem7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hccjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dupoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fctyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3u4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddama") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye1om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igebu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t23x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ihun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ie0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2yem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pre1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tljb2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificereshaper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificereshaper.tres new file mode 100644 index 0000000..5ea060b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_artificereshaper.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://fsir86dfan41"] + +[ext_resource type="Texture2D" uid="uid://caifs85v1l3lk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png" id="1_yafuw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp4qw"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7je6"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkuc2"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpimv"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kevr"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hhfr"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4d1v"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b75rm"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n6qv"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2srkg"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cyei"] +atlas = ExtResource("1_yafuw") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsw72"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iqyo"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isbo0"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_371oq"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8200f"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnik1"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4f6t"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrspd"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey6as"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnft5"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq373"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiul6"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr176"] +atlas = ExtResource("1_yafuw") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idc2r"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk5cn"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uplpa"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3x0j"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjdsn"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj6f5"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v02i"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsw2c"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jmuk"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdw25"] +atlas = ExtResource("1_yafuw") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiamb"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac5kh"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g7tn"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcjyt"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bnlx"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unacb"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px5de"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ias4"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h608h"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddtnx"] +atlas = ExtResource("1_yafuw") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyohl"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss64f"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j3m4"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe4p4"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhash"] +atlas = ExtResource("1_yafuw") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs83t"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lu7a"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okc3s"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_647yg"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhkdm"] +atlas = ExtResource("1_yafuw") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66r3u"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jon2s"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13gib"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58rd2"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y6fo"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5oh7"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya6mq"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qiwt"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa1id"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvfig"] +atlas = ExtResource("1_yafuw") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x733u"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy2aq"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km7ug"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_earf1"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr6lc"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64ig0"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfjc2"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upqso"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnhcd"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b4yy"] +atlas = ExtResource("1_yafuw") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2ddg"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ocpn"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbena"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjnyj"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwets"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc2hf"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4tw"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5024"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60scn"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqneo"] +atlas = ExtResource("1_yafuw") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdely"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r70b0"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y2rn"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lntsd"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vy5l"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmhp4"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xfcn"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su7fv"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6g52"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma7sh"] +atlas = ExtResource("1_yafuw") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp4qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7je6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkuc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpimv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kevr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hhfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4d1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b75rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n6qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2srkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cyei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsw72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iqyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isbo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_371oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8200f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnik1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4f6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrspd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey6as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnft5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq373") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiul6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr176") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idc2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk5cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uplpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3x0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjdsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj6f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v02i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsw2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jmuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdw25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiamb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac5kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g7tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcjyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bnlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unacb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px5de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ias4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h608h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddtnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyohl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss64f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j3m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe4p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhash") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs83t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lu7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okc3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_647yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhkdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66r3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jon2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13gib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58rd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y6fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5oh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya6mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qiwt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa1id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvfig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x733u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy2aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km7ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_earf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr6lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64ig0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfjc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upqso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnhcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b4yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2ddg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ocpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbena") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjnyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwets") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc2hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu4tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5024") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60scn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqneo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdely") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r70b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y2rn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lntsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vy5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmhp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xfcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su7fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6g52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma7sh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ashmephyt.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ashmephyt.tres new file mode 100644 index 0000000..468ec2e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ashmephyt.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://dky5wgj1q5gjp"] + +[ext_resource type="Texture2D" uid="uid://da5ph2pmeuvoo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png" id="1_64ggo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuwie"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uodxh"] +atlas = ExtResource("1_64ggo") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbcua"] +atlas = ExtResource("1_64ggo") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kmkn"] +atlas = ExtResource("1_64ggo") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlpsq"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u43x"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10krv"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jft8"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm3ko"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpi1f"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmomp"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eime7"] +atlas = ExtResource("1_64ggo") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhrr3"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0d7t"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh3bk"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cws0k"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc67j"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fwc4"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ud21"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdlxl"] +atlas = ExtResource("1_64ggo") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwvg2"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dodtr"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdx7v"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v1pm"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xssq"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxwv3"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dks28"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs5hn"] +atlas = ExtResource("1_64ggo") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gifjw"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elcle"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66y61"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gij7g"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylsfa"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uock4"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2gxc"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsw4p"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_867kx"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3knrw"] +atlas = ExtResource("1_64ggo") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro4rf"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34nll"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmfot"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4uo0"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3mm6"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4fen"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d25d6"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n024k"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k8mi"] +atlas = ExtResource("1_64ggo") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg3ey"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62pdp"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4b0v"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovb6n"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w654e"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1og18"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyoug"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdw3r"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw4es"] +atlas = ExtResource("1_64ggo") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmv1q"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8epsk"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udwtb"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k16ag"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlfqc"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqa8n"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33qhu"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onj2p"] +atlas = ExtResource("1_64ggo") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkdpg"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpsmw"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xro0n"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdx2a"] +atlas = ExtResource("1_64ggo") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hlje"] +atlas = ExtResource("1_64ggo") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr0fd"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnxyp"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qomb7"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbfoi"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0itr7"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xyxc"] +atlas = ExtResource("1_64ggo") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lqdt"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o48r3"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imgwr"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxye4"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwxha"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utwds"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sft34"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfa3e"] +atlas = ExtResource("1_64ggo") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75yt7"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q6qx"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ka3"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvvfu"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vp3c"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo6ub"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6we03"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwhu7"] +atlas = ExtResource("1_64ggo") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuwie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uodxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbcua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kmkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlpsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u43x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10krv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jft8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm3ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpi1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmomp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eime7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhrr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0d7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh3bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cws0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc67j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fwc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ud21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdlxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwvg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dodtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdx7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v1pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xssq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxwv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dks28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs5hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gifjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elcle") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_66y61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gij7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylsfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uock4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2gxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsw4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_867kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3knrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro4rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34nll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmfot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4uo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3mm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4fen") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d25d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n024k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k8mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg3ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62pdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4b0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovb6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w654e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1og18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyoug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdw3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw4es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmv1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8epsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udwtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k16ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlfqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqa8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33qhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onj2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkdpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpsmw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xro0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdx2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hlje") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr0fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnxyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qomb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbfoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0itr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xyxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lqdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o48r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imgwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxye4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwxha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utwds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sft34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfa3e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_75yt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q6qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ka3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvvfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vp3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo6ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6we03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwhu7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralcrusader.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralcrusader.tres new file mode 100644 index 0000000..fd0bea6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralcrusader.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://hohtf8kv0ysy"] + +[ext_resource type="Texture2D" uid="uid://c6yonv51136vk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png" id="1_exapy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk71k"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyxkw"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvmuw"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81tq5"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_037c4"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tikxg"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4wwc"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfm3j"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2d2e"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onpdt"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as5fv"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0puhs"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lkij"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amsca"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0loq"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohxag"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h25u"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4pgj"] +atlas = ExtResource("1_exapy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpi7b"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trqnj"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpxpd"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwvgk"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbkpn"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6gki"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc0o3"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he2u8"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr8wk"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv4df"] +atlas = ExtResource("1_exapy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64xt4"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac0rn"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r1hl"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwdw4"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itgss"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ovr"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c3cj"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qipx"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey1s1"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r5un"] +atlas = ExtResource("1_exapy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3yvw"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p35l8"] +atlas = ExtResource("1_exapy") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elaaj"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7glx"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oess0"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh4da"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3fm5"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d0c8"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s506v"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7k6r"] +atlas = ExtResource("1_exapy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v03os"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp8rk"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2nij"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnogb"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odgs7"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqtk5"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2yr4"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilbyq"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kemuk"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4pl3"] +atlas = ExtResource("1_exapy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j014o"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qjk5"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6did1"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7bh4"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud4c6"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr5w8"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdx42"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78sgp"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxvwy"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4j52"] +atlas = ExtResource("1_exapy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se6f7"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdt7m"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfrjg"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w5mu"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgoi8"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rg3h"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imvu8"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rikek"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfm30"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuo04"] +atlas = ExtResource("1_exapy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk71k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyxkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvmuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81tq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_037c4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tikxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4wwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfm3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2d2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onpdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as5fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0puhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lkij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amsca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0loq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohxag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h25u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4pgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpi7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trqnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpxpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwvgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbkpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6gki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc0o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he2u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr8wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv4df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64xt4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac0rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r1hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwdw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itgss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ovr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c3cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qipx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey1s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r5un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3yvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p35l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elaaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7glx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oess0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh4da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3fm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d0c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s506v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7k6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v03os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp8rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2nij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnogb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odgs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqtk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2yr4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilbyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kemuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4pl3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j014o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qjk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6did1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7bh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud4c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr5w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdx42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78sgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxvwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4j52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se6f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdt7m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfrjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w5mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgoi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rg3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imvu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rikek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfm30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuo04") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralprime.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralprime.tres new file mode 100644 index 0000000..22196ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_astralprime.tres @@ -0,0 +1,757 @@ +[gd_resource type="SpriteFrames" load_steps=105 format=3 uid="uid://dflmux3p86iov"] + +[ext_resource type="Texture2D" uid="uid://b3ierwik13bpu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png" id="1_1joq7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k22r"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6udyl"] +atlas = ExtResource("1_1joq7") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b08lb"] +atlas = ExtResource("1_1joq7") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smvss"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbbng"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe101"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kgs4"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j0so"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ksx"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbvuu"] +atlas = ExtResource("1_1joq7") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1040"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spa5i"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aykth"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwbkg"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_257iq"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x11i4"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv1a4"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mv2h"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ouft"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohu5r"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ubr"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg8lf"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmlvn"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlip2"] +atlas = ExtResource("1_1joq7") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dryd2"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bjbe"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywsed"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsafh"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5kxm"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb5kq"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpbrh"] +atlas = ExtResource("1_1joq7") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5204c"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iogax"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n83oh"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3o2x"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjlsl"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek66l"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcxsg"] +atlas = ExtResource("1_1joq7") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfv23"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayglt"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjs5n"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbrdl"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m4rb"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8q6x"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7dc6"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k7bw"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0kwl"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdag0"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k2no"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmi0w"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tigg"] +atlas = ExtResource("1_1joq7") +region = Rect2(1834, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dby45"] +atlas = ExtResource("1_1joq7") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33gdn"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd5s8"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhumh"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvar4"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wwyv"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vj38"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0n8g"] +atlas = ExtResource("1_1joq7") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ec7o"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3pxw"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vafid"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lccu"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1pd8"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qjtf"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4yl"] +atlas = ExtResource("1_1joq7") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqkui"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sll4m"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdie2"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8k8w"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxsy3"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqbha"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apk8p"] +atlas = ExtResource("1_1joq7") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jcej"] +atlas = ExtResource("1_1joq7") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epan6"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skm8n"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo3v7"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ekxa"] +atlas = ExtResource("1_1joq7") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uw74"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj58u"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt0yp"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iksm4"] +atlas = ExtResource("1_1joq7") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqsqx"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wee1t"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1pr2"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s7tw"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgoe8"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjcwk"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvuuu"] +atlas = ExtResource("1_1joq7") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndrek"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_femyc"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljcqy"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aod7x"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8280"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65ewp"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ai7ss"] +atlas = ExtResource("1_1joq7") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35m24"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah8ra"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwfpi"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxfja"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7daxn"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmrte"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwl4l"] +atlas = ExtResource("1_1joq7") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k22r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6udyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b08lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smvss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbbng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe101") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kgs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j0so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ksx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbvuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1040") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spa5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aykth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwbkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_257iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x11i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv1a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mv2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ouft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohu5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ubr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg8lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmlvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlip2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dryd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bjbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywsed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsafh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5kxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb5kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpbrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5204c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iogax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n83oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3o2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjlsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek66l") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcxsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfv23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayglt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjs5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbrdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m4rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8q6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7dc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k7bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0kwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdag0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k2no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmi0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tigg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dby45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33gdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd5s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhumh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvar4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wwyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vj38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0n8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ec7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3pxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vafid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lccu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1pd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qjtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu4yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqkui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sll4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdie2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8k8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxsy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqbha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apk8p") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jcej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epan6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skm8n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo3v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ekxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uw74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj58u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt0yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iksm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqsqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wee1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1pr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s7tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgoe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjcwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvuuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndrek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_femyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljcqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aod7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8280") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65ewp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ai7ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35m24") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah8ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwfpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxfja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7daxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmrte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwl4l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_azureherald.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_azureherald.tres new file mode 100644 index 0000000..1b9db68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_azureherald.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://cwqtwkata0n7c"] + +[ext_resource type="Texture2D" uid="uid://dioiolntuq4wi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png" id="1_qccg7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4hw7"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxaul"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aee3"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lnvo"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reep0"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tew8v"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rq35"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0dt5"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flkj2"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m01b"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbfaf"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6piek"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieknp"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlaip"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1mqh"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7qwl"] +atlas = ExtResource("1_qccg7") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd06c"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud34v"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbayl"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raynh"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_475s4"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnhkh"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd8fm"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us6l8"] +atlas = ExtResource("1_qccg7") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bexoe"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqwck"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xunkt"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ocg4"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0fc6"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bohm"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8y5r"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_068mx"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h54y"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tkxp"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiw1e"] +atlas = ExtResource("1_qccg7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6m18"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf0qb"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk1dy"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm8vr"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymn6v"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76e58"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t63f"] +atlas = ExtResource("1_qccg7") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgqlc"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfgwb"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qwrb"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unx71"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd7pg"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj3g4"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjkdx"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkj2j"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpq3j"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c465m"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcr72"] +atlas = ExtResource("1_qccg7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_078rb"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3m27k"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c67v"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agab1"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akoe7"] +atlas = ExtResource("1_qccg7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvwmp"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hv6d"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1v6x"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg2bc"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re8uk"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imjg5"] +atlas = ExtResource("1_qccg7") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxsqp"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofta2"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxgkm"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf0m5"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uonyx"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kywt"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t4m5"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1htbv"] +atlas = ExtResource("1_qccg7") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhj3y"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3raao"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmm18"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jech"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rha30"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucvkl"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyy8q"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjdp1"] +atlas = ExtResource("1_qccg7") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4hw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxaul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aee3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lnvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reep0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tew8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rq35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0dt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flkj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m01b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbfaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6piek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieknp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlaip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1mqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7qwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd06c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud34v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbayl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raynh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_475s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnhkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd8fm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_us6l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bexoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqwck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xunkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ocg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0fc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bohm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8y5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_068mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h54y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tkxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiw1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6m18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf0qb") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk1dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm8vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymn6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76e58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t63f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgqlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfgwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qwrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unx71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd7pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj3g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjkdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkj2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpq3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c465m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcr72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_078rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3m27k") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c67v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agab1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akoe7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvwmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hv6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1v6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg2bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re8uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imjg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxsqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofta2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxgkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf0m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uonyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kywt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t4m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1htbv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhj3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3raao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmm18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jech") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rha30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucvkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyy8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjdp1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bastion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bastion.tres new file mode 100644 index 0000000..522c770 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bastion.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://cjsk65ojfhsuf"] + +[ext_resource type="Texture2D" uid="uid://cuop44427mm55" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png" id="1_wdctc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe2xq"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evnix"] +atlas = ExtResource("1_wdctc") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsgh3"] +atlas = ExtResource("1_wdctc") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn55o"] +atlas = ExtResource("1_wdctc") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qa26"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqejv"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqljs"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fei6v"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbmg4"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox2os"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m86ky"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1bid"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ece"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi0bo"] +atlas = ExtResource("1_wdctc") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2i4l"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1giuk"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acyf7"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2axg"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am7ys"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c33wh"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n0kl"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emxjf"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4cxk"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfu1l"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eug4f"] +atlas = ExtResource("1_wdctc") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq485"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc3f2"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ph5c"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu573"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2clr"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cprs2"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k21l3"] +atlas = ExtResource("1_wdctc") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxc32"] +atlas = ExtResource("1_wdctc") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urbld"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_navpr"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5v4o"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_815jx"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyuqg"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfusc"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3dnb"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhq3w"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbt4b"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00jes"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pbfg"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jw7l"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj1dx"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ofot"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1dra"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eop2v"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as3lh"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1at3"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55tfr"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duse2"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds76o"] +atlas = ExtResource("1_wdctc") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_666s0"] +atlas = ExtResource("1_wdctc") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc81g"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj180"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw7lp"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thgai"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkl5f"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xj00"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mxre"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40kn5"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p88wy"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk18n"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vf1h"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mfns"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph3gg"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oich"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lex74"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5n73"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogps6"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggsy3"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba0uq"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k67dt"] +atlas = ExtResource("1_wdctc") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe2xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evnix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsgh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn55o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qa26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqejv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqljs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fei6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbmg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox2os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m86ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1bid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ece") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi0bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2i4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1giuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acyf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2axg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am7ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c33wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n0kl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emxjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4cxk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfu1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eug4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq485") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc3f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ph5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu573") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2clr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cprs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k21l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxc32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urbld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_navpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5v4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_815jx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyuqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfusc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3dnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhq3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbt4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00jes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pbfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jw7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj1dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ofot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1dra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eop2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as3lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1at3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55tfr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_duse2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds76o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_666s0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc81g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj180") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw7lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thgai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkl5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xj00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mxre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40kn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p88wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk18n") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vf1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mfns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph3gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oich") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lex74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5n73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogps6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggsy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba0uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k67dt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastcavern.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastcavern.tres new file mode 100644 index 0000000..20eb063 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastcavern.tres @@ -0,0 +1,421 @@ +[gd_resource type="SpriteFrames" load_steps=57 format=3 uid="uid://dcvy18kbqnw6c"] + +[ext_resource type="Texture2D" uid="uid://dorwx5h0n6hp6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png" id="1_tadeq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5shs"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lkkw"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o444"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyii0"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5txbr"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06rom"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfye1"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7a3h"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh3pa"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfhjw"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ys60"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqpo0"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyfg4"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cofp"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohnko"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7s2h"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcmng"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui3qc"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xcxy"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_speul"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fxro"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pisop"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcqne"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2q65"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35uaf"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vlre"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lv4e"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocp16"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3odyd"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbjt5"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laqeb"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfuf1"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul53w"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meoaf"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfycm"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pccq8"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n5ga"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieiuf"] +atlas = ExtResource("1_tadeq") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66dqd"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ebw"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cbnf"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxmo5"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mx0j"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erllk"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ctb6"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h42p"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiu0l"] +atlas = ExtResource("1_tadeq") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gys3r"] +atlas = ExtResource("1_tadeq") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb07g"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxvfj"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wn7x"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjvwd"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qptkt"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xrk7"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt7n7"] +atlas = ExtResource("1_tadeq") +region = Rect2(243, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5shs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lkkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o444") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyii0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5txbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06rom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfye1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7a3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh3pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfhjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ys60") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqpo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyfg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cofp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohnko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7s2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcmng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui3qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xcxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_speul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fxro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pisop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcqne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2q65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35uaf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vlre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lv4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocp16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3odyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbjt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laqeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfuf1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul53w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meoaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfycm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pccq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n5ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieiuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66dqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ebw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cbnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxmo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mx0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erllk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ctb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h42p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiu0l") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gys3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb07g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxvfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wn7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjvwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qptkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xrk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt7n7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastdarkharbinger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastdarkharbinger.tres new file mode 100644 index 0000000..1a88d02 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastdarkharbinger.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://ck2ncyjbrmd4l"] + +[ext_resource type="Texture2D" uid="uid://bxjo7reiknyfc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png" id="1_suo84"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i43p"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1q4k"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3sf3"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4wy7"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35c6o"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnat0"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsva0"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bvwp"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5q7k"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8y7m"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j072"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rt6u"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6aic"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70res"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwhcw"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ila4"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8218"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b0o2"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deny4"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ldsl"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wtcw"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3hfi"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjwk6"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2h7q"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mnbr"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkwdb"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqafr"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ssim"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq77s"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p63tn"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swr6c"] +atlas = ExtResource("1_suo84") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41y0f"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia2b5"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du3y3"] +atlas = ExtResource("1_suo84") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvo86"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiv0y"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obi8d"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12fh2"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rawb"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neks2"] +atlas = ExtResource("1_suo84") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wad1t"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0mtj"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlr78"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aooyl"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3emc"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdvsw"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck1e5"] +atlas = ExtResource("1_suo84") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxc2e"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnkhu"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx5aj"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbixy"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_740v0"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf5sx"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85wvs"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsim3"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68hft"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2x6l"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxyia"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6prt"] +atlas = ExtResource("1_suo84") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i43p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1q4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3sf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4wy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35c6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnat0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsva0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bvwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5q7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8y7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j072") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rt6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6aic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70res") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwhcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ila4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8218") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b0o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deny4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ldsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wtcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3hfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjwk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2h7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mnbr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkwdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqafr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ssim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq77s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p63tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swr6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41y0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia2b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du3y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvo86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiv0y") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_obi8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12fh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rawb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_neks2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wad1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0mtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlr78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aooyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3emc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdvsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck1e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxc2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnkhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx5aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbixy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_740v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf5sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85wvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsim3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68hft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2x6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxyia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6prt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmaster.tres new file mode 100644 index 0000000..eaa1cfc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmaster.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://cllm5tk3ripqn"] + +[ext_resource type="Texture2D" uid="uid://dnsok7byi5n4g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png" id="1_b1xd5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyxrx"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1yjy"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hicdr"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hehvm"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqb1m"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeiu6"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iar2p"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb5h8"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8263u"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bbor"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btiom"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxrmo"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mciow"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyxgv"] +atlas = ExtResource("1_b1xd5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1cih"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tetj4"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at2p6"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v35l6"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks266"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kagr0"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy5hs"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wawf"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hf2a"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q4uk"] +atlas = ExtResource("1_b1xd5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xye0y"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsr5s"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46vbm"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fikga"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpw0c"] +atlas = ExtResource("1_b1xd5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gngrx"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71e2a"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1bth"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15vkg"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw0xx"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrvne"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6sdo"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sggk"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6kjx"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjsl6"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fkwc"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kv1s0"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgfqc"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qhol"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_373as"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufohq"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b7td"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a7ji"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sp6s"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dvtm"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsq1x"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ee3p"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx42o"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21mq7"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db76m"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6si6a"] +atlas = ExtResource("1_b1xd5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j1p6"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60317"] +atlas = ExtResource("1_b1xd5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm2fy"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlugb"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xgfr"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w81n"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1jm4"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw5kt"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6je4c"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unr13"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml4sm"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ud4j"] +atlas = ExtResource("1_b1xd5") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsuuy"] +atlas = ExtResource("1_b1xd5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwtdl"] +atlas = ExtResource("1_b1xd5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gikbi"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pdkn"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tsoh"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rejr0"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlf22"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpm67"] +atlas = ExtResource("1_b1xd5") +region = Rect2(606, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyxrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1yjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hicdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hehvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqb1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeiu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iar2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb5h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8263u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bbor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btiom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxrmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mciow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyxgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1cih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tetj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at2p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v35l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks266") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kagr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy5hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wawf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hf2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q4uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xye0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsr5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46vbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fikga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpw0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gngrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71e2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1bth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15vkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw0xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrvne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6sdo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sggk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6kjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjsl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fkwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kv1s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgfqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qhol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_373as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufohq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b7td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a7ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sp6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dvtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsq1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ee3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx42o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_21mq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db76m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6si6a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j1p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60317") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm2fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlugb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xgfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w81n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1jm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw5kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6je4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unr13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml4sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ud4j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsuuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwtdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gikbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pdkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tsoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rejr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlf22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpm67") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmirkwooddevourer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmirkwooddevourer.tres new file mode 100644 index 0000000..9e70615 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastmirkwooddevourer.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://c6bn3nskcwdh7"] + +[ext_resource type="Texture2D" uid="uid://dqy5duwqk7kbc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png" id="1_qhkby"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_idbta"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfalt"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1bsq"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbvdx"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsda8"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs81x"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_judxo"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_druv6"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnnw2"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i14g5"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a1dm"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cxsp"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1r1c"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tng6q"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va4x0"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4odaj"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvqru"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8wcc"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv2ud"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8t76"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amkms"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8biuj"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50prl"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vpv7"] +atlas = ExtResource("1_qhkby") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iajn"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt5x0"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rut7p"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dwv7"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d35h"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jms2t"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u42dj"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q2ee"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utf1q"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv2ow"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbewv"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xgdv"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxavy"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jarx6"] +atlas = ExtResource("1_qhkby") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qswvc"] +atlas = ExtResource("1_qhkby") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qlt4"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irgt5"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0agr"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5525"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wgah"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xe86"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukyj4"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvkon"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t40cx"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efe63"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n5l5"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sxaq"] +atlas = ExtResource("1_qhkby") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t32qb"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvxxn"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vvi1"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox605"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55ggt"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_disna"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pefly"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbo6e"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amx1b"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvmmp"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf4cv"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irpfd"] +atlas = ExtResource("1_qhkby") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_idbta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfalt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1bsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbvdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsda8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs81x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_judxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_druv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnnw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i14g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a1dm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cxsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1r1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tng6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_va4x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4odaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvqru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8wcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv2ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8t76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amkms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8biuj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_50prl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vpv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iajn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt5x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rut7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dwv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d35h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jms2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u42dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q2ee") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_utf1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv2ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbewv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xgdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxavy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jarx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qswvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qlt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irgt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0agr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5525") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wgah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xe86") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukyj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvkon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t40cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efe63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n5l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sxaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t32qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvxxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vvi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox605") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_55ggt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_disna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pefly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbo6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amx1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvmmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf4cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irpfd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastphasehound.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastphasehound.tres new file mode 100644 index 0000000..f187aee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastphasehound.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://d07byi4rs2nle"] + +[ext_resource type="Texture2D" uid="uid://8noi3vew6v2n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png" id="1_kokv2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_auplh"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkkm6"] +atlas = ExtResource("1_kokv2") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb5rj"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1c1x"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghdpl"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4s7f"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udg6p"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df2u2"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0mhr"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkcuf"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s02kb"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on6y5"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7fus"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmemw"] +atlas = ExtResource("1_kokv2") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4513"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwwpc"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg423"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngbwm"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i26s"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha7kr"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6kmm"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1tjo"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itsh6"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yynu4"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1id5"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lvqj"] +atlas = ExtResource("1_kokv2") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcn84"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfymv"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohpg1"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvmgs"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbn3l"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc7ky"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syqiw"] +atlas = ExtResource("1_kokv2") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcw2e"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsytk"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60p6i"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3j3g"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns06q"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8oup"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysyak"] +atlas = ExtResource("1_kokv2") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqsut"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkb44"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmxv4"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qs7i"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e1j4"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgdkw"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg41e"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cavxv"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t058y"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vlds"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ut7"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vgq2"] +atlas = ExtResource("1_kokv2") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_auplh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkkm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb5rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1c1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghdpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4s7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udg6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df2u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0mhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkcuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s02kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on6y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7fus") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmemw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4513") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwwpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg423") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngbwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i26s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha7kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6kmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1tjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itsh6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yynu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1id5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lvqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcn84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfymv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohpg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvmgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbn3l") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc7ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syqiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcw2e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsytk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60p6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3j3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns06q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8oup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysyak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqsut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkb44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmxv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qs7i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e1j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgdkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg41e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cavxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t058y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vlds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ut7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vgq2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastrepulsion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastrepulsion.tres new file mode 100644 index 0000000..084bee2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastrepulsion.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://b3sfw6muh1v2a"] + +[ext_resource type="Texture2D" uid="uid://bxqsrcd5jjpg5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png" id="1_mrmim"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_35a22"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exytu"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsk2s"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0nth"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xx7o"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g176j"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saud2"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bcmd"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncdto"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nkts"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u86ox"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si6nb"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_endah"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fb3r"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvcia"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5x7c"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1mol"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d08nc"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt0bt"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls47j"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_763j6"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlqh1"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhfgp"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p231"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i44x"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kp68"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2dfb"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1n6t"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxclg"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d08ri"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3khn"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkp01"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m472"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7oqy"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8dwg"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o7ia"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpqy3"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wue15"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feu37"] +atlas = ExtResource("1_mrmim") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kif33"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8goa"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hdak"] +atlas = ExtResource("1_mrmim") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwshk"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_golf2"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i8pk"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs277"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f77qc"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdrw8"] +atlas = ExtResource("1_mrmim") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8w45"] +atlas = ExtResource("1_mrmim") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6413x"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5inx4"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jwil"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei13t"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lu2ki"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efx5e"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g55fm"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxski"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvnrq"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaf1t"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibv6k"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl7m3"] +atlas = ExtResource("1_mrmim") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_35a22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exytu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsk2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0nth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xx7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g176j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saud2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bcmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncdto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nkts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u86ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si6nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_endah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fb3r") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvcia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5x7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1mol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d08nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt0bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls47j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_763j6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlqh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhfgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p231") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i44x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kp68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2dfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1n6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxclg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d08ri") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3khn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkp01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m472") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7oqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8dwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o7ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpqy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wue15") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_feu37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kif33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8goa") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hdak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwshk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_golf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i8pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs277") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f77qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdrw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8w45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6413x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5inx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jwil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei13t") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lu2ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efx5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g55fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxski") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvnrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaf1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibv6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl7m3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastsaberspinetiger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastsaberspinetiger.tres new file mode 100644 index 0000000..a9d5505 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastsaberspinetiger.tres @@ -0,0 +1,379 @@ +[gd_resource type="SpriteFrames" load_steps=51 format=3 uid="uid://d2wrd0kxfy5fr"] + +[ext_resource type="Texture2D" uid="uid://cty5gguk2uryc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png" id="1_4okpu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dx81"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_porlp"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvqb1"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrveo"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sey0p"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2bmp"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se5uf"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n42wu"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uci5p"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dhlw"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0pu5"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcobh"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui4lg"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7thxw"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5kfl"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8iag"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqmle"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwh5e"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olgnj"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iv0y"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcb1u"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsa2d"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08ly5"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1yu"] +atlas = ExtResource("1_4okpu") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k5jo"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umvn7"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n02h"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_317vs"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7wks"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3yar"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exa60"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucjd1"] +atlas = ExtResource("1_4okpu") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2efm"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k3xv"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pehwn"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow8wf"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bocen"] +atlas = ExtResource("1_4okpu") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrk25"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3k16"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rxqq"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgwmj"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2s8u"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4aot"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bma5i"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imuqf"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f63k5"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r32wj"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reti1"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7pk1"] +atlas = ExtResource("1_4okpu") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dx81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_porlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvqb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrveo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sey0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2bmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se5uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n42wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uci5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dhlw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0pu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcobh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui4lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7thxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5kfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8iag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqmle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwh5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olgnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iv0y") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcb1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsa2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08ly5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k5jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umvn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n02h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_317vs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7wks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3yar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exa60") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucjd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2efm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k3xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pehwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow8wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bocen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3k16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rxqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgwmj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2s8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4aot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bma5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imuqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f63k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r32wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reti1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7pk1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastswamp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastswamp.tres new file mode 100644 index 0000000..77dc6b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_beastswamp.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://yh53h3prdn2j"] + +[ext_resource type="Texture2D" uid="uid://m8wmp7y0aobh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png" id="1_gqi4a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvpgt"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcsw3"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q2mi"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hkft"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i450p"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52h5r"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6lv5"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0yhv"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r2pd"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2unvp"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wb6v"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqlnd"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa4vf"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiccm"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxl0k"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in2t8"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50vfv"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ndxt"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gofbj"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8c6n"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0q7m"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn2sw"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkchu"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy54k"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0obv"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhxqk"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pee00"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vitj"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsxth"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nscg"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vtcy"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liwad"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0syy3"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu705"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plqpf"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24mle"] +atlas = ExtResource("1_gqi4a") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n3pe"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7113t"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plcxx"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8igf"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lay68"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iml5e"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoi12"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otpk0"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ixlh"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjv67"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrrws"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emppf"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srutf"] +atlas = ExtResource("1_gqi4a") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3eju"] +atlas = ExtResource("1_gqi4a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_botoy"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqtcs"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdfrs"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52emx"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv25k"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioerc"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxf2a"] +atlas = ExtResource("1_gqi4a") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tti4f"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7dct"] +atlas = ExtResource("1_gqi4a") +region = Rect2(243, 810, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvpgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcsw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q2mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hkft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i450p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52h5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6lv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0yhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r2pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2unvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wb6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqlnd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa4vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiccm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxl0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in2t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50vfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ndxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gofbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8c6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0q7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn2sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkchu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy54k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0obv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhxqk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pee00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vitj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsxth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nscg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vtcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liwad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0syy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu705") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_plqpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24mle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n3pe") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7113t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plcxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8igf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lay68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iml5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoi12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otpk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ixlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjv67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrrws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emppf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srutf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3eju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_botoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqtcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdfrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52emx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv25k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioerc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxf2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tti4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7dct") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blacklocust.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blacklocust.tres new file mode 100644 index 0000000..baae9fe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blacklocust.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://jcbjyoikrpwl"] + +[ext_resource type="Texture2D" uid="uid://cugkcfmc0nbxa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png" id="1_glvcu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvgbv"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkkbw"] +atlas = ExtResource("1_glvcu") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umucp"] +atlas = ExtResource("1_glvcu") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcfmm"] +atlas = ExtResource("1_glvcu") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaove"] +atlas = ExtResource("1_glvcu") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clcix"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfswn"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd8e1"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfsf6"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86frx"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74446"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h4dk"] +atlas = ExtResource("1_glvcu") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i85vj"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oieed"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4ub7"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx2tj"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0ccv"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgg7r"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76ll7"] +atlas = ExtResource("1_glvcu") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85osw"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iscos"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykvk3"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfvtr"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7run"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efjbc"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm8eu"] +atlas = ExtResource("1_glvcu") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3mdj"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqxon"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y38la"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw6ib"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xf4k"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiffj"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43m55"] +atlas = ExtResource("1_glvcu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa8pg"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moqqk"] +atlas = ExtResource("1_glvcu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1gie"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3xjm"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqchr"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blfkj"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub705"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqisv"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj10c"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk11y"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nbvw"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha0ie"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3r6x"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcvvk"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uls6j"] +atlas = ExtResource("1_glvcu") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7far"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj4aa"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4ww0"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrv1q"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05aln"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocn5i"] +atlas = ExtResource("1_glvcu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgfg2"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm1n3"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s58t6"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgyhk"] +atlas = ExtResource("1_glvcu") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue6k8"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkjx8"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8j6w"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11s1k"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mykqv"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl5r2"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tk6d"] +atlas = ExtResource("1_glvcu") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrocg"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrtvq"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6yxw"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr2by"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8jb7"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v2bc"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2dp5"] +atlas = ExtResource("1_glvcu") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvgbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkkbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umucp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcfmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaove") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clcix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfswn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd8e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfsf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86frx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74446") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h4dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i85vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oieed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4ub7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx2tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0ccv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgg7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76ll7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85osw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iscos") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykvk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfvtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7run") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efjbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm8eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3mdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqxon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y38la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw6ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xf4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiffj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43m55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa8pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moqqk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1gie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3xjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqchr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blfkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub705") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqisv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj10c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk11y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nbvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha0ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3r6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcvvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uls6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7far") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj4aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4ww0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrv1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05aln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocn5i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgfg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm1n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s58t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgyhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue6k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkjx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8j6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11s1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mykqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl5r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tk6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrocg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrtvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6yxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr2by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8jb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v2bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2dp5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blisteringscorn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blisteringscorn.tres new file mode 100644 index 0000000..0b89459 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blisteringscorn.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://7ifatbggipn4"] + +[ext_resource type="Texture2D" uid="uid://bcahoftliwip1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png" id="1_tri6t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrkd1"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8i0u"] +atlas = ExtResource("1_tri6t") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsc1v"] +atlas = ExtResource("1_tri6t") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoi58"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llwca"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu424"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlhdq"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pivj"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnkux"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08anr"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7w3q"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14o6n"] +atlas = ExtResource("1_tri6t") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5rhl"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5m4j"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uttj"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaa1t"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxwxx"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x68l3"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulgrc"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrgad"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etdsm"] +atlas = ExtResource("1_tri6t") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0wn0"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xiys"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igfqj"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmk3a"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kauyk"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_680jb"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wr18"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjbg4"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33eeh"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccdk1"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qju74"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onou4"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcwu0"] +atlas = ExtResource("1_tri6t") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovg3u"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugmh4"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyqyo"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgrbo"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x22h0"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmoht"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4a37"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ioqy"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8n7g"] +atlas = ExtResource("1_tri6t") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4f5v"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt7ov"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gjsh"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1y32"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni3la"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yp4j"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsvw8"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2cla"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oibaf"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q825l"] +atlas = ExtResource("1_tri6t") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbgtc"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opmx4"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht0ta"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi57l"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa04d"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy33t"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptg3r"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ihi"] +atlas = ExtResource("1_tri6t") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csckd"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id2c2"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ml2"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ne8a"] +atlas = ExtResource("1_tri6t") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd0el"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at8gh"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7r6b"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgxb4"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igh1t"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t121a"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sclfa"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5ytl"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1de1"] +atlas = ExtResource("1_tri6t") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht06t"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm06i"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc8hb"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4mvb"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwp5v"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge7mq"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe2jn"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voywn"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xsac"] +atlas = ExtResource("1_tri6t") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrkd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8i0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsc1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoi58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llwca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu424") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlhdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pivj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnkux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08anr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7w3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14o6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5rhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5m4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uttj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaa1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxwxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x68l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulgrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrgad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etdsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0wn0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xiys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igfqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmk3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kauyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_680jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wr18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjbg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33eeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccdk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qju74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onou4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcwu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovg3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugmh4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyqyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgrbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x22h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmoht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4a37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ioqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8n7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4f5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt7ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gjsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1y32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni3la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yp4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsvw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2cla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oibaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q825l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbgtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opmx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht0ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi57l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa04d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy33t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptg3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ihi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_csckd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id2c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ml2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ne8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd0el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at8gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7r6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgxb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igh1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t121a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sclfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5ytl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1de1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht06t") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm06i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc8hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4mvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwp5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge7mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe2jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voywn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xsac") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodletter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodletter.tres new file mode 100644 index 0000000..5c6bd0f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodletter.tres @@ -0,0 +1,799 @@ +[gd_resource type="SpriteFrames" load_steps=111 format=3 uid="uid://yti1swsv2udf"] + +[ext_resource type="Texture2D" uid="uid://bei782kjna5x0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png" id="1_k845d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kkl7"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbmqx"] +atlas = ExtResource("1_k845d") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol6u5"] +atlas = ExtResource("1_k845d") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vog34"] +atlas = ExtResource("1_k845d") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kngnv"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m35ht"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eudmt"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6bip"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flk8g"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raf6o"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snrqg"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m7gr"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blj35"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpsmh"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0oep"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4ija"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8im28"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu34f"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clo8n"] +atlas = ExtResource("1_k845d") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfkpk"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymnr"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e02h5"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7st3e"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aebxn"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l4f6"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7bil"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogex0"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msqbn"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pks3"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6csd"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnbhe"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r43ei"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qomvr"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vva2"] +atlas = ExtResource("1_k845d") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5826r"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmkkd"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8guwr"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7rje"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyxvw"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q8a6"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgmek"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdhm4"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6hnq"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnr4u"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uamt"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4l7d"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8g8p"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky6pf"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c7b4"] +atlas = ExtResource("1_k845d") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wjkm"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiwgi"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6o1u"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34i5e"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgjhx"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do655"] +atlas = ExtResource("1_k845d") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihul7"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oujo4"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibu16"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyf2f"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3djt"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v421r"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpnb2"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_li8kk"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx0pk"] +atlas = ExtResource("1_k845d") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1s7c"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r07b"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n35n"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd275"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21xt2"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_visw2"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsjt6"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udopa"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u86e"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxnv2"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bw83"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr1q1"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw55f"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lidjv"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_005i5"] +atlas = ExtResource("1_k845d") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqud8"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lxdm"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m27o6"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1r4i"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piua0"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wro3"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asnlp"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8raaw"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42dk7"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auiwn"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66vsy"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2agx"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11tyd"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_740nq"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8c42"] +atlas = ExtResource("1_k845d") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vcli"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1834, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l06o2"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1703, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5dc0"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1572, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5qmy"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1441, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2voad"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1310, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab3jf"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1179, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdbvs"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 1048, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wxwn"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 917, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdn5e"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uregh"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm6o7"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taw74"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3bxp"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i07yl"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62gfv"] +atlas = ExtResource("1_k845d") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kkl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbmqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol6u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vog34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kngnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m35ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eudmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6bip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flk8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raf6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snrqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m7gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blj35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpsmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0oep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4ija") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8im28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu34f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clo8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfkpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e02h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7st3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aebxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l4f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7bil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogex0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msqbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pks3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6csd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnbhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r43ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qomvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vva2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5826r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmkkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8guwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7rje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyxvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q8a6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgmek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdhm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6hnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnr4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uamt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4l7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8g8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky6pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c7b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wjkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiwgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6o1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34i5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgjhx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_do655") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihul7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oujo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibu16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyf2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3djt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v421r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpnb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_li8kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx0pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1s7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r07b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n35n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd275") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21xt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_visw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsjt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udopa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u86e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxnv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bw83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr1q1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw55f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lidjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_005i5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqud8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lxdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m27o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1r4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wro3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asnlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8raaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42dk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auiwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66vsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2agx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11tyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_740nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8c42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vcli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l06o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5dc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5qmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2voad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab3jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdbvs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wxwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdn5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uregh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm6o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taw74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3bxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i07yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62gfv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodstonealchemist.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodstonealchemist.tres new file mode 100644 index 0000000..893c8e2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bloodstonealchemist.tres @@ -0,0 +1,680 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://svgxynn3xces"] + +[ext_resource type="Texture2D" uid="uid://d1xc8cwexhbob" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png" id="1_uc3b3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1upng"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8p4w"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugdyt"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1scc2"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj2i5"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ovyd"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duw0a"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlw2k"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmkyu"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvcg8"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n161"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lbju"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52eg8"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u665"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwbnv"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kmrh"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv6p2"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3r5h"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fcf5"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_673p2"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8dxm"] +atlas = ExtResource("1_uc3b3") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5thqj"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugeeb"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rajf"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bvx7"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubr50"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itt7g"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1w3l"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y74mb"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqeqt"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s23gm"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oh2i"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rgkl"] +atlas = ExtResource("1_uc3b3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ofni"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ob23"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy85l"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qigqv"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s108g"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erpfc"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjqrf"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5dk7"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21eb2"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0624b"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wllmh"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb8l0"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvi77"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk3xt"] +atlas = ExtResource("1_uc3b3") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5e06"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1eek"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsiko"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6pmi"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa344"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snmit"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vnvr"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp71o"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syejd"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwr1e"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w7r5"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jloi"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dtuk"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy3yk"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd6qm"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ckfr"] +atlas = ExtResource("1_uc3b3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_str2g"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7bnd"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwtej"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrkqa"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mlvs"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ocsi"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o30ck"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da5wy"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj4r8"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1fdx"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q70n0"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyilu"] +atlas = ExtResource("1_uc3b3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mimax"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rub2a"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yio6"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2gj"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u66u"] +atlas = ExtResource("1_uc3b3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgma6"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n83ww"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbdk6"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7c1s"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql5ss"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_775av"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asttp"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oujb3"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu87r"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgv3c"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcrf8"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbkk4"] +atlas = ExtResource("1_uc3b3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1upng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8p4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugdyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1scc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj2i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ovyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duw0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlw2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmkyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvcg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n161") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lbju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52eg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u665") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwbnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kmrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv6p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3r5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fcf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_673p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8dxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5thqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugeeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rajf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bvx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubr50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itt7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1w3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y74mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqeqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s23gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oh2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rgkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ofni") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ob23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy85l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qigqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s108g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erpfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjqrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5dk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21eb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0624b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wllmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb8l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvi77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk3xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5e06") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1eek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsiko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6pmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa344") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snmit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vnvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp71o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syejd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwr1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w7r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jloi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dtuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy3yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd6qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ckfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_str2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7bnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwtej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrkqa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mlvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ocsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o30ck") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_da5wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj4r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1fdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q70n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyilu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mimax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rub2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yio6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u66u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgma6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n83ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbdk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7c1s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql5ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_775av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asttp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oujb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu87r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgv3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcrf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbkk4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blueconjurer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blueconjurer.tres new file mode 100644 index 0000000..149f16d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_blueconjurer.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://dr78q2cvhtrms"] + +[ext_resource type="Texture2D" uid="uid://yfnvm6lw3p6a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png" id="1_ge8kt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ova1b"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f2ff"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uqlm"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw3n6"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufh7m"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6dsc"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsun7"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3jf2"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyqlo"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8xtr"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7loe0"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ate"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lkus"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa7lf"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a566l"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tagq7"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kkhy"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnahi"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2kr8"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fy4v"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpofd"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueh5i"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewkc8"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u3al"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xernl"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60yu0"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mwfd"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kggy1"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7hcd"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amemw"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78ht4"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdv1n"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cafbp"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g23f4"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oyex"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3naf"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7fpq"] +atlas = ExtResource("1_ge8kt") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48uc1"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op5vl"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb6rh"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rif3i"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iadf"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooxyx"] +atlas = ExtResource("1_ge8kt") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2ags"] +atlas = ExtResource("1_ge8kt") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbwpl"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyvm0"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujj74"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6u8b"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8ddl"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kxt1"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrh6y"] +atlas = ExtResource("1_ge8kt") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8a56"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igbmt"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_816my"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wybp"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_214jn"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjvh5"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl2st"] +atlas = ExtResource("1_ge8kt") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5gqj"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82f8t"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgiqi"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdm55"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsman"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i2gy"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gup6y"] +atlas = ExtResource("1_ge8kt") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn8bn"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs043"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr654"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vfij"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85aj1"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttt4i"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrfdt"] +atlas = ExtResource("1_ge8kt") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ryda"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o802"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_selnk"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvv1b"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tv6p"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui8si"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4b11"] +atlas = ExtResource("1_ge8kt") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n0nh"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxl1b"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wsvh"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj2fs"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_720qs"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhop2"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc57n"] +atlas = ExtResource("1_ge8kt") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ova1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f2ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uqlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw3n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufh7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6dsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsun7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3jf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyqlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8xtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7loe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ate") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lkus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa7lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a566l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tagq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kkhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnahi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2kr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fy4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpofd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueh5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewkc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u3al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xernl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60yu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mwfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kggy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7hcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amemw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78ht4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdv1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cafbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g23f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oyex") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3naf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7fpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48uc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op5vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb6rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rif3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iadf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooxyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2ags") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbwpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyvm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujj74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6u8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8ddl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kxt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrh6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8a56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igbmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_816my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_214jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjvh5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl2st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5gqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82f8t") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgiqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdm55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsman") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i2gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gup6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn8bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs043") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr654") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vfij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85aj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttt4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrfdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ryda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o802") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_selnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvv1b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tv6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui8si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4b11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n0nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxl1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wsvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_720qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhop2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc57n") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bonereaper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bonereaper.tres new file mode 100644 index 0000000..ce917fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_bonereaper.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://daajxel4cw37e"] + +[ext_resource type="Texture2D" uid="uid://ctfc60u6rsmwh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png" id="1_5idly"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_421of"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weasn"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otna1"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joe0s"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a6yh"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fc87"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hbki"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3vvi"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rv4y"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq3yw"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvifh"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nw4h"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvade"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qre0v"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kfgl"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07me3"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lorj5"] +atlas = ExtResource("1_5idly") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yjv0"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5llgs"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuoex"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l21h"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbg2n"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6a3x"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s05bs"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xxb7"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8gus"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuf2v"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k44h"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwsqo"] +atlas = ExtResource("1_5idly") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbvfm"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qskmp"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8gi6"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0nhr"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7dkp"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvdul"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wggav"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6kfw"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2jun"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue6h4"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j85yc"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ncai"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gkp0"] +atlas = ExtResource("1_5idly") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afikq"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3hob"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lndba"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi7qy"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4i6y"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_megvg"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti2g3"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vwcb"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt1bh"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72sie"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txanl"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7egnk"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmwat"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxtn4"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edu2c"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guwbs"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anr7e"] +atlas = ExtResource("1_5idly") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yat4"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw2rk"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaa7n"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ykce"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aql7v"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po4gu"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfuuy"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvnbm"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwrq4"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdw43"] +atlas = ExtResource("1_5idly") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u0mi"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naqgw"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mveqi"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlb3m"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkvjb"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wliyp"] +atlas = ExtResource("1_5idly") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqyau"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxpqw"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp20v"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s063t"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbaqo"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5ujm"] +atlas = ExtResource("1_5idly") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8b76"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g3fc"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm1cp"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdhl"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmtya"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2flip"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctcj3"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfard"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3d7f"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6xjd"] +atlas = ExtResource("1_5idly") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrlce"] +atlas = ExtResource("1_5idly") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yig1q"] +atlas = ExtResource("1_5idly") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1p23"] +atlas = ExtResource("1_5idly") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n763v"] +atlas = ExtResource("1_5idly") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxxe4"] +atlas = ExtResource("1_5idly") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsgxk"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3cdf"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muvy6"] +atlas = ExtResource("1_5idly") +region = Rect2(808, 707, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_421of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weasn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otna1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joe0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a6yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fc87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hbki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3vvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rv4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq3yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nw4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvade") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qre0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kfgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07me3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lorj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yjv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5llgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuoex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l21h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbg2n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6a3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s05bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xxb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8gus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuf2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k44h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwsqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbvfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qskmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8gi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0nhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7dkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvdul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wggav") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6kfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2jun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue6h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j85yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ncai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gkp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afikq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3hob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lndba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi7qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4i6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_megvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti2g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vwcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt1bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72sie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txanl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7egnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmwat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxtn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edu2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guwbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anr7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yat4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw2rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaa7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ykce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aql7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po4gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfuuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvnbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwrq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdw43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u0mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naqgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mveqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlb3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkvjb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wliyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqyau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxpqw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp20v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s063t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbaqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5ujm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8b76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g3fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm1cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmtya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2flip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctcj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfard") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3d7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6xjd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrlce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yig1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1p23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n763v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxxe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsgxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3cdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muvy6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderbreach.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderbreach.tres new file mode 100644 index 0000000..2498af2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderbreach.tres @@ -0,0 +1,820 @@ +[gd_resource type="SpriteFrames" load_steps=114 format=3 uid="uid://d3g8wth85ap15"] + +[ext_resource type="Texture2D" uid="uid://b753c0casoefa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png" id="1_mwi3u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvx8o"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6flym"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljuc8"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xffr"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8njl"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cgj0"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh407"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv168"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agt8c"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7kjr"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vag5s"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqq6r"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or0wb"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ih0g"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eixv"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mm44"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2q1v"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgu4x"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwc2v"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pngsx"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlblr"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v585"] +atlas = ExtResource("1_mwi3u") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0weow"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3foky"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl665"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk23c"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vilym"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh8on"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4sej"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu2sm"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e7qu"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddhh3"] +atlas = ExtResource("1_mwi3u") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td60w"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ev8m"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2purx"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaeda"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kijxr"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqcye"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctmk4"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipafa"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihwnl"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev4ni"] +atlas = ExtResource("1_mwi3u") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5xee"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5t80"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hhm4"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0vxe"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpsgo"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v6dp"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en7ll"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5esdh"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it7lc"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86m4i"] +atlas = ExtResource("1_mwi3u") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahhl2"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iinrw"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25tik"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6mb6"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qsxd"] +atlas = ExtResource("1_mwi3u") +region = Rect2(1111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dud0v"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwk1s"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5x1p"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5s82"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysjip"] +atlas = ExtResource("1_mwi3u") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fage"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbu4m"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25mo3"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvw2"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0nny"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urvhy"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cfiq"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cyq0"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8kfp"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbjgc"] +atlas = ExtResource("1_mwi3u") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byudo"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u24t3"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iihw"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owg5a"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk6n0"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af5x6"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iao6h"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jm1l"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdjrm"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76ocw"] +atlas = ExtResource("1_mwi3u") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gvsu"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xosjm"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvyqg"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bvpw"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmy06"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iibq"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn2jm"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifc3w"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kswfd"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5idt3"] +atlas = ExtResource("1_mwi3u") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i6hj"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urqw8"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmoas"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36ug3"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adina"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aatt"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2b82"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nfgx"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5exmx"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eto32"] +atlas = ExtResource("1_mwi3u") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnnpm"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooibu"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3hui"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4or12"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pspby"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6av2"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gqn2"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgmet"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jjd7"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwfda"] +atlas = ExtResource("1_mwi3u") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvx8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6flym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljuc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xffr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8njl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cgj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh407") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv168") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agt8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7kjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vag5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqq6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or0wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ih0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eixv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mm44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2q1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgu4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwc2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pngsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlblr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v585") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0weow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3foky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl665") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk23c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vilym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh8on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4sej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu2sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e7qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddhh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td60w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ev8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2purx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaeda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kijxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqcye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctmk4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipafa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihwnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev4ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5xee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5t80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hhm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0vxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpsgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v6dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5esdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it7lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86m4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahhl2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iinrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25tik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6mb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qsxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dud0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwk1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5x1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5s82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysjip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fage") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbu4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25mo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0nny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urvhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cfiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cyq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8kfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbjgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byudo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u24t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iihw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owg5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk6n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af5x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iao6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jm1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdjrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76ocw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gvsu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xosjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvyqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bvpw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmy06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iibq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn2jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifc3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kswfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5idt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i6hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urqw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmoas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36ug3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adina") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aatt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2b82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nfgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5exmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eto32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnnpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooibu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3hui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4or12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pspby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6av2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gqn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgmet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jjd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwfda") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderhurler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderhurler.tres new file mode 100644 index 0000000..236221a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_boulderhurler.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://b3odbs5klmo35"] + +[ext_resource type="Texture2D" uid="uid://382yxh1xbfxs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png" id="1_wm3x1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk653"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y07r2"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro8b3"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1q05"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd6jn"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ulk"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtdc6"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymlhi"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yivdd"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ept4b"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnwsq"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h852q"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tji7o"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hqsl"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kac0l"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br34i"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwfa2"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6q1t"] +atlas = ExtResource("1_wm3x1") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot3ft"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46qxv"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l1xr"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knpbc"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5so4s"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyey1"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3oxir"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi23e"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqygr"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwkp7"] +atlas = ExtResource("1_wm3x1") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmoom"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c8hr"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5o46"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42seb"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umsn5"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asgku"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an0k7"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoa7h"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qxct"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02c3i"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqwpm"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mksog"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wlsn"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an0ev"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agahc"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvynb"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxe7l"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31dly"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl37t"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tepgm"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga1cr"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t8ts"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r07ck"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psng6"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt2s6"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jae4k"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft1lx"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnttx"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3axdk"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcx5k"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elajk"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnsqf"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2qe5"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahg3p"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usfgr"] +atlas = ExtResource("1_wm3x1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ifhi"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cexxd"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d42s0"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skqmh"] +atlas = ExtResource("1_wm3x1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ear"] +atlas = ExtResource("1_wm3x1") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81p6n"] +atlas = ExtResource("1_wm3x1") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7q6o"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlnrh"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y5yb"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kkkx"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmdbh"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da3mu"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hdb4"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxr4f"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4rdx"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78skq"] +atlas = ExtResource("1_wm3x1") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk653") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y07r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro8b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1q05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd6jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ulk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtdc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymlhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yivdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ept4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnwsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h852q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tji7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hqsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kac0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br34i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwfa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6q1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot3ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46qxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l1xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knpbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5so4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyey1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3oxir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi23e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqygr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwkp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmoom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c8hr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5o46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42seb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umsn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asgku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an0k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoa7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qxct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02c3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqwpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mksog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wlsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an0ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agahc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvynb") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxe7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31dly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl37t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tepgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga1cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t8ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r07ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psng6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt2s6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jae4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft1lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnttx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3axdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcx5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elajk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnsqf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2qe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahg3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usfgr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ifhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cexxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d42s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skqmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ear") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81p6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7q6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlnrh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y5yb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kkkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmdbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da3mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hdb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxr4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4rdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78skq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildcommon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildcommon.tres new file mode 100644 index 0000000..5399bc2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildcommon.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://d0lr8ktu35005"] + +[ext_resource type="Texture2D" uid="uid://t07u8kbrripb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png" id="1_lvrss"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayduh"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giv60"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qjp2"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml0ej"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7ab4"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3s80"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atnx2"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imcun"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fn0sj"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liqqc"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws6bw"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfged"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig80k"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yue46"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hahq"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi0i3"] +atlas = ExtResource("1_lvrss") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qljbk"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3t3r"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vakfl"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj5xm"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abw03"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h300"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06ys6"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg6g1"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juvpw"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjrpr"] +atlas = ExtResource("1_lvrss") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bivsg"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylusr"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_432c3"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uktqd"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtg3i"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmxgt"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmy75"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tebgn"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5070y"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6u4o"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vva0s"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h1oc"] +atlas = ExtResource("1_lvrss") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlubq"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wppod"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flwyo"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n13f8"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n7g8"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpybp"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxyqm"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_docqd"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqyx8"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkyu1"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tloav"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy7gn"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0au0w"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6lnt"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fx41"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cym0"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pfv4"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5j07"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as6h6"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s51f"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_550hg"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lus7w"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmivo"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiden"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k3ny"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfmtd"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc8u3"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvu3l"] +atlas = ExtResource("1_lvrss") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jt7f"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16kt7"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ighw2"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0uev"] +atlas = ExtResource("1_lvrss") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kgkn"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66t2p"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgbn6"] +atlas = ExtResource("1_lvrss") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtp7o"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28si4"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j235q"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nv1a"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crdxs"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p46tm"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwuln"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3f10"] +atlas = ExtResource("1_lvrss") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayduh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giv60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qjp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml0ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7ab4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3s80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atnx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imcun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fn0sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liqqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws6bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfged") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig80k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yue46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hahq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi0i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qljbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3t3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vakfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj5xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abw03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h300") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06ys6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg6g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juvpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjrpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bivsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylusr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_432c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uktqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtg3i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmxgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmy75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tebgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5070y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6u4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vva0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h1oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlubq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wppod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flwyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n13f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n7g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxyqm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_docqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqyx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkyu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tloav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy7gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0au0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6lnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fx41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cym0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pfv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5j07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as6h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s51f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_550hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lus7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmivo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiden") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k3ny") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfmtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc8u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvu3l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jt7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16kt7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ighw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0uev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kgkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66t2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgbn6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtp7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28si4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j235q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nv1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crdxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p46tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwuln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3f10") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildepic.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildepic.tres new file mode 100644 index 0000000..ae43dff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildepic.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://bi61yc5neng3t"] + +[ext_resource type="Texture2D" uid="uid://cbmdo7khycu6t" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png" id="1_2p7ey"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_emr3i"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrefv"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83tci"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skeop"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2psxc"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qytb2"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmx73"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nngjj"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emiwm"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52ufx"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3csn8"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltqyn"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eidy"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6x56"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0kva"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecfoi"] +atlas = ExtResource("1_2p7ey") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdtfm"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whotn"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acc2y"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b3uy"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6d32"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtmrp"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ffl"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctmbv"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd4ny"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hs6j"] +atlas = ExtResource("1_2p7ey") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqi3l"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut422"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipvyn"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrd0i"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsspx"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m542"] +atlas = ExtResource("1_2p7ey") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a261r"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5et5"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5apx8"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2mjv"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65wb7"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4ate"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r88fk"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0neo0"] +atlas = ExtResource("1_2p7ey") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iax4e"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y8a0"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tpu5"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oppnd"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whuax"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2u6g"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46o6p"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1scxj"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un21e"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n7q6"] +atlas = ExtResource("1_2p7ey") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am6f0"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fnon"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft2ma"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sit4v"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urdov"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b04l"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5adn3"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adofg"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8a0t"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnm5a"] +atlas = ExtResource("1_2p7ey") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwrrl"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j616"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piccf"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3t77"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a025"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kit30"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awg7b"] +atlas = ExtResource("1_2p7ey") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_our3k"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci8xv"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iauem"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvc6a"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmgon"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1i38"] +atlas = ExtResource("1_2p7ey") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2sna"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pht8"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvr05"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujawv"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g04kk"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvehx"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtkf2"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya0ua"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbt0x"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt33p"] +atlas = ExtResource("1_2p7ey") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiogs"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j8u6"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j2i1"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwdba"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8niem"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3gc7"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y26tm"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g3jk"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_728yx"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiu56"] +atlas = ExtResource("1_2p7ey") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emr3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrefv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83tci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skeop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2psxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qytb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmx73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nngjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emiwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52ufx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3csn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltqyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eidy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6x56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0kva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecfoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdtfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whotn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acc2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b3uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6d32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtmrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3ffl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctmbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd4ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hs6j") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqi3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut422") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipvyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrd0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsspx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m542") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a261r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5et5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5apx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2mjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65wb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4ate") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r88fk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0neo0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iax4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y8a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tpu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oppnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whuax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2u6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46o6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1scxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un21e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n7q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am6f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fnon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft2ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sit4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urdov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b04l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5adn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adofg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8a0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnm5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwrrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j616") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piccf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3t77") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a025") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kit30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awg7b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_our3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci8xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iauem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvc6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmgon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1i38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2sna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pht8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvr05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujawv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g04kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvehx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtkf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya0ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbt0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt33p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiogs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j8u6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j2i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwdba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8niem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3gc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y26tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g3jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_728yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiu56") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildminion.tres new file mode 100644 index 0000000..ce7929b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_buildminion.tres @@ -0,0 +1,542 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://dh6y70l13horg"] + +[ext_resource type="Texture2D" uid="uid://b6xp60pipevte" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png" id="1_cjp4e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4mob"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie5ay"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8hax"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vevhy"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmh54"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em3x0"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5osrt"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_debks"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crn33"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shmtn"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yks0l"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sxrj"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrdkm"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyutd"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bbha"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdc3d"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0vlp"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0w42"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2un8m"] +atlas = ExtResource("1_cjp4e") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy71i"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2g0j"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emj1s"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn3hs"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qinni"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tcqc"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5hri"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwwdl"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8jdd"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdtcf"] +atlas = ExtResource("1_cjp4e") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imefj"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j65a"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxxtc"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0fjm"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qe1x"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n4f8"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y28qc"] +atlas = ExtResource("1_cjp4e") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amif3"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhx74"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muhch"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6dap"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6i7k"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e0ar"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjs66"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xl83"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7wv2"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kv0x"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ya4w"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agpx1"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7tb8"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in81n"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbum1"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj4aq"] +atlas = ExtResource("1_cjp4e") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6na5h"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5he3x"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o6bh"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs8ua"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrqgg"] +atlas = ExtResource("1_cjp4e") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m138h"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ld1b"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3432"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4blo"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loqof"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mjst"] +atlas = ExtResource("1_cjp4e") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uirhp"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkkil"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmy8l"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs8n1"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5e1v"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10yyn"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dotb8"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwxmi"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckf47"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx1b6"] +atlas = ExtResource("1_cjp4e") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4mob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie5ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8hax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vevhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmh54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em3x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5osrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_debks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crn33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shmtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yks0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sxrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrdkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyutd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bbha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdc3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0vlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0w42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2un8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy71i") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2g0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emj1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn3hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qinni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tcqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5hri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwwdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8jdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdtcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imefj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j65a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxxtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0fjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qe1x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n4f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y28qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amif3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhx74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muhch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6dap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6i7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e0ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjs66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xl83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7wv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kv0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ya4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agpx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7tb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in81n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbum1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj4aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6na5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5he3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o6bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs8ua") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrqgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m138h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ld1b") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3432") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4blo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loqof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mjst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uirhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkkil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmy8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs8n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5e1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10yyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dotb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwxmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckf47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx1b6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_calculator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_calculator.tres new file mode 100644 index 0000000..f705a3b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_calculator.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://dnrib0lgp21pb"] + +[ext_resource type="Texture2D" uid="uid://cfhbnmxkmix1h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png" id="1_80e0d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2no7"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxsjs"] +atlas = ExtResource("1_80e0d") +region = Rect2(1008, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld3ms"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjgi0"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha3ck"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s53qj"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h3ei"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5r5w"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gnot"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swo6l"] +atlas = ExtResource("1_80e0d") +region = Rect2(882, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqh66"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hao3"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6p4p"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4l0e"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq2xg"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjw71"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stn5j"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiuea"] +atlas = ExtResource("1_80e0d") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyn1i"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twebe"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2uiv"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyuf3"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88h01"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jb62"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a27n3"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8e8u"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1ekn"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c785w"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clecb"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnrpo"] +atlas = ExtResource("1_80e0d") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2bm3"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7c30"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ga8m"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxrw7"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p321j"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc0iv"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hedx0"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tsfe"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fntws"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6wcd"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlmbw"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehi6r"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blp3w"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216tn"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3u8x"] +atlas = ExtResource("1_80e0d") +region = Rect2(1008, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdk8w"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvf07"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itajt"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s7m8"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvjmy"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nsou"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd3fw"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2npj"] +atlas = ExtResource("1_80e0d") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5p8l"] +atlas = ExtResource("1_80e0d") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hav8o"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xfw5"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioc04"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kdfe"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia2kc"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mnun"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwawc"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l4rk"] +atlas = ExtResource("1_80e0d") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecra6"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6wid"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnkm0"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2k3v"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iin6g"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dcyh"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hf4k"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv1jh"] +atlas = ExtResource("1_80e0d") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3h1u"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo7uc"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j03d4"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tca83"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ybo"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyqnb"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r3ew"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k4w8"] +atlas = ExtResource("1_80e0d") +region = Rect2(0, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2no7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxsjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld3ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjgi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha3ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s53qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h3ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5r5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gnot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swo6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqh66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hao3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6p4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4l0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq2xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjw71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stn5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiuea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyn1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twebe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2uiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyuf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88h01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jb62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a27n3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8e8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1ekn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c785w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clecb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnrpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2bm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7c30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ga8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxrw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p321j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc0iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hedx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tsfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fntws") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6wcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlmbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehi6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blp3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3u8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdk8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvf07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itajt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s7m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvjmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nsou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd3fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2npj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5p8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hav8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xfw5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioc04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kdfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia2kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mnun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwawc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l4rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecra6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6wid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnkm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2k3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iin6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dcyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hf4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv1jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3h1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo7uc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j03d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tca83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ybo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyqnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r3ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k4w8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_capriciouswarrior.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_capriciouswarrior.tres new file mode 100644 index 0000000..afe9bfa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_capriciouswarrior.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://dvuaim56mmbob"] + +[ext_resource type="Texture2D" uid="uid://dv07dqfjubeje" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png" id="1_5xmnl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt3dl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o838s"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx1x7"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcm1f"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_331dc"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6xdd"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij8gs"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85ns1"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qydwl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncpb8"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyywo"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oc1y"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guw2j"] +atlas = ExtResource("1_5xmnl") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8041i"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36t60"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf017"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6r8n"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jcrj"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apdro"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtd0p"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkj3k"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttuqq"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqnyg"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0fgn"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flmjw"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhrfn"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqf3i"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye8a6"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48vif"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cym42"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52out"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h07xy"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb6of"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4bbt"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldy5n"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_robb8"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb8ex"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4n7n"] +atlas = ExtResource("1_5xmnl") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47s53"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds4ja"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7hcl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5gaq"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o10n0"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1s1q"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4576i"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6jsk"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sn5b"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv733"] +atlas = ExtResource("1_5xmnl") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srgdl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv5wi"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywnyk"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5my4g"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nwl1"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfb6c"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmypy"] +atlas = ExtResource("1_5xmnl") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwyjn"] +atlas = ExtResource("1_5xmnl") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_132so"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaxh1"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm7fp"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwo4h"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iant0"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81fgb"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26fn2"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ge4t"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf3oi"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a2ef"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjlxc"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm6kx"] +atlas = ExtResource("1_5xmnl") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c63an"] +atlas = ExtResource("1_5xmnl") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xwvl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glyx5"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac3og"] +atlas = ExtResource("1_5xmnl") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjdeo"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjs0f"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqpjl"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jutx"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi4g5"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq0i4"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8pij"] +atlas = ExtResource("1_5xmnl") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt3dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o838s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx1x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcm1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_331dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6xdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij8gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85ns1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qydwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncpb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyywo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oc1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guw2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8041i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36t60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf017") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6r8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jcrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apdro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtd0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkj3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttuqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqnyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0fgn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_flmjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhrfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqf3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye8a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48vif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cym42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52out") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h07xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb6of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4bbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldy5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_robb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb8ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4n7n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_47s53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds4ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7hcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5gaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o10n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1s1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4576i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6jsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sn5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv733") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srgdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv5wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywnyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5my4g") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nwl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfb6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmypy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwyjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_132so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaxh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm7fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwo4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iant0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81fgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26fn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ge4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf3oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a2ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjlxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm6kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c63an") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xwvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glyx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac3og") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjdeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjs0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqpjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jutx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi4g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq0i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8pij") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_captainhankheart.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_captainhankheart.tres new file mode 100644 index 0000000..f0e1cf9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_captainhankheart.tres @@ -0,0 +1,601 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://csj2cnygu2ldr"] + +[ext_resource type="Texture2D" uid="uid://di0vyoedx26vi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png" id="1_lcral"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5nau"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijbpy"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb5wb"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avpma"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa71r"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thla6"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ekb6"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btynt"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk3ed"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_den5m"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpkhh"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tct3g"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w3ri"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyege"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8n4w"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w0bu"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1ccf"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr8nw"] +atlas = ExtResource("1_lcral") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4184g"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_062kr"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws7ty"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gplcq"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8y2k"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5r2j"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mwrn"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coihg"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18vmy"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhues"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0xre"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3dp1"] +atlas = ExtResource("1_lcral") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sg84"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kynx6"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47mgl"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po885"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hag1j"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw5ol"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfb3e"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6ey8"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fehp"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laq7v"] +atlas = ExtResource("1_lcral") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wby2"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x3nn"] +atlas = ExtResource("1_lcral") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpos6"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orhcg"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fskw"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gymw7"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq7l2"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guwl7"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddyjf"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlr10"] +atlas = ExtResource("1_lcral") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8ubc"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s0ga"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onlod"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdogf"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odmjj"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s12ks"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxgf4"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra2d5"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ltkk"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfm5e"] +atlas = ExtResource("1_lcral") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uskqj"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02wog"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f416"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd7wo"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qamup"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubo27"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp0fg"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldh33"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pddur"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spxck"] +atlas = ExtResource("1_lcral") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqh4v"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd53g"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g42dy"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsvx5"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp6ln"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6orm3"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orjq6"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3sos"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpg2f"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3h2b"] +atlas = ExtResource("1_lcral") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5nau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijbpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb5wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avpma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa71r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thla6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ekb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btynt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk3ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_den5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpkhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tct3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w3ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyege") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8n4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w0bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1ccf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr8nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4184g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_062kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws7ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gplcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8y2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5r2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mwrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coihg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18vmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhues") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0xre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3dp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sg84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kynx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47mgl") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_po885") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hag1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw5ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfb3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6ey8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fehp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laq7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wby2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x3nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpos6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orhcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fskw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gymw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq7l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guwl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddyjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlr10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8ubc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s0ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onlod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdogf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odmjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s12ks") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxgf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra2d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ltkk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfm5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uskqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02wog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd7wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qamup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubo27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp0fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldh33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pddur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spxck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqh4v") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd53g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g42dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsvx5") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp6ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6orm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orjq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3sos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpg2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3h2b") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_celebrant.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_celebrant.tres new file mode 100644 index 0000000..547e58d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_celebrant.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://5q5xcpjxncv2"] + +[ext_resource type="Texture2D" uid="uid://dyhu4rekcarw5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png" id="1_tqfax"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3vmk"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqqsv"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbhx4"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suqi1"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruc61"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gybxk"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hk5v"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48r6p"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d42ex"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvvm5"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8snt"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beslq"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjcxh"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjo06"] +atlas = ExtResource("1_tqfax") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbcmc"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsbjb"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kixyp"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jacan"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdrut"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ha5w"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwm7y"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap25o"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2f8h"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6dhh"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s00np"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4drd"] +atlas = ExtResource("1_tqfax") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7tho"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umkmw"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlqre"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiovd"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6lcf"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eoye"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwn1q"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj43w"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqhrj"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx7gg"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up0pt"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwi74"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq8wk"] +atlas = ExtResource("1_tqfax") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kddnp"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kahm"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3idp"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlxyo"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dnm4"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptrat"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvanh"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oty6k"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqta2"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdi8d"] +atlas = ExtResource("1_tqfax") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk3ti"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1opvf"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u510"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx5db"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my6pk"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lofdi"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdsfj"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03do1"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30ona"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsr0o"] +atlas = ExtResource("1_tqfax") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg3m3"] +atlas = ExtResource("1_tqfax") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlq05"] +atlas = ExtResource("1_tqfax") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyd66"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr6ro"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjdkf"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqaww"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n45rp"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc772"] +atlas = ExtResource("1_tqfax") +region = Rect2(505, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3vmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqqsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbhx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suqi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruc61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gybxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hk5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48r6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d42ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvvm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8snt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beslq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjcxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjo06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbcmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsbjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kixyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jacan") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdrut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ha5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwm7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap25o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2f8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6dhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s00np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4drd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7tho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umkmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlqre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiovd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6lcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eoye") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwn1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj43w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqhrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx7gg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up0pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwi74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq8wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kddnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kahm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3idp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlxyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dnm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptrat") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvanh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oty6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqta2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdi8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk3ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1opvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u510") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx5db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my6pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lofdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdsfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03do1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30ona") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsr0o") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg3m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlq05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyd66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr6ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjdkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqaww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n45rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc772") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chakkram.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chakkram.tres new file mode 100644 index 0000000..da2d3dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chakkram.tres @@ -0,0 +1,776 @@ +[gd_resource type="SpriteFrames" load_steps=107 format=3 uid="uid://bnqhe1n8w7j7u"] + +[ext_resource type="Texture2D" uid="uid://crnakva3l8i12" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png" id="1_td2o8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnvwp"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqx6y"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjfyx"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb2xt"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucvey"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ip1"] +atlas = ExtResource("1_td2o8") +region = Rect2(818, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldxfm"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1458l"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl5dw"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx35f"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8p4t"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg5co"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8yqr"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey44j"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6g2t"] +atlas = ExtResource("1_td2o8") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vieum"] +atlas = ExtResource("1_td2o8") +region = Rect2(717, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxoau"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3cgq"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76cb4"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d1g5"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfs68"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i2n5"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tov6d"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1kbq"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3v86"] +atlas = ExtResource("1_td2o8") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pri1"] +atlas = ExtResource("1_td2o8") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mfwe"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkc1x"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1i4r"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at8tg"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feopr"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yukes"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p54e4"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p75ov"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkoku"] +atlas = ExtResource("1_td2o8") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy4wi"] +atlas = ExtResource("1_td2o8") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6nmc"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wymsp"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1yf5"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1c2d"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_506ly"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfeml"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6d8c"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kmem"] +atlas = ExtResource("1_td2o8") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxucy"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkj7m"] +atlas = ExtResource("1_td2o8") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfpqu"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g12pd"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4qu4"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kphak"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sm3t"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viycj"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvtq2"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6dvm"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jy56"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcsxh"] +atlas = ExtResource("1_td2o8") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5urni"] +atlas = ExtResource("1_td2o8") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqyw4"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unl6k"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8ag2"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3mxo"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5omv"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7vaq"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gapu"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgo6h"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ywsv"] +atlas = ExtResource("1_td2o8") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_780ic"] +atlas = ExtResource("1_td2o8") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a81re"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq074"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1htvb"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvfmp"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_halwh"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lao0m"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p8bm"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suawp"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i3ua"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a56ip"] +atlas = ExtResource("1_td2o8") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il7me"] +atlas = ExtResource("1_td2o8") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxrsf"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjeqv"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i13x0"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ptdg"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0csd"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhkyf"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpdpj"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6ugw"] +atlas = ExtResource("1_td2o8") +region = Rect2(101, 123, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4d56"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 830, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ush0o"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 729, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibke3"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 628, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8dx2"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 527, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07oey"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 426, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4dw2"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 325, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeeno"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 224, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omrhu"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 123, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utgjn"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 82, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e73qk"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 41, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aujg8"] +atlas = ExtResource("1_td2o8") +region = Rect2(0, 0, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1usig"] +atlas = ExtResource("1_td2o8") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o82sd"] +atlas = ExtResource("1_td2o8") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meiqw"] +atlas = ExtResource("1_td2o8") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vha4a"] +atlas = ExtResource("1_td2o8") +region = Rect2(919, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uky2r"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkcqg"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6klvf"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnijm"] +atlas = ExtResource("1_td2o8") +region = Rect2(909, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnvwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqx6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjfyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb2xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucvey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ip1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldxfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1458l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl5dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx35f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8p4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg5co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8yqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey44j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6g2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vieum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxoau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3cgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76cb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d1g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfs68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i2n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tov6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1kbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3v86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pri1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mfwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkc1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1i4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at8tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feopr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yukes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p54e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p75ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkoku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy4wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6nmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wymsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1yf5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1c2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_506ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfeml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6d8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kmem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkj7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfpqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g12pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4qu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kphak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sm3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viycj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvtq2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6dvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jy56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcsxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5urni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqyw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unl6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8ag2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3mxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5omv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7vaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gapu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgo6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ywsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_780ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a81re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq074") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1htvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvfmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_halwh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lao0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p8bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suawp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i3ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a56ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il7me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxrsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjeqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i13x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ptdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0csd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhkyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpdpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6ugw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4d56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ush0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibke3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8dx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07oey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4dw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeeno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omrhu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_utgjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e73qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aujg8") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1usig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o82sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meiqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vha4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uky2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkcqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6klvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnijm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chaoselemental.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chaoselemental.tres new file mode 100644 index 0000000..77127f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chaoselemental.tres @@ -0,0 +1,764 @@ +[gd_resource type="SpriteFrames" load_steps=106 format=3 uid="uid://csqh1w7plxjvj"] + +[ext_resource type="Texture2D" uid="uid://bydojmidoqica" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png" id="1_nxoda"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3evl"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3uy2"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvkx1"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igd4d"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgx60"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5vur"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tatay"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aa2p"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18its"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1cg5"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1thx"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0dgb"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra5f1"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynkmr"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ini"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsiqq"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4fjv"] +atlas = ExtResource("1_nxoda") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_567kh"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6m11"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xsam"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00diw"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87wma"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h44fg"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgxm2"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmru1"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbaqd"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0c0l"] +atlas = ExtResource("1_nxoda") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5em1i"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp51a"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63bua"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy4ca"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi6bm"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60awu"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8gmr"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g68ow"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26l81"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsu8v"] +atlas = ExtResource("1_nxoda") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3b2t"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kw3n"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ten"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqj7p"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcu2a"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvtfy"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ccx"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmk0t"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68niv"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doaeq"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjxrx"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmd5w"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyvfx"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j44ob"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnvhh"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oll54"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xujg"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fiti"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prnbv"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4401j"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkevm"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkk70"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvyrh"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlg3f"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv8f8"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ybvi"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us871"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srpnv"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4k0a"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gumtr"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8kb3"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbcy6"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufnam"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqqd1"] +atlas = ExtResource("1_nxoda") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv5ge"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hta35"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5mif"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxnj0"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6l13"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2egi"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apkgq"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab3g1"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwda4"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61m3s"] +atlas = ExtResource("1_nxoda") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltcpr"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_242ne"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fddr1"] +atlas = ExtResource("1_nxoda") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3ol8"] +atlas = ExtResource("1_nxoda") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nddm0"] +atlas = ExtResource("1_nxoda") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpjcl"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6vjp"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebf6l"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm8dc"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtu0o"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oupbm"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85u8j"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3xca"] +atlas = ExtResource("1_nxoda") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bef54"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vxa0"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx23x"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpypt"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwwpq"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c4ow"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvi6k"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbr4h"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y3w3"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiare"] +atlas = ExtResource("1_nxoda") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3evl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3uy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvkx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igd4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgx60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5vur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tatay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aa2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18its") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1cg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1thx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0dgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra5f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ini") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsiqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4fjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_567kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6m11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xsam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00diw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87wma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h44fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgxm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmru1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbaqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0c0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5em1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp51a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63bua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy4ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi6bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60awu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8gmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g68ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26l81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsu8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3b2t") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kw3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ten") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqj7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcu2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvtfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ccx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmk0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68niv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doaeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjxrx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmd5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyvfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j44ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnvhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oll54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xujg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fiti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prnbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4401j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkevm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkk70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvyrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlg3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv8f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ybvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_us871") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srpnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4k0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gumtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8kb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbcy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufnam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqqd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv5ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hta35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5mif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxnj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6l13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2egi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apkgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab3g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwda4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61m3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltcpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_242ne") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fddr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3ol8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nddm0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpjcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6vjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebf6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm8dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtu0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oupbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85u8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3xca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bef54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vxa0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx23x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpypt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwwpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c4ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvi6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbr4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y3w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiare") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chloroara.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chloroara.tres new file mode 100644 index 0000000..e9fdd5e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_chloroara.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://bspox5hmp8rcf"] + +[ext_resource type="Texture2D" uid="uid://cmqr8cclc8hn2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png" id="1_sy8tl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vir1"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nille"] +atlas = ExtResource("1_sy8tl") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ole"] +atlas = ExtResource("1_sy8tl") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3knw"] +atlas = ExtResource("1_sy8tl") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmx88"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xmsc"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s1np"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5uxg"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sppa"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdldi"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is4xq"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha6m0"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3a8e"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fapy6"] +atlas = ExtResource("1_sy8tl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur121"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ayy"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omn86"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdtkj"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3050h"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s3ae"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pfhm"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd542"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjlxp"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_strb1"] +atlas = ExtResource("1_sy8tl") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dey2n"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4mgf"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx38i"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpimn"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4jlr"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe4ue"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8yub"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e11ry"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b60l"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk7m1"] +atlas = ExtResource("1_sy8tl") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6fvk"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bhss"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ynja"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry4ae"] +atlas = ExtResource("1_sy8tl") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn843"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc25k"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dhrw"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnpus"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi5wo"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuh87"] +atlas = ExtResource("1_sy8tl") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veie7"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nku6"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u24i"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7absn"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmskq"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s8ew"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vu68"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqd54"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8sa5"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ed7"] +atlas = ExtResource("1_sy8tl") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfscv"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ky05"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq45j"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h70p7"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo3yv"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pefh"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkjrq"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2vwg"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vetqp"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h0yt"] +atlas = ExtResource("1_sy8tl") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f78r0"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13a7g"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dscss"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5geoc"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpku2"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43dkj"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vsjf"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlp4n"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t618a"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttb21"] +atlas = ExtResource("1_sy8tl") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vir1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nille") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ole") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3knw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmx88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xmsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s1np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5uxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sppa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdldi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is4xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha6m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3a8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fapy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur121") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ayy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omn86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdtkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3050h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s3ae") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pfhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd542") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjlxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_strb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dey2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4mgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx38i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpimn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4jlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe4ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8yub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e11ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b60l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk7m1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6fvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bhss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ynja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry4ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn843") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc25k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dhrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnpus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi5wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuh87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veie7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nku6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u24i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7absn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmskq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s8ew") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vu68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqd54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8sa5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ed7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfscv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ky05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq45j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h70p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo3yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pefh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkjrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2vwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vetqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h0yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f78r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13a7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dscss") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5geoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpku2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43dkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vsjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlp4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t618a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttb21") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_contentiousbrute.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_contentiousbrute.tres new file mode 100644 index 0000000..8ab3354 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_contentiousbrute.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://su1v21gl0jjh"] + +[ext_resource type="Texture2D" uid="uid://bigslqwgs6bc0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png" id="1_1h4xu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx72p"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlnae"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krf1e"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gcwx"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v2x1"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mabi"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h67v3"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfpwd"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td5rp"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nek0"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owmg5"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkxyi"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aes38"] +atlas = ExtResource("1_1h4xu") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqorn"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87vwa"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0ja5"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smtrn"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkxob"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk3sq"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvvub"] +atlas = ExtResource("1_1h4xu") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mmyf"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aqgq"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11oca"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu8na"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxak2"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en46p"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fs2e"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y6nc"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukn4o"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_425ye"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ookf4"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61qgd"] +atlas = ExtResource("1_1h4xu") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuh7j"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10jp5"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn6sw"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o6pw"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt62h"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5coam"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ofsc"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so14k"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsxee"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53t84"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80u4g"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1lw4"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nlcb"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xxhg"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7fhm"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7mxo"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eyk3"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpnh3"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh13m"] +atlas = ExtResource("1_1h4xu") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u02nl"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwc8u"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3ikd"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekxte"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ckq"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsghk"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npwob"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh5jc"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br06a"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dvk8"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sld84"] +atlas = ExtResource("1_1h4xu") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cc63"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0uc7"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vejye"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gskr6"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re426"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl34l"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idvjb"] +atlas = ExtResource("1_1h4xu") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jlck"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mkdq"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ck1u5"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2dhn"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jdvr"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ept4y"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t55w8"] +atlas = ExtResource("1_1h4xu") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s84lo"] +atlas = ExtResource("1_1h4xu") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tyu6"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybydn"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0h6i"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r262s"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y63af"] +atlas = ExtResource("1_1h4xu") +region = Rect2(1048, 786, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx72p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlnae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krf1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gcwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v2x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mabi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h67v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfpwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td5rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nek0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owmg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkxyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aes38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqorn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87vwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0ja5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smtrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkxob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk3sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvvub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mmyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aqgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11oca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu8na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxak2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_en46p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fs2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y6nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukn4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_425ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ookf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61qgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuh7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10jp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn6sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o6pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt62h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5coam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ofsc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_so14k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsxee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53t84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80u4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1lw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nlcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xxhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7fhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7mxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eyk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpnh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh13m") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u02nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwc8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3ikd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekxte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ckq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsghk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npwob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh5jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br06a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dvk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sld84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cc63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0uc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vejye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gskr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re426") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl34l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idvjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jlck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mkdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ck1u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2dhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jdvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ept4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t55w8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s84lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tyu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybydn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0h6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r262s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y63af") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_crimsonmystic.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_crimsonmystic.tres new file mode 100644 index 0000000..c7ca13f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_crimsonmystic.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://dso34in2na126"] + +[ext_resource type="Texture2D" uid="uid://bciyoua0v8gke" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png" id="1_6ni05"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c70cq"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63nmi"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_318cn"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ivmg"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xjpk"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei75s"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5kim"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wa1g"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj1k3"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lohyr"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc6eg"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqk7a"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcui0"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx0bc"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s7xh"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j55t"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nsu8"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrrrx"] +atlas = ExtResource("1_6ni05") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vug5r"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mq2re"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg2wa"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifjwf"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26hrf"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgph3"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hui6j"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0kog"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w165j"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1mut"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mdpr"] +atlas = ExtResource("1_6ni05") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m47gp"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr130"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgtb4"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4bxc"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrxw2"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52er8"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdy4j"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60nbt"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdbxb"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i36mc"] +atlas = ExtResource("1_6ni05") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ompqg"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onv2o"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bqk5"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf75a"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eld3a"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uff6f"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljdkq"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo617"] +atlas = ExtResource("1_6ni05") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e417c"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubbh8"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a8h1"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wygj"] +atlas = ExtResource("1_6ni05") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htppr"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3whe0"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1j8i"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4earg"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jedc"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grxsm"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imiil"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfs3k"] +atlas = ExtResource("1_6ni05") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq4pm"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iooa"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7n84"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dcar"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fa6l"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_034nx"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ucc"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo772"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7vwv"] +atlas = ExtResource("1_6ni05") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8otwx"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3h6h"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4d4a"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1amiv"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nve4"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa0os"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8itw6"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoj1s"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlr67"] +atlas = ExtResource("1_6ni05") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c70cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63nmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_318cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ivmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xjpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei75s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5kim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wa1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj1k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lohyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc6eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqk7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcui0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx0bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s7xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j55t") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nsu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrrrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vug5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mq2re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg2wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifjwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26hrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgph3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hui6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0kog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w165j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1mut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mdpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m47gp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr130") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgtb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4bxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrxw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52er8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdy4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60nbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdbxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i36mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ompqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onv2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bqk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf75a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eld3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uff6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljdkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo617") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e417c") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubbh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a8h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wygj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_htppr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3whe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1j8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4earg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jedc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grxsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imiil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfs3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq4pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iooa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7n84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dcar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fa6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_034nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ucc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo772") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7vwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8otwx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3h6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4d4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1amiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nve4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa0os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8itw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoj1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlr67") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterc.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterc.tres new file mode 100644 index 0000000..18a18f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterc.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://b2ko0k8xyhf27"] + +[ext_resource type="Texture2D" uid="uid://d1whayrsdjxp7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png" id="1_gc4ur"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_16l5c"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8j74"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgb48"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqu7j"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1rqh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxwxo"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdywt"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccivs"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gc8k"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy0xb"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgn8a"] +atlas = ExtResource("1_gc4ur") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3k5s"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ha0"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jq51q"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrafh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3tpp"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybqs5"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lqmc"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp3c3"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stjsm"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtcp6"] +atlas = ExtResource("1_gc4ur") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec4ex"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vejnv"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emalh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arfsx"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbdsw"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i70yc"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ertin"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr7yh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py3qj"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5gvg"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kkf6"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdkhr"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvseu"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h830"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iwfq"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jig8b"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dblig"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjphp"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbts4"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a3o8"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75847"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0b37"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txj6g"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpbkh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcv2c"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x041p"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc1e0"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6wxl"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6m4r"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6tni"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ufaa"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jgto"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3km4"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddgft"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeiys"] +atlas = ExtResource("1_gc4ur") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwwl1"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duted"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgbh8"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn7pj"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osx3w"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11l06"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g7tm"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp2eh"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs8ys"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny156"] +atlas = ExtResource("1_gc4ur") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_052su"] +atlas = ExtResource("1_gc4ur") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew41u"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cacs"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lco2p"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m602k"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf3fn"] +atlas = ExtResource("1_gc4ur") +region = Rect2(505, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_16l5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8j74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgb48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqu7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1rqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxwxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdywt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccivs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gc8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy0xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgn8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3k5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ha0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jq51q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrafh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3tpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybqs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lqmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp3c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stjsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtcp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec4ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vejnv") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_emalh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arfsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbdsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i70yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ertin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr7yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py3qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5gvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kkf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdkhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvseu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h830") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iwfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jig8b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dblig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjphp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbts4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a3o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75847") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0b37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txj6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpbkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcv2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x041p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc1e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6wxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6m4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6tni") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ufaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jgto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3km4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddgft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeiys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwwl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duted") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgbh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn7pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osx3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11l06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g7tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp2eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs8ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny156") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_052su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew41u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cacs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lco2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m602k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf3fn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterd.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterd.tres new file mode 100644 index 0000000..b3a2d27 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_critterd.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://b5kcnkwbhnb55"] + +[ext_resource type="Texture2D" uid="uid://bk5b3u83eswjv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png" id="1_ci5nb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycdad"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4txrd"] +atlas = ExtResource("1_ci5nb") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbtrw"] +atlas = ExtResource("1_ci5nb") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnn7s"] +atlas = ExtResource("1_ci5nb") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fno7"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuan1"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aaky"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh7bp"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giinp"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e17rq"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcvwc"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be2fp"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1dl6"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngg1u"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nson"] +atlas = ExtResource("1_ci5nb") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bc1d"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osi51"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjplg"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc66e"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvuhi"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc4wp"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70lea"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpv7h"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkgd0"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4mce"] +atlas = ExtResource("1_ci5nb") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaaml"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klosc"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scoa7"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0csmx"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pwwa"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2n4d"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_060s1"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mqb8"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkwsq"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8p0l"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yljwh"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tsla"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx55t"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uds3l"] +atlas = ExtResource("1_ci5nb") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fef6a"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tna53"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duh7s"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b310n"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4iul"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia5ac"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqxsl"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or38s"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aid3b"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axp4a"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qq4m"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4iuy"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqm5w"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf7cg"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mtxh"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t0n2"] +atlas = ExtResource("1_ci5nb") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2ph5"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1qsm"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv8uy"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5y3j"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1grha"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5tdc"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqr20"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27te4"] +atlas = ExtResource("1_ci5nb") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hti6d"] +atlas = ExtResource("1_ci5nb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvrix"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fpra"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1cp8"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fxix"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4epi"] +atlas = ExtResource("1_ci5nb") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_334ri"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kix0p"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6a3s"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyadd"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2w8f"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of2oc"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjsh3"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfyn8"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pox7k"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj5da"] +atlas = ExtResource("1_ci5nb") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycdad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4txrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbtrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnn7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fno7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuan1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aaky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh7bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giinp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e17rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcvwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be2fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1dl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngg1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nson") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bc1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osi51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjplg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc66e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvuhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc4wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70lea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpv7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkgd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4mce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaaml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klosc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_scoa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0csmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pwwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2n4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_060s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mqb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkwsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8p0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yljwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tsla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx55t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uds3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fef6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tna53") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_duh7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b310n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4iul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia5ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqxsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or38s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aid3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axp4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qq4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4iuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqm5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf7cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mtxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t0n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2ph5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1qsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv8uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5y3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1grha") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5tdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqr20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27te4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hti6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvrix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fpra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1cp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fxix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4epi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_334ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kix0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6a3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyadd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2w8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of2oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjsh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfyn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pox7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj5da") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_cryptographer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_cryptographer.tres new file mode 100644 index 0000000..905fd27 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_cryptographer.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://b4668rskto3te"] + +[ext_resource type="Texture2D" uid="uid://dq18dyb3m8fbl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png" id="1_4rcnu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jltmx"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ehas"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns28a"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um4nv"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhjfk"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8nkr"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkbwu"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mchf1"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1olya"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp6mx"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjcnw"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tou5"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hku8q"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_805bd"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htqt0"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7msl"] +atlas = ExtResource("1_4rcnu") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvvsd"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o78a"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7rv5"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xid1"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqn4l"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uisyn"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nirlr"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syxpt"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usig6"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0sl6"] +atlas = ExtResource("1_4rcnu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcq7k"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfw56"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnpyq"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54v5j"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbyte"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egf6r"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07ueq"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5myi"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ku7"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lyfy"] +atlas = ExtResource("1_4rcnu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2hgf"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6umu"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s2ii"] +atlas = ExtResource("1_4rcnu") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j4ry"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v8lw"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3r8g"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x60dg"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xev4"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhhel"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_742r6"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8v0w"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47nar"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb703"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqx27"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqb38"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34nj0"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpqfg"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiwsn"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4wf3"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvxpt"] +atlas = ExtResource("1_4rcnu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i15b3"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl7e0"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o11i2"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1df1r"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kr31"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hbug"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o5ro"] +atlas = ExtResource("1_4rcnu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnw8i"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wryvg"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xjki"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dydqn"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjr7b"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uulpt"] +atlas = ExtResource("1_4rcnu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2e5o"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqwvp"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8alf"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqx0q"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m40s"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4pid"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08k3j"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7670r"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyvk4"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl3jc"] +atlas = ExtResource("1_4rcnu") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jltmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ehas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns28a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um4nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhjfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8nkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkbwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mchf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1olya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp6mx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjcnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tou5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hku8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_805bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htqt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7msl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvvsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o78a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7rv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xid1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqn4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uisyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nirlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syxpt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_usig6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0sl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcq7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfw56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnpyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54v5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbyte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egf6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07ueq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5myi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ku7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lyfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2hgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6umu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s2ii") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j4ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v8lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3r8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x60dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xev4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhhel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_742r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8v0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47nar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb703") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqx27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqb38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34nj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpqfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiwsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4wf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvxpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i15b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl7e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o11i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1df1r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kr31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hbug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o5ro") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnw8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wryvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xjki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dydqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjr7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uulpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2e5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqwvp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8alf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqx0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m40s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4pid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08k3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7670r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyvk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl3jc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagona.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagona.tres new file mode 100644 index 0000000..6437db4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagona.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://b7sf3se1l8cv7"] + +[ext_resource type="Texture2D" uid="uid://dbofqhrgqcxos" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png" id="1_yf5s6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6asgf"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6g6g"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkthh"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcjjw"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnt3t"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0yc0"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6pjs"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbs46"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w40m"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi4aq"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kykt2"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq20v"] +atlas = ExtResource("1_yf5s6") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4hdq"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tvl6"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw1pd"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjhl6"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taq7a"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp1bc"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atubw"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1692, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6qoh"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slu6g"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o1pl"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcmaj"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fcha"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j24t2"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thjc5"] +atlas = ExtResource("1_yf5s6") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kroi"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o61rs"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvxhw"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61t2p"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r2hx"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qil68"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xj80"] +atlas = ExtResource("1_yf5s6") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctfrr"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuhd3"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewpsb"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ny8"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o2i2"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lejvd"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s63qm"] +atlas = ExtResource("1_yf5s6") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4loa7"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdyjm"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f28ap"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rlef"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wihdf"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upqdf"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5utx"] +atlas = ExtResource("1_yf5s6") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlegy"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcafx"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1692, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ydak"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xylty"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nw47"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d38h0"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8x74"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8k0r"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdquf"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmyuj"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6askj"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jbtd"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eejh"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sec2"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1her"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8txk"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1410, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmg42"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_baf2k"] +atlas = ExtResource("1_yf5s6") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqyet"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1692, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81qg0"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1551, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv30f"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvryf"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kljwt"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oov57"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxluy"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8teio"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bn7e"] +atlas = ExtResource("1_yf5s6") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxpv3"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t40tx"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih2md"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wbw1"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e8e6"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjvx0"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jevt"] +atlas = ExtResource("1_yf5s6") +region = Rect2(0, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reuo2"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spqg8"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1jsu"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q24bk"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dasw"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q4q4"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i0w1"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdmqx"] +atlas = ExtResource("1_yf5s6") +region = Rect2(1128, 705, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6asgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6g6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkthh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcjjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnt3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0yc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6pjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbs46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w40m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi4aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kykt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq20v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4hdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tvl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw1pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjhl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taq7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp1bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atubw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6qoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slu6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o1pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcmaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fcha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j24t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thjc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kroi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o61rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvxhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61t2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r2hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qil68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xj80") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctfrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuhd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewpsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ny8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o2i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lejvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s63qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4loa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdyjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f28ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rlef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wihdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upqdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5utx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlegy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcafx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ydak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xylty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nw47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d38h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8x74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8k0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdquf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmyuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6askj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jbtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eejh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1her") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8txk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmg42") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_baf2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqyet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81qg0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv30f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvryf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kljwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oov57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxluy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8teio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bn7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxpv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t40tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih2md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wbw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e8e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjvx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jevt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_reuo2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spqg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1jsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q24bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dasw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q4q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i0w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdmqx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagonafish.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagonafish.tres new file mode 100644 index 0000000..3684373 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dagonafish.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://be8400nbu84ms"] + +[ext_resource type="Texture2D" uid="uid://brp8pwff13878" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png" id="1_2sitg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2loo"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lsji"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8uu3"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23q1q"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qerki"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd3ks"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88v74"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17k1n"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay01l"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loc3y"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chyg1"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eg7y"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sasps"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdt2g"] +atlas = ExtResource("1_2sitg") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_671my"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4u7u"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcmpn"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1rcv"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vlow"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynrep"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3bf7"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo0lk"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8je82"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peu63"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t68iq"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajtjj"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvtnv"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhsau"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v73pv"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjtig"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc2hv"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkcl3"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w44lb"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt4is"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hijee"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbacu"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h7cy"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k02o8"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psc0t"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmdou"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf8yv"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukptd"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ori5m"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw5qq"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0leei"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5tva"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hav4m"] +atlas = ExtResource("1_2sitg") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4oca"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqv2p"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qylfu"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t75b"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2w1c"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_815ki"] +atlas = ExtResource("1_2sitg") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j28sh"] +atlas = ExtResource("1_2sitg") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpuyk"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whfmi"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0nmc"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kunm3"] +atlas = ExtResource("1_2sitg") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju153"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w7s7"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85x1f"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvtkj"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqynr"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiwf3"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q527"] +atlas = ExtResource("1_2sitg") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lurhd"] +atlas = ExtResource("1_2sitg") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4wtp"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kijfx"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhqvh"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl7fe"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8clwo"] +atlas = ExtResource("1_2sitg") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqbsg"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb7kw"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4144"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jftcx"] +atlas = ExtResource("1_2sitg") +region = Rect2(917, 393, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2loo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lsji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8uu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23q1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qerki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd3ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88v74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17k1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay01l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loc3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chyg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eg7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sasps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdt2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_671my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4u7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcmpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1rcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vlow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynrep") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3bf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo0lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8je82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peu63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t68iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajtjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvtnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhsau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v73pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjtig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc2hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkcl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w44lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt4is") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hijee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbacu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h7cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k02o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psc0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmdou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf8yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukptd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ori5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw5qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0leei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5tva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hav4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4oca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqv2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qylfu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t75b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2w1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_815ki") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j28sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpuyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whfmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0nmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kunm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju153") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w7s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85x1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvtkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqynr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiwf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q527") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lurhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4wtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kijfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhqvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl7fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8clwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqbsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb7kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4144") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jftcx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_darknemesis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_darknemesis.tres new file mode 100644 index 0000000..906e72f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_darknemesis.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://df3u0khekunny"] + +[ext_resource type="Texture2D" uid="uid://c4nj4oadh1vgw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png" id="1_pke8c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_34if6"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28bme"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwa2f"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d47ob"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pldn3"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8y8o"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypesw"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo2rd"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5phn"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibvxq"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aubg"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckut6"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu1ky"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k524s"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3apv"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2tml"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uhdq"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrf8d"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o76ww"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adg4u"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sdug"] +atlas = ExtResource("1_pke8c") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcx8a"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w23ok"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clkg2"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hdvv"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jew5"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o78e"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20xlf"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oy7m"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6q0b"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raqb2"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4k8c"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mevln"] +atlas = ExtResource("1_pke8c") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hclh6"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf3bo"] +atlas = ExtResource("1_pke8c") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu301"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x73e"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svs0w"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqskn"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_323sn"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7oau"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w76en"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjhp5"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slqdk"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im8p4"] +atlas = ExtResource("1_pke8c") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upd1v"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc0ru"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr5ty"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mw5a"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbcg1"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uttks"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mogdj"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3olv"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4fo4"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppfjh"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icfri"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kkfk"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1opb"] +atlas = ExtResource("1_pke8c") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6pga"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1scxj"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ht3h"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puddt"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw2eu"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsr8n"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6dne"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i83jf"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iinj"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d3ru"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pximv"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2dny"] +atlas = ExtResource("1_pke8c") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_34if6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28bme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwa2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d47ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pldn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8y8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypesw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo2rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5phn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibvxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aubg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckut6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu1ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k524s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3apv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2tml") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uhdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrf8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o76ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adg4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sdug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcx8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w23ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clkg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hdvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jew5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o78e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20xlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oy7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6q0b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_raqb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4k8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mevln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hclh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf3bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu301") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x73e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svs0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqskn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_323sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7oau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w76en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjhp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im8p4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_upd1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc0ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr5ty") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mw5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbcg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uttks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mogdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3olv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4fo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppfjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icfri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kkfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1opb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6pga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1scxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ht3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puddt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw2eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsr8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6dne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i83jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iinj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d3ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pximv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2dny") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_daywatcher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_daywatcher.tres new file mode 100644 index 0000000..b899a53 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_daywatcher.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://h1jwqtq21e6u"] + +[ext_resource type="Texture2D" uid="uid://bqglo0qsx67nq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png" id="1_wuwnv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3hb"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0svet"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bedoi"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj1pg"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uf1u"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bootu"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_648u3"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at33k"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f11v6"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdp7d"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn32a"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhrew"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvyla"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggjty"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdg4f"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6i6v"] +atlas = ExtResource("1_wuwnv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4wu4"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nbn4"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlrlu"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmtyf"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meuqt"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xh5g"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cmo3"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1njo"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oehbh"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up5t0"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwu5y"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiglf"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daich"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ptte"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib2il"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iokbw"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxr1j"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yif6n"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62kyp"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw20r"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xer4"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3670x"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgmt2"] +atlas = ExtResource("1_wuwnv") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu7an"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12anf"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1ccx"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrfra"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hshmi"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5d8y"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjpj3"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jttj"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnyuj"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y0aa"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgp6w"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7sru"] +atlas = ExtResource("1_wuwnv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3pbx"] +atlas = ExtResource("1_wuwnv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50wfa"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1efl4"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pyj0"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjpf1"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7vhq"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33c5n"] +atlas = ExtResource("1_wuwnv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0t7c"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcosq"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4jij"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btjjc"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bj84"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jvd3"] +atlas = ExtResource("1_wuwnv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ycf1"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5o6k"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8ckd"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyvy2"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi72l"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hckvq"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihyar"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50aya"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghggw"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4fs8"] +atlas = ExtResource("1_wuwnv") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0svet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bedoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj1pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uf1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bootu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_648u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at33k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f11v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdp7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn32a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhrew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvyla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggjty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdg4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6i6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4wu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nbn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlrlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmtyf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_meuqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xh5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cmo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1njo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oehbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up5t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwu5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiglf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daich") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ptte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib2il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iokbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxr1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yif6n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62kyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw20r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xer4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3670x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgmt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu7an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12anf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1ccx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrfra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hshmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5d8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjpj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jttj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnyuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y0aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgp6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7sru") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3pbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50wfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1efl4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pyj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjpf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7vhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33c5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0t7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcosq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4jij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btjjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bj84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jvd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ycf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5o6k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8ckd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyvy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi72l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hckvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihyar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50aya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghggw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4fs8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deathblighter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deathblighter.tres new file mode 100644 index 0000000..9f5093c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deathblighter.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://bd6vfr4xje3my"] + +[ext_resource type="Texture2D" uid="uid://rxupmurujr25" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png" id="1_jmhmn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4er8"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1smq"] +atlas = ExtResource("1_jmhmn") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6m1l"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m44yc"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss0yy"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbk2c"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkdhb"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn262"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soffn"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq1v3"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fl55"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m223"] +atlas = ExtResource("1_jmhmn") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub81d"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5g0f"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_howdj"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os8hm"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6uhb"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve6h0"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ffp"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tah4f"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqb3h"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ejog"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwwf8"] +atlas = ExtResource("1_jmhmn") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqc60"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng8in"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm2ll"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54mda"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbt13"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3vsd"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdvql"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj1xk"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exxxj"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ovyh"] +atlas = ExtResource("1_jmhmn") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw2fv"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8kj1"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seddb"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hisa3"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx36q"] +atlas = ExtResource("1_jmhmn") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fekwl"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_102hv"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2cdm"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn1n1"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w64h2"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fds3"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hoyi"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_181ry"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sn5h"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hb35"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vnp4"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orqx5"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptic1"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6yqp"] +atlas = ExtResource("1_jmhmn") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr4bg"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07ume"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5im4m"] +atlas = ExtResource("1_jmhmn") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uxc1"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smy7l"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thvk0"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tgn4"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7xgm"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj3ks"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps54f"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tlti"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xhu2"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rsga"] +atlas = ExtResource("1_jmhmn") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abkil"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv2a1"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vipc"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqonb"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqdob"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq657"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu2a0"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpl5d"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ihth"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7axaq"] +atlas = ExtResource("1_jmhmn") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4er8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1smq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6m1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m44yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss0yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbk2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkdhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn262") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soffn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq1v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fl55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m223") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub81d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5g0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_howdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os8hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6uhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve6h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ffp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tah4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqb3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ejog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwwf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqc60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng8in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm2ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54mda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbt13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3vsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdvql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj1xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exxxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ovyh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw2fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8kj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seddb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hisa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx36q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fekwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_102hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2cdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn1n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w64h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fds3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hoyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_181ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sn5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hb35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vnp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orqx5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptic1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6yqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr4bg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_07ume") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5im4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uxc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smy7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thvk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tgn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7xgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj3ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps54f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tlti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xhu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rsga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abkil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv2a1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqonb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqdob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq657") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu2a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpl5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ihth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7axaq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deceptib0t.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deceptib0t.tres new file mode 100644 index 0000000..4f7b9fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_deceptib0t.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://dht3lmpj7b10i"] + +[ext_resource type="Texture2D" uid="uid://u22lc057xm6p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png" id="1_mbctk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbhgf"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n18e"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jolic"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ns7"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h1gv"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kvh1"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrgpc"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yntrx"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74ksb"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy4sp"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f311"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kktgt"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sh5c"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34p5v"] +atlas = ExtResource("1_mbctk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1nlm"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb55j"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mlir"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tydwn"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6sdi"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3oi8"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r05hh"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b2sh"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3k2k"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s657c"] +atlas = ExtResource("1_mbctk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycwl1"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h5oc"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noxu4"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkkve"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2wrv"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvkvm"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7fee"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cimns"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yluf8"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kglkq"] +atlas = ExtResource("1_mbctk") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxufv"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgvai"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htprl"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu8sf"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw3oy"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybcxg"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c1t2"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhp7t"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvybp"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cchig"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5bbh"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikhkd"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1bul"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxqa8"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1k0m"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u1mb"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkmva"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aayye"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbktw"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e4ow"] +atlas = ExtResource("1_mbctk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chm1e"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6vmn"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n13y8"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4xxm"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c7p0"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xgjp"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4csae"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3tot"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqsvn"] +atlas = ExtResource("1_mbctk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vblnl"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jim2"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoksi"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6n8x"] +atlas = ExtResource("1_mbctk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xhyd"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgqcn"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78eam"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyrss"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3b1j"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce77u"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wcff"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnhr0"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwdqj"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw7jv"] +atlas = ExtResource("1_mbctk") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj0fh"] +atlas = ExtResource("1_mbctk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu72c"] +atlas = ExtResource("1_mbctk") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjs66"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ccf"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1wog"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3jau"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq6n5"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83jmy"] +atlas = ExtResource("1_mbctk") +region = Rect2(707, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbhgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n18e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jolic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ns7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h1gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kvh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrgpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yntrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74ksb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy4sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f311") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kktgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sh5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34p5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1nlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb55j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mlir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tydwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6sdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3oi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r05hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b2sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3k2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s657c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycwl1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h5oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noxu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkkve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2wrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvkvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7fee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cimns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yluf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kglkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxufv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgvai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htprl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu8sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw3oy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybcxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c1t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhp7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvybp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cchig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5bbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikhkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1bul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxqa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1k0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u1mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkmva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aayye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbktw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e4ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chm1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6vmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n13y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4xxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c7p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xgjp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4csae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3tot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqsvn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vblnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jim2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoksi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6n8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xhyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgqcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78eam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyrss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3b1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce77u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wcff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnhr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwdqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw7jv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj0fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu72c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjs66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ccf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1wog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3jau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq6n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83jmy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dex.tres new file mode 100644 index 0000000..89bc6c5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dex.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://71e388iagndt"] + +[ext_resource type="Texture2D" uid="uid://svugf85ijn43" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png" id="1_nwo82"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuldj"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ral6"] +atlas = ExtResource("1_nwo82") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef8l6"] +atlas = ExtResource("1_nwo82") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngo4o"] +atlas = ExtResource("1_nwo82") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0efu"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buun4"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3evb5"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqo81"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6dwa"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4flb"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w272r"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjrhp"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a102"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmjfl"] +atlas = ExtResource("1_nwo82") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu16x"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6jgm"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc7wx"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g0xl"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ava1v"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4ecv"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ylou"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5ur5"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8f7u"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sasfx"] +atlas = ExtResource("1_nwo82") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uooo"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmci"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nel74"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww3qk"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uymii"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5jom"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at6lg"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ijeh"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13wim"] +atlas = ExtResource("1_nwo82") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fv54"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arr65"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyueh"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2p3b"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhb2d"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moxmk"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l21fr"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t3sm"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgq1m"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mvoc"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmuh8"] +atlas = ExtResource("1_nwo82") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnms1"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8o6d"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrlyt"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dy2r"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pte1d"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq6nq"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oejr8"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5a2n"] +atlas = ExtResource("1_nwo82") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxf5b"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhfkv"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv8jl"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_477ip"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qvc4"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g80p5"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g24v"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slvha"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgg5q"] +atlas = ExtResource("1_nwo82") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydgi4"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eopj"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3a5q"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0db3h"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hwik"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbkls"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcpaq"] +atlas = ExtResource("1_nwo82") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6o7v"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsykl"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wtrc"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31v1q"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w273"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyqtb"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbtwa"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81wa5"] +atlas = ExtResource("1_nwo82") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ral6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef8l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngo4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0efu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buun4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3evb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqo81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6dwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4flb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w272r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjrhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a102") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmjfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu16x") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6jgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc7wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g0xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ava1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4ecv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ylou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5ur5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8f7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sasfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uooo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nel74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww3qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uymii") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5jom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at6lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ijeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13wim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fv54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arr65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyueh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2p3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhb2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moxmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l21fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t3sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgq1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mvoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmuh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnms1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8o6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrlyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dy2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pte1d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq6nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oejr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5a2n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxf5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhfkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv8jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_477ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qvc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g80p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g24v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slvha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgg5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydgi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eopj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3a5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0db3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hwik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbkls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcpaq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6o7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsykl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wtrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31v1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w273") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyqtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbtwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81wa5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_diamondgolem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_diamondgolem.tres new file mode 100644 index 0000000..320689f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_diamondgolem.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://bukpfoi4b6neb"] + +[ext_resource type="Texture2D" uid="uid://cag2216y26fqq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png" id="1_thauo"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffae3"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ljpq"] +atlas = ExtResource("1_thauo") +region = Rect2(1834, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs6g0"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sqqk"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3op57"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udrjg"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e72w8"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54jnr"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16gx0"] +atlas = ExtResource("1_thauo") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jt54s"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3ppy"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae6cq"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5bga"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5tre"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwlkg"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8ymg"] +atlas = ExtResource("1_thauo") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_latoa"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5yd2"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkppi"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31gbe"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrivl"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uib6u"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th1qf"] +atlas = ExtResource("1_thauo") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uhht"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adhel"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixpj8"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_658cp"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f07i6"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up2fl"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1efoa"] +atlas = ExtResource("1_thauo") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sljyl"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hke5m"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5migj"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0tsm"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gueqc"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7tku"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1djp"] +atlas = ExtResource("1_thauo") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l75d4"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvk2r"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ii1s"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn8ae"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxuai"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw6yi"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grvbn"] +atlas = ExtResource("1_thauo") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsixf"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78wwc"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6swi"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2fij"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5f8d"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v2hs"] +atlas = ExtResource("1_thauo") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egeur"] +atlas = ExtResource("1_thauo") +region = Rect2(1834, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6q8b"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huqpp"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2hfg"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tibqw"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewgqi"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugtvh"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc2pc"] +atlas = ExtResource("1_thauo") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55rpj"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnvl4"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8gvh"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0smj"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jobnc"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84ol2"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyrqr"] +atlas = ExtResource("1_thauo") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_686da"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ivq0"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43r1f"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba0oh"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilnue"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upw15"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvclf"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm760"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpexn"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpej1"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ai4"] +atlas = ExtResource("1_thauo") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwl1g"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjntc"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbexj"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn83c"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f041"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koflw"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lal8v"] +atlas = ExtResource("1_thauo") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afpfj"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq8qj"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lp28"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kimtx"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5mo"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dywxq"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcmsd"] +atlas = ExtResource("1_thauo") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axn85"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onico"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuyou"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlyrq"] +atlas = ExtResource("1_thauo") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aev7b"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8me2"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7l0u"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yyb5"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py8d3"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4pgd"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qm4"] +atlas = ExtResource("1_thauo") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffae3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ljpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs6g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sqqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3op57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udrjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e72w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54jnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16gx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jt54s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3ppy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae6cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5bga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5tre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwlkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8ymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_latoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5yd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkppi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31gbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrivl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uib6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th1qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uhht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adhel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixpj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_658cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f07i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up2fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1efoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sljyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hke5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5migj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0tsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gueqc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7tku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1djp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l75d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvk2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ii1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn8ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxuai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw6yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grvbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsixf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78wwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6swi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2fij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5f8d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v2hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egeur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6q8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huqpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2hfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tibqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewgqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugtvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc2pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55rpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnvl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8gvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0smj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jobnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84ol2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyrqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_686da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ivq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43r1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba0oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilnue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upw15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvclf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm760") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpexn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpej1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ai4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwl1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjntc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbexj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn83c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f041") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koflw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lal8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afpfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq8qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lp28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kimtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dywxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcmsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axn85") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_onico") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuyou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlyrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aev7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8me2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7l0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yyb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py8d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4pgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2qm4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dilotas_attack.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dilotas_attack.tres new file mode 100644 index 0000000..543a4a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dilotas_attack.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://c3ru5bdar5wls"] + +[ext_resource type="Texture2D" uid="uid://b86xcgv5363tu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png" id="1_7fuvh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lcov"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mns23"] +atlas = ExtResource("1_7fuvh") +region = Rect2(888, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cglo"] +atlas = ExtResource("1_7fuvh") +region = Rect2(888, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31jg3"] +atlas = ExtResource("1_7fuvh") +region = Rect2(888, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x214o"] +atlas = ExtResource("1_7fuvh") +region = Rect2(888, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmxec"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_audvv"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k7kp"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sn0u"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhdjn"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_romj4"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr2j2"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tnu8"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsiwk"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8icy1"] +atlas = ExtResource("1_7fuvh") +region = Rect2(777, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjxne"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw6n8"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucuyh"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71qr1"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qrto"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6qg0"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl8xv"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k052"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hucut"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgbuw"] +atlas = ExtResource("1_7fuvh") +region = Rect2(666, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrbi1"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8pqu"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kao2"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r7e4"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7t0o"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrsn3"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irh0o"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c5jk"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv8h2"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uel7i"] +atlas = ExtResource("1_7fuvh") +region = Rect2(555, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bhvl"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp1ql"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1p64"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igqyw"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epndd"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7yo3"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pln8q"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ychi"] +atlas = ExtResource("1_7fuvh") +region = Rect2(888, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1wc5"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpmin"] +atlas = ExtResource("1_7fuvh") +region = Rect2(444, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_206f5"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb3w8"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cckk6"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i22cq"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2y8p"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5wet"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w22xi"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dymqn"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk4md"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuw73"] +atlas = ExtResource("1_7fuvh") +region = Rect2(333, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mi8e6"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qe1m"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihv34"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwx3e"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0a7"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84jd1"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eki11"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k4ui"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wewn"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyonm"] +atlas = ExtResource("1_7fuvh") +region = Rect2(222, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_531ax"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rbwt"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wbtk"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aky0h"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xetm"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjebu"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e55t0"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xttsw"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od8ce"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfpak"] +atlas = ExtResource("1_7fuvh") +region = Rect2(111, 0, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh15i"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 909, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd01r"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 808, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3vqw"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 707, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8faj"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 606, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwbu4"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 505, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp57r"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 404, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbxwo"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 303, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl4cs"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 202, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jno3s"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 101, 110, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syp5h"] +atlas = ExtResource("1_7fuvh") +region = Rect2(0, 0, 110, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lcov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mns23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cglo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31jg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x214o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmxec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_audvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k7kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sn0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhdjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_romj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr2j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tnu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsiwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8icy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjxne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw6n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucuyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71qr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qrto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6qg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl8xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k052") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hucut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgbuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrbi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8pqu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kao2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r7e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7t0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrsn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irh0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c5jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv8h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uel7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bhvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp1ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1p64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igqyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epndd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7yo3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pln8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ychi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1wc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpmin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_206f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb3w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cckk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i22cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2y8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5wet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w22xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dymqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk4md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuw73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mi8e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qe1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihv34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwx3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0a7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_84jd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eki11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k4ui") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wewn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyonm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_531ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rbwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wbtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aky0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xetm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjebu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e55t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xttsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od8ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfpak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh15i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd01r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3vqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8faj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwbu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp57r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbxwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl4cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jno3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syp5h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dreamgazer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dreamgazer.tres new file mode 100644 index 0000000..ca0dbe2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dreamgazer.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://dvid0052potv2"] + +[ext_resource type="Texture2D" uid="uid://ca0sqe83d8jim" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png" id="1_vurt8"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qrnn"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xjmt"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpq6r"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cgfc"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkra7"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mids"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhu0e"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biv32"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xh5i"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rhia"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7bvw"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx86i"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs6pi"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wspu"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa73h"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb8yd"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj2q3"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww23b"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8oua"] +atlas = ExtResource("1_vurt8") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksjqw"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o608o"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0bwf"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhgj6"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dpy1"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq1j1"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vi2k"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18cbl"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soy5t"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6shm"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fpib"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1p6x"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0lwk"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxjsa"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrs21"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aipqr"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0swib"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctpet"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7or"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cohna"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugn5x"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j208w"] +atlas = ExtResource("1_vurt8") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1d18"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64i60"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ltp5"] +atlas = ExtResource("1_vurt8") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8ioo"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giffp"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay7da"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hwmv"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5trr"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lgxm"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sba23"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmo2e"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0t5m"] +atlas = ExtResource("1_vurt8") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxhhb"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28x43"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbjyi"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5hxm"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ummx"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wowuv"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnh4w"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5b77"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rshoc"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtuav"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u54v8"] +atlas = ExtResource("1_vurt8") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87odr"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4c7j"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq43m"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdytk"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0icta"] +atlas = ExtResource("1_vurt8") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43d5d"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2runo"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbbac"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bogqv"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdxfb"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jagwu"] +atlas = ExtResource("1_vurt8") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp00p"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d18wk"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g61p"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v0x0"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymter"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oldw3"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cuxk"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v3ov"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkc82"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nxie"] +atlas = ExtResource("1_vurt8") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qrnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xjmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpq6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cgfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkra7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mids") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhu0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biv32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xh5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rhia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7bvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx86i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs6pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wspu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa73h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb8yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj2q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww23b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8oua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksjqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o608o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0bwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhgj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dpy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq1j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vi2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18cbl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_soy5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6shm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fpib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1p6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0lwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxjsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrs21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aipqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0swib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctpet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cohna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugn5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j208w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1d18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64i60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ltp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8ioo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giffp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay7da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hwmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5trr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lgxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sba23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmo2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0t5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxhhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28x43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbjyi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5hxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ummx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wowuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnh4w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5b77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rshoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtuav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u54v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87odr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4c7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq43m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdytk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0icta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43d5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2runo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbbac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bogqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdxfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jagwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp00p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d18wk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g61p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v0x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymter") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oldw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cuxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v3ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkc82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nxie") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dustwailer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dustwailer.tres new file mode 100644 index 0000000..6806bc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_dustwailer.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://c6ge75a53ibsg"] + +[ext_resource type="Texture2D" uid="uid://c3vrb5ivjttx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png" id="1_1nx7n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dmmf"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lsdi"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xemv4"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksot4"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tc6v"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neiyx"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpr7g"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwm33"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f11b"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lh4p"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye0r5"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2drh1"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btixn"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h0md"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2nbk"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enoue"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1wmy"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0q3d"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g081"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rkv7"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoq23"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e71gp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qehvr"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6e4o"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7wec"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sge5t"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwkjx"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yggpv"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7owxe"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtjs2"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycdbf"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv1vj"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm282"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h1jp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwbae"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6blo"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu8y8"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w702"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws6ha"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvtf0"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tmbl"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0cxv"] +atlas = ExtResource("1_1nx7n") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7y7v"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3stte"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4lsd"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov6kp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds5lt"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s0jo"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7fh4"] +atlas = ExtResource("1_1nx7n") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t1qj"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg3km"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwo4i"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7dgk"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh0jt"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7bes"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1mpf"] +atlas = ExtResource("1_1nx7n") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv76h"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4dwn"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c25cv"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foom3"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a3cw"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3scen"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hti1q"] +atlas = ExtResource("1_1nx7n") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qoi0e"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw880"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xppdv"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lagp5"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1prmk"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b12fg"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdwnp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf3w2"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj2om"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u8vd"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qttql"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csala"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36gg3"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygwxt"] +atlas = ExtResource("1_1nx7n") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxkuk"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s3y8"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7ygu"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f348p"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8fo1"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ksi0"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dpt4"] +atlas = ExtResource("1_1nx7n") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v2bo"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqcyi"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8ajj"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shesp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwyqg"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h1os"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssdhp"] +atlas = ExtResource("1_1nx7n") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dmmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lsdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xemv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksot4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tc6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neiyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpr7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwm33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f11b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lh4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye0r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2drh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btixn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h0md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2nbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enoue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1wmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0q3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g081") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rkv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoq23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e71gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qehvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6e4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7wec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sge5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwkjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yggpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7owxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtjs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycdbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv1vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm282") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h1jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwbae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6blo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu8y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w702") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws6ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvtf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tmbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0cxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7y7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3stte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4lsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov6kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds5lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s0jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7fh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t1qj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg3km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwo4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7dgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh0jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7bes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1mpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv76h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4dwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c25cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foom3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a3cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3scen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hti1q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qoi0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw880") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xppdv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lagp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1prmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b12fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdwnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf3w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj2om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u8vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qttql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csala") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36gg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygwxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxkuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s3y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7ygu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f348p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8fo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ksi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dpt4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v2bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqcyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8ajj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shesp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwyqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h1os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssdhp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_eclipse.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_eclipse.tres new file mode 100644 index 0000000..5fef5a3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_eclipse.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://5mshs3j7mg4i"] + +[ext_resource type="Texture2D" uid="uid://b3say1iuofk4q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png" id="1_hmsb3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks6da"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3en8"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkxw5"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8vv1"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebi7g"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oocwl"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huai8"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5cog"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aridr"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_452o8"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geg2a"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vcjf"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rysh"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svvjh"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_br6nh"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nciuc"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls1ul"] +atlas = ExtResource("1_hmsb3") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vslni"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fgwm"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_layrx"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjpju"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvyf7"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2fge"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvsc5"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpa8p"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r2kh"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyb28"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yba7t"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4n3i"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh5fx"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_040ry"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk2at"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boqcn"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy482"] +atlas = ExtResource("1_hmsb3") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ri0b"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1b4e"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sj28"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5qea"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8lgy"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0331r"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ky6x"] +atlas = ExtResource("1_hmsb3") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psswi"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8towk"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay1ie"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyi6w"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blrbt"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkvpt"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0a4cw"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od2o5"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5wj7"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ghp"] +atlas = ExtResource("1_hmsb3") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h458k"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m2e3"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2ytf"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y100e"] +atlas = ExtResource("1_hmsb3") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws5yp"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkqlj"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f688m"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg0vt"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkk1j"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgu8m"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h04fi"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akedh"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbnm4"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymije"] +atlas = ExtResource("1_hmsb3") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0gt3"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpm7b"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg40b"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nixc5"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kxao"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5f5l"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pl2s"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f66i1"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blu77"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jswia"] +atlas = ExtResource("1_hmsb3") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks6da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3en8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkxw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8vv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebi7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oocwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huai8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5cog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aridr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_452o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geg2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vcjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rysh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svvjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_br6nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nciuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls1ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vslni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fgwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_layrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjpju") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvyf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2fge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvsc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpa8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r2kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyb28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yba7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4n3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh5fx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_040ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk2at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boqcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy482") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ri0b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1b4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sj28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5qea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8lgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0331r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ky6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psswi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8towk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay1ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyi6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blrbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkvpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0a4cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od2o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5wj7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ghp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h458k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m2e3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2ytf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y100e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws5yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkqlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f688m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg0vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkk1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgu8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h04fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akedh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbnm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymije") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0gt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpm7b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg40b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nixc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kxao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5f5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pl2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f66i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blu77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jswia") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_emp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_emp.tres new file mode 100644 index 0000000..6c7a594 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_emp.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://c557qt3gk2mct"] + +[ext_resource type="Texture2D" uid="uid://cwwth24efi28j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png" id="1_e7asu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d0r6"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kskwq"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mms0p"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf1ei"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dbsj"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oasd3"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30p8t"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te0se"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rri1"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma5kk"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl0qc"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojvfm"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2g25"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fdta"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw1ow"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyi06"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlw3f"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmqfr"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8nvk"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1sro"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0w1h"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqjf1"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qxr8"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt0g6"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpumo"] +atlas = ExtResource("1_e7asu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2ckc"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuh4x"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbpth"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5cjj"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16bxa"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af5jn"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8lo3"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xpxk"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcuyn"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atw83"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ggcb"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajvr5"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gfnf"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33jda"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfwkx"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4s5s"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wndhg"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okj23"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqxc2"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h78qi"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6br6"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8hdd"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fp6p"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oayr5"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mauu5"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3og2y"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cyr0"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8up13"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30tw8"] +atlas = ExtResource("1_e7asu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_174dn"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vto55"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40omt"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg3h8"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7186"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6w0q"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c65to"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng4ko"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmonj"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k6js"] +atlas = ExtResource("1_e7asu") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs3sv"] +atlas = ExtResource("1_e7asu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lho3r"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn8aj"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xnkp"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdmaq"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk3d5"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovoh7"] +atlas = ExtResource("1_e7asu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj1xb"] +atlas = ExtResource("1_e7asu") +region = Rect2(404, 909, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d0r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kskwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mms0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf1ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dbsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oasd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30p8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te0se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rri1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma5kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl0qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojvfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2g25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fdta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw1ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyi06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlw3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmqfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8nvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1sro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0w1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqjf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qxr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt0g6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpumo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2ckc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuh4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbpth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5cjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16bxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af5jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8lo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xpxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcuyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atw83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ggcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajvr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gfnf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33jda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfwkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4s5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wndhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okj23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqxc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h78qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6br6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8hdd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fp6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oayr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mauu5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3og2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cyr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8up13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30tw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_174dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vto55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40omt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg3h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7186") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6w0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c65to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng4ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmonj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k6js") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs3sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lho3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn8aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xnkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdmaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk3d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovoh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj1xb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_envybaer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_envybaer.tres new file mode 100644 index 0000000..8e3f445 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_envybaer.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://b6eecthr0uhvu"] + +[ext_resource type="Texture2D" uid="uid://gys82asxwk7d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png" id="1_w6sdu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd07r"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmqpo"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w1xv"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivtwm"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l3i4"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sev0v"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w81ky"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82byd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y75xd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0rd2"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amjd7"] +atlas = ExtResource("1_w6sdu") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x1bw"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8qbo"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vseu"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36b4f"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwavn"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiv6q"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eirda"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6dkk"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32v5e"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uv7e"] +atlas = ExtResource("1_w6sdu") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y0f8"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlijt"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh44u"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh4cb"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2lso"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hr11x"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aljgr"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_075kn"] +atlas = ExtResource("1_w6sdu") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7djq"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g2ps"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtte5"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob1bd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_622wg"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgyds"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj5j6"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oq3h3"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yqie"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5qgc"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uau8"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g81bi"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gs4o"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufrxj"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4wdd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux5vs"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm2pk"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sons"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxgl5"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwlqh"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpel4"] +atlas = ExtResource("1_w6sdu") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aipb"] +atlas = ExtResource("1_w6sdu") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbs7l"] +atlas = ExtResource("1_w6sdu") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuc6k"] +atlas = ExtResource("1_w6sdu") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfs6l"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2umwc"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3beuo"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8l1a"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqacl"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk03x"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8l3r"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7ygq"] +atlas = ExtResource("1_w6sdu") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l166o"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he17p"] +atlas = ExtResource("1_w6sdu") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn87u"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dutp2"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpgay"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2avab"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7symx"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftuki"] +atlas = ExtResource("1_w6sdu") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tslt"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyx01"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skrcb"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkrdu"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch5om"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwirr"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmqc6"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il2kr"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mmdx"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3l2p"] +atlas = ExtResource("1_w6sdu") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5grv"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtcnl"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p7gr"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djjmd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnbpt"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhahi"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gmpd"] +atlas = ExtResource("1_w6sdu") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo2af"] +atlas = ExtResource("1_w6sdu") +region = Rect2(202, 909, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd07r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmqpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w1xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivtwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l3i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sev0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w81ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82byd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y75xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0rd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amjd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x1bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8qbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vseu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36b4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwavn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiv6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eirda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6dkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32v5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uv7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y0f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlijt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh44u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh4cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2lso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hr11x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aljgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_075kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7djq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g2ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtte5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob1bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_622wg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgyds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj5j6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oq3h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yqie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5qgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uau8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g81bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gs4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufrxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4wdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux5vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm2pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sons") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxgl5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwlqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpel4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aipb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbs7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuc6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfs6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2umwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3beuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8l1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqacl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk03x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8l3r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7ygq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l166o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he17p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn87u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dutp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpgay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2avab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7symx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftuki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tslt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyx01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skrcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkrdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch5om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwirr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmqc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il2kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mmdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3l2p") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5grv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtcnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p7gr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djjmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnbpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhahi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gmpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo2af") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_exun.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_exun.tres new file mode 100644 index 0000000..8c47a31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_exun.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://r7ydg6ppcyuk"] + +[ext_resource type="Texture2D" uid="uid://d20o24kl66l42" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png" id="1_y0uir"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c5x0"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wenhl"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no6pt"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_554q7"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhom1"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d58gk"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltfx1"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwrdj"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3n76"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcxw6"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6nvl"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nsmv"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eulru"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mvlg"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h75aq"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3juxc"] +atlas = ExtResource("1_y0uir") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u14i1"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehvlb"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm871"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaa0h"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f4ar"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2rtw"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rei2b"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkomx"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyw8e"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww2wh"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3ts1"] +atlas = ExtResource("1_y0uir") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn3al"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3ape"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtg28"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqovv"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc0sc"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdwv8"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fco0t"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su7vk"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1fdv"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k013"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8cpu"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj3id"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qsa3"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhkbx"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jags4"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnt4q"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c14um"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpfd0"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pr4h"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojqsm"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdoj1"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13ov8"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxlex"] +atlas = ExtResource("1_y0uir") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ji6"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc3hc"] +atlas = ExtResource("1_y0uir") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk46l"] +atlas = ExtResource("1_y0uir") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0frtc"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22gve"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avr3i"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ragkp"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxn0j"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57pg"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eukv"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auldm"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ydda"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5xwg"] +atlas = ExtResource("1_y0uir") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5wh5"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk1il"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebesj"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1wj"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tif53"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wes3"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trnru"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yedic"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsqkw"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_echj4"] +atlas = ExtResource("1_y0uir") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c5x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wenhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no6pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_554q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhom1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d58gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltfx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwrdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3n76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcxw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6nvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nsmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eulru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mvlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h75aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3juxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u14i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehvlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm871") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaa0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f4ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2rtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rei2b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkomx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyw8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww2wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3ts1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn3al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3ape") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtg28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqovv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc0sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdwv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fco0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su7vk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1fdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k013") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8cpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj3id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qsa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhkbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jags4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnt4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c14um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpfd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pr4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojqsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdoj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13ov8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxlex") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ji6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc3hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk46l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0frtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22gve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avr3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ragkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxn0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eukv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auldm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ydda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5xwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5wh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk1il") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebesj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tif53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wes3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trnru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yedic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsqkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_echj4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_feralu.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_feralu.tres new file mode 100644 index 0000000..6c9f225 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_feralu.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://dva3au70qrrey"] + +[ext_resource type="Texture2D" uid="uid://j0ouhpbqyq4q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png" id="1_8a6rr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b376r"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii5yi"] +atlas = ExtResource("1_8a6rr") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb15v"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mikjg"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dgqv"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udlve"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i0ch"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbf36"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufg1b"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h6dn"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awfvb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjuhy"] +atlas = ExtResource("1_8a6rr") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8suu"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upjej"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs4ag"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a307"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpxl7"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onp1k"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygf1n"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ukmx"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqrdv"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lag1o"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt4pb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2j8n"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v1q7"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtqq8"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqfta"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doxyb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5mkt"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3x54"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47ygl"] +atlas = ExtResource("1_8a6rr") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s7tl"] +atlas = ExtResource("1_8a6rr") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5122j"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmmf"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs7h8"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aikpv"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43xa8"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfr0q"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge62q"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajsbr"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awcla"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edwno"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egb54"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ftb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkm4r"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m4bx"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k8h8"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl6bk"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iwfy"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifh84"] +atlas = ExtResource("1_8a6rr") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b4oe"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egvvq"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dikdk"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_or5l4"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt11e"] +atlas = ExtResource("1_8a6rr") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wypac"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0oht"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r68xp"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr173"] +atlas = ExtResource("1_8a6rr") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afha5"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24uii"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu1ek"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc3nj"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl6d6"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quxjb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlgc6"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e73xb"] +atlas = ExtResource("1_8a6rr") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b376r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii5yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb15v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mikjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dgqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udlve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i0ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbf36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufg1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h6dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awfvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjuhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8suu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upjej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs4ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a307") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpxl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onp1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygf1n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ukmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqrdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lag1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt4pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2j8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v1q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtqq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqfta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doxyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5mkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3x54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47ygl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s7tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5122j") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs7h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aikpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43xa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfr0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge62q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajsbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awcla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edwno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egb54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ftb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkm4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m4bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k8h8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl6bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iwfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifh84") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b4oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egvvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dikdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_or5l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt11e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wypac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0oht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r68xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr173") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_afha5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24uii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu1ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc3nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl6d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quxjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlgc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e73xb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_firestarter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_firestarter.tres new file mode 100644 index 0000000..315d2f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_firestarter.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cxyl85eovhi87"] + +[ext_resource type="Texture2D" uid="uid://buhfcjttcwfnn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png" id="1_50ap2"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g11g"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a70qu"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abt2c"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42s2s"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lnbd"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkigo"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8x2t"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsp08"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sylhx"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0e62"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k08gy"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqic6"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p4s8"] +atlas = ExtResource("1_50ap2") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3pk1"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmrp2"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8lg8"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjxda"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5h5x"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kicbv"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cec7p"] +atlas = ExtResource("1_50ap2") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt4er"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjicd"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj0s1"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eegq"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t164a"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ftge"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twb3l"] +atlas = ExtResource("1_50ap2") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fedol"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hboo"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cur24"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bpux"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwdn2"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv6d7"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp5rg"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t28q6"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1d36"] +atlas = ExtResource("1_50ap2") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4rmd"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cllw7"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci6na"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnee4"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leaxb"] +atlas = ExtResource("1_50ap2") +region = Rect2(1410, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd521"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_258vp"] +atlas = ExtResource("1_50ap2") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hg6p"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdek1"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrsyy"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_haawc"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg8lq"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4jhw"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcq72"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk1pp"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7arq"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuqm3"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uhhf"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crw0u"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajfr6"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e85g3"] +atlas = ExtResource("1_50ap2") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xms6o"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y7fg"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taxnu"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghbl0"] +atlas = ExtResource("1_50ap2") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh33c"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_537a5"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ijqw"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqjs"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcb4k"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfvo7"] +atlas = ExtResource("1_50ap2") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alesn"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0udu5"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhklt"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaraq"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j211"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlab8"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1lkw"] +atlas = ExtResource("1_50ap2") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jglaq"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syy74"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr1bj"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxepj"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux0te"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_precu"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxist"] +atlas = ExtResource("1_50ap2") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g11g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a70qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abt2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42s2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lnbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkigo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8x2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsp08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sylhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0e62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k08gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqic6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p4s8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3pk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmrp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8lg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjxda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5h5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kicbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cec7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt4er") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjicd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj0s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eegq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t164a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ftge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twb3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fedol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hboo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cur24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bpux") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwdn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv6d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp5rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t28q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1d36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4rmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cllw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci6na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnee4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leaxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd521") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_258vp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hg6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdek1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrsyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_haawc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg8lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4jhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk1pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7arq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuqm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uhhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crw0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajfr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e85g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xms6o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y7fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_taxnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghbl0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh33c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_537a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ijqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcb4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfvo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alesn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0udu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhklt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaraq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j211") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlab8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1lkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jglaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syy74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr1bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxepj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux0te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_precu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxist") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_fog.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_fog.tres new file mode 100644 index 0000000..2dfafe7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_fog.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://bgtfw6ydtofuh"] + +[ext_resource type="Texture2D" uid="uid://cydth2ikuuwck" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png" id="1_ueywm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j22b0"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2syo6"] +atlas = ExtResource("1_ueywm") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs1d3"] +atlas = ExtResource("1_ueywm") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnful"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17u1h"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xyy1"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ommo"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80t4u"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kau6h"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o7oa"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6afu"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf82p"] +atlas = ExtResource("1_ueywm") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bga7c"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oaxs"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtv00"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txmgf"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq1g5"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w67qt"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh54f"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahamd"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6rpx"] +atlas = ExtResource("1_ueywm") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n70o4"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd34y"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbtoq"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s88bu"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb5n0"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfwqr"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afj3c"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p2pj"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0426m"] +atlas = ExtResource("1_ueywm") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dmnt"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kd2l"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5s4b"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4555b"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by2gl"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o245"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44ymk"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me6ra"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpw0i"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tptlk"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aucfq"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_580ye"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d4t5"] +atlas = ExtResource("1_ueywm") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de2r6"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxql6"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwes0"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1i1y"] +atlas = ExtResource("1_ueywm") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cos4d"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa7v1"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfdqf"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw1um"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw2u2"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhcq6"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j72fa"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq60o"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh0h6"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsabr"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cbqh"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvdcd"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qp3u"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kghr"] +atlas = ExtResource("1_ueywm") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shxjv"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6u3q"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsmwd"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbxtp"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoej2"] +atlas = ExtResource("1_ueywm") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kmsd"] +atlas = ExtResource("1_ueywm") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spaij"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pckk2"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jso2k"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m801d"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ijto"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpdux"] +atlas = ExtResource("1_ueywm") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvk08"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p2mv"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejqe0"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnx3e"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di70b"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsmj2"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opdf7"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs4c5"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkf4"] +atlas = ExtResource("1_ueywm") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxy7k"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0ixo"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6okh"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fis5"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t37b7"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc3dg"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6x2m"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fly8i"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntclo"] +atlas = ExtResource("1_ueywm") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j22b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2syo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs1d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnful") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17u1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xyy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ommo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80t4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kau6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o7oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6afu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf82p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bga7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oaxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtv00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txmgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq1g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w67qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh54f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahamd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6rpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n70o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd34y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbtoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s88bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb5n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfwqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afj3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p2pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0426m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dmnt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kd2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5s4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4555b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by2gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o245") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44ymk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me6ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpw0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tptlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aucfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_580ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d4t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de2r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxql6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwes0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1i1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cos4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa7v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfdqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw1um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw2u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhcq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j72fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq60o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh0h6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsabr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cbqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvdcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qp3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kghr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shxjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6u3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsmwd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbxtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoej2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kmsd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spaij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pckk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jso2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m801d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ijto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpdux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvk08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p2mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejqe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnx3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di70b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsmj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opdf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs4c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pkf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxy7k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0ixo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6okh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fis5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t37b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc3dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6x2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fly8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntclo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gambler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gambler.tres new file mode 100644 index 0000000..913d505 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gambler.tres @@ -0,0 +1,629 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://byr040vt683tb"] + +[ext_resource type="Texture2D" uid="uid://gr850qegqoma" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png" id="1_3fymi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbd84"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umd5y"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nniwg"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj57d"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fq0d"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11mec"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ldw3"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhkia"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqv7s"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8kis"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8imfr"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri4pc"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x46lm"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ypg"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp6tc"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ur2e"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n62d1"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5kvm"] +atlas = ExtResource("1_3fymi") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfw8e"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ottb"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tcka"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kfmk"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoaf8"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7trc"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyc4g"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt40i"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc62q"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf8ch"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw6sd"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyfw7"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imtmf"] +atlas = ExtResource("1_3fymi") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gly3"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fapdj"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n724o"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl6a1"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64why"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8glqa"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awd0s"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc1tw"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8du50"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vawl"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vu2a"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivpnl"] +atlas = ExtResource("1_3fymi") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn7eb"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld2n6"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ckw0"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxqpl"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_467ji"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asoc4"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rv3t"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hmrq"] +atlas = ExtResource("1_3fymi") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewg7m"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ttr8"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaj1j"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbb4b"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuld1"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq20d"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xulcq"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ivu0"] +atlas = ExtResource("1_3fymi") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwysj"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb6nx"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23cfm"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqo37"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_355gw"] +atlas = ExtResource("1_3fymi") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kdg4"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e74y"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_077sl"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tedq"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5hix"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82cnw"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0f8r"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm2hv"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuypk"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btlau"] +atlas = ExtResource("1_3fymi") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqte3"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qanyt"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oha6r"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn8uh"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4vbd"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsqte"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi03g"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcve8"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbuch"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p2td"] +atlas = ExtResource("1_3fymi") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbd84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umd5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nniwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj57d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fq0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11mec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ldw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhkia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqv7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8kis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8imfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri4pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x46lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ypg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp6tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ur2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n62d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5kvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfw8e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ottb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tcka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kfmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoaf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7trc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyc4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt40i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc62q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf8ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw6sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyfw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imtmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gly3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fapdj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n724o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl6a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64why") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8glqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awd0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc1tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8du50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vawl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vu2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivpnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn7eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld2n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ckw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxqpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_467ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asoc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rv3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hmrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewg7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ttr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaj1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbb4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuld1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq20d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xulcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ivu0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwysj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb6nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23cfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqo37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_355gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kdg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e74y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_077sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tedq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5hix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82cnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0f8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm2hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuypk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_btlau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqte3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qanyt") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oha6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn8uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4vbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsqte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi03g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcve8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbuch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p2td") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gauntletmaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gauntletmaster.tres new file mode 100644 index 0000000..42555b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gauntletmaster.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://brnc2oqkf53ym"] + +[ext_resource type="Texture2D" uid="uid://g4rur85lh06v" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png" id="1_lv1ao"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw0cc"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ixn7"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osymg"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xy5i"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41hwr"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhkn5"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20r10"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycovx"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ljv8"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clywl"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm423"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c66ai"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2w3w"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l74ph"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s0kv"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p402"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5hgt"] +atlas = ExtResource("1_lv1ao") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdor7"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh448"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nj2o"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytwil"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnr5f"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r28pv"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3molt"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_838pr"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y38a3"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woa7y"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oda32"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qksga"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s35t"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hij33"] +atlas = ExtResource("1_lv1ao") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvl1"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c26d1"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0rh1"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa21a"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddtny"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf65b"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wsdx"] +atlas = ExtResource("1_lv1ao") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib372"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j76v2"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqwro"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrtq4"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y70r"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk0w2"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy3eh"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tgir"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpmby"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckc47"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu2wm"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3v1e"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53vru"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmlh3"] +atlas = ExtResource("1_lv1ao") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tmbc"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03w0r"] +atlas = ExtResource("1_lv1ao") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mopr"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrvyl"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3jrb"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15try"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_siio3"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p4ky"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eyos"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiywt"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdold"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it5sy"] +atlas = ExtResource("1_lv1ao") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2j7c"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhd5k"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0ek6"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh5f7"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eakba"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b82g"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r40r"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec1yu"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3x8n"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl677"] +atlas = ExtResource("1_lv1ao") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw0cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ixn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osymg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xy5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41hwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhkn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20r10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycovx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ljv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clywl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm423") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c66ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2w3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l74ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s0kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p402") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5hgt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdor7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh448") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nj2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytwil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnr5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r28pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3molt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_838pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y38a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woa7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oda32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qksga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s35t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hij33") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c26d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0rh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa21a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddtny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf65b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wsdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib372") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j76v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqwro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrtq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y70r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk0w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy3eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tgir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpmby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckc47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu2wm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3v1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53vru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmlh3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tmbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03w0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mopr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrvyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3jrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15try") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_siio3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p4ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eyos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiywt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdold") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it5sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2j7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhd5k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0ek6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh5f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eakba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b82g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r40r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec1yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3x8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl677") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_geargrinder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_geargrinder.tres new file mode 100644 index 0000000..385c933 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_geargrinder.tres @@ -0,0 +1,834 @@ +[gd_resource type="SpriteFrames" load_steps=116 format=3 uid="uid://b4u8ggewxu7x7"] + +[ext_resource type="Texture2D" uid="uid://cvyavcssxqjd1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png" id="1_k48t7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aouwd"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcorm"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rxf2"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq8pj"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6skmu"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uj16"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icu0m"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2alr"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4jyu"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umhsp"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vsga"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q58ar"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1k6n"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np4qi"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0peb1"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvu0w"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nes4"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmie5"] +atlas = ExtResource("1_k48t7") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np7o1"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8cbc"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyfv3"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whqtu"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhrv5"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_273mv"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsyv5"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lebn"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhbrd"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k2nu"] +atlas = ExtResource("1_k48t7") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mt2h"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usq7h"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vws2p"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f6o7"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8kwr"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqihv"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f53gx"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1wvy"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82lf5"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2hvc"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbgqr"] +atlas = ExtResource("1_k48t7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl48k"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31b0d"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73lcx"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2xiu"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea4q4"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebd3a"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecn0e"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1op32"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mecuo"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv1wd"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7uod"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0k8k"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt7jt"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20hln"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewhyb"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ov25"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fq4r"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp1l3"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqwj6"] +atlas = ExtResource("1_k48t7") +region = Rect2(1010, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym0m8"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1m7t"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaybk"] +atlas = ExtResource("1_k48t7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm0ru"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyjha"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnfjo"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r308"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2grnt"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_houce"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkx5q"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7vcs"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8u48"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfibs"] +atlas = ExtResource("1_k48t7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgmo8"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6e0b"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mwc8"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1awvk"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm7cf"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80q5e"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82xpl"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oudn"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv7s3"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kljko"] +atlas = ExtResource("1_k48t7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjy74"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4jx5"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wallc"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mshod"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls0sj"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwoeo"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llwqd"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqybg"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfhm2"] +atlas = ExtResource("1_k48t7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilfey"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l67h"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raugq"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8uki"] +atlas = ExtResource("1_k48t7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ikwu"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vi6h"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh4wq"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qerv3"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rg17"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq746"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ce01"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abcbg"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jso55"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l47gn"] +atlas = ExtResource("1_k48t7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23t6k"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljy6x"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fytkx"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le51a"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aknhp"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tag7u"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdjcc"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utuv4"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wrvd"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggbk2"] +atlas = ExtResource("1_k48t7") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aouwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcorm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rxf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq8pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6skmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uj16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icu0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2alr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4jyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umhsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vsga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q58ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1k6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np4qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0peb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvu0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nes4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmie5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np7o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8cbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyfv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whqtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhrv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_273mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsyv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lebn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhbrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k2nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mt2h") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_usq7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vws2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f6o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8kwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqihv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f53gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1wvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82lf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2hvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbgqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl48k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31b0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73lcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2xiu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea4q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebd3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecn0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1op32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mecuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv1wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7uod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0k8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt7jt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20hln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewhyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ov25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fq4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp1l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqwj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym0m8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1m7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaybk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm0ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyjha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnfjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r308") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2grnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_houce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkx5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7vcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8u48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfibs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgmo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6e0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mwc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1awvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm7cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80q5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82xpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oudn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv7s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kljko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjy74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4jx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wallc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mshod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls0sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwoeo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_llwqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqybg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfhm2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilfey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l67h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raugq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8uki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ikwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vi6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh4wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qerv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rg17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq746") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ce01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abcbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jso55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l47gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23t6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljy6x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fytkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le51a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aknhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tag7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdjcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utuv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wrvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggbk2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghostlynx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghostlynx.tres new file mode 100644 index 0000000..d689a4d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghostlynx.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://v5rioqr5mt6g"] + +[ext_resource type="Texture2D" uid="uid://cvctvyam5mc15" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png" id="1_hkikd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqwgb"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbsr2"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7pe4"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maqu3"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lme7"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44jri"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reqlo"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3arl4"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjgvg"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3j7d"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2odt"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqlyn"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibs5l"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahkaw"] +atlas = ExtResource("1_hkikd") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgkoq"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pohlb"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c40ku"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skaty"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_segpc"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35c57"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wre1f"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbbth"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftb1k"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvh0n"] +atlas = ExtResource("1_hkikd") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b0eh"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy0vl"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvp42"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mdht"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dryh"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uv0j"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoni5"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fidnc"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6b88"] +atlas = ExtResource("1_hkikd") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m46kx"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7iei"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gsyl"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n43up"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6uui"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rogc"] +atlas = ExtResource("1_hkikd") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctqvj"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx7q6"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o653c"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6renj"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpp88"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8xse"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwcng"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61m87"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj5hi"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1avr"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgtg8"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdnf1"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0acq"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqlw5"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehw26"] +atlas = ExtResource("1_hkikd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g21gc"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myin0"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33ghj"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmp8d"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj431"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k44w4"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ackeo"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4bad"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3mo5"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1s8a"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddlsx"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsm2y"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4mit"] +atlas = ExtResource("1_hkikd") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03gn0"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llprd"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud6ab"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7tim"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e833a"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfdpp"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqsvw"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ic5f"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixuf2"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o14e"] +atlas = ExtResource("1_hkikd") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po2af"] +atlas = ExtResource("1_hkikd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpijg"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0wjy"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhkft"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idmjl"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p85p"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thmrl"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahd4p"] +atlas = ExtResource("1_hkikd") +region = Rect2(606, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqwgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbsr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7pe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maqu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lme7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44jri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reqlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3arl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjgvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3j7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2odt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqlyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibs5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahkaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgkoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pohlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c40ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skaty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_segpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35c57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wre1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbbth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftb1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvh0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b0eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy0vl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvp42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mdht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dryh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uv0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoni5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fidnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6b88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m46kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7iei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gsyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n43up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6uui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rogc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctqvj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx7q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o653c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6renj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpp88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8xse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwcng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61m87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj5hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1avr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgtg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdnf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0acq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqlw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehw26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g21gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myin0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33ghj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmp8d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj431") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k44w4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ackeo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4bad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3mo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1s8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddlsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsm2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4mit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03gn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llprd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud6ab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7tim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e833a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfdpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqsvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ic5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixuf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o14e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_po2af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpijg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0wjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhkft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idmjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p85p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thmrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahd4p") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghoulie.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghoulie.tres new file mode 100644 index 0000000..a44606b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ghoulie.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://cqb7wrij6ktd1"] + +[ext_resource type="Texture2D" uid="uid://bfjqf8sq3k7nv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png" id="1_02txu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwpwv"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw4lr"] +atlas = ExtResource("1_02txu") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x53d"] +atlas = ExtResource("1_02txu") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swq66"] +atlas = ExtResource("1_02txu") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgx1d"] +atlas = ExtResource("1_02txu") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcgsb"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7igp5"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trnaa"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmgdg"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v5vg"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_522h3"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7i3y"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwo51"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsxko"] +atlas = ExtResource("1_02txu") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8i7n"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgsyn"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbrai"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqma7"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjujb"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe1mq"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4l48"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii7mf"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2qho"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue1mr"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuyyr"] +atlas = ExtResource("1_02txu") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnckb"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj3hp"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pavo"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4m1t"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61l11"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b57ih"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rkgv"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymtd3"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd6u8"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo05p"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svmqk"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a37pa"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lw82"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m87l0"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4c67"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3268n"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jrrf"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmm3t"] +atlas = ExtResource("1_02txu") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjd0l"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6134"] +atlas = ExtResource("1_02txu") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euso1"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usmjh"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khqta"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysrrk"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yerb6"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0uwt"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s105"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twuqk"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phpoh"] +atlas = ExtResource("1_02txu") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw20a"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avdvt"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kigha"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4pjf"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjh2h"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roeet"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5ndx"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmsbf"] +atlas = ExtResource("1_02txu") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw650"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5sii"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxpe3"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_823kd"] +atlas = ExtResource("1_02txu") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni1as"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsb3w"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw8ur"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j673i"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw0yt"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlcjv"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caqn4"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joe1n"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pfxx"] +atlas = ExtResource("1_02txu") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbhpt"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfcjm"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n38oy"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poa52"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3r2d"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtpyi"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b8ij"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htt35"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isa5m"] +atlas = ExtResource("1_02txu") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwpwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw4lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x53d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swq66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgx1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcgsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7igp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trnaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmgdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v5vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_522h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7i3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwo51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsxko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8i7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgsyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbrai") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqma7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjujb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe1mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4l48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii7mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2qho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue1mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuyyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnckb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj3hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pavo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4m1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61l11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b57ih") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rkgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymtd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd6u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo05p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svmqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a37pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lw82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m87l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4c67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3268n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jrrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmm3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjd0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6134") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euso1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usmjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khqta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysrrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yerb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0uwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s105") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twuqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phpoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw20a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avdvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kigha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4pjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjh2h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_roeet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5ndx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmsbf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw650") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5sii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxpe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_823kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni1as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsb3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw8ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j673i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw0yt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlcjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_caqn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joe1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pfxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbhpt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfcjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n38oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poa52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3r2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtpyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b8ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htt35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isa5m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_giantcrab.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_giantcrab.tres new file mode 100644 index 0000000..181f4ca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_giantcrab.tres @@ -0,0 +1,785 @@ +[gd_resource type="SpriteFrames" load_steps=109 format=3 uid="uid://c6l2ickg2ovev"] + +[ext_resource type="Texture2D" uid="uid://kkbls0ro01fr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png" id="1_c6xgp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hygyr"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beky3"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po03b"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djj6f"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omwqy"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0d58"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy78j"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdyo3"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl61m"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s11lw"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h32g7"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5n6b"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cnfc"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mki70"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki4oy"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhtwa"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01co4"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yjdu"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuvxt"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqstg"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v58kc"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jexuq"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4k7e"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abgkk"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll1wx"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5qhq"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7qxq"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0qjl"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiaky"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axtha"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j6sx"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n73ca"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hewc7"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncff3"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5j65"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om4ty"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j22wo"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foaxc"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir8s7"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is0qx"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vop64"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pig"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0gsg"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6fkk"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu832"] +atlas = ExtResource("1_c6xgp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbt0r"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdsgs"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht43i"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imemn"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2u0g"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbr7v"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drtjf"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfikp"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moryl"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvld0"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1eiu"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn7na"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5lhp"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdujp"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ca4"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgj2h"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uqkb"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4w4o"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iay82"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjqbo"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a6gn"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkv7k"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld6rc"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g3ui"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khqxf"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2ele"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy5an"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weked"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gnvu"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klmkl"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqyuc"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3m75"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1mce"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3e3b"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31mf8"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igcc1"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpevs"] +atlas = ExtResource("1_c6xgp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc3tk"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7nnr"] +atlas = ExtResource("1_c6xgp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktnmf"] +atlas = ExtResource("1_c6xgp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hgtk"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lldn3"] +atlas = ExtResource("1_c6xgp") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0mxn"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0y50"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4qhy"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm8op"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odimx"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlegw"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea23v"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtwie"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyxyo"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3hrx"] +atlas = ExtResource("1_c6xgp") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acrod"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmskh"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v427"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1222j"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5l5i"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_624nr"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy6bd"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaj72"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yq7r"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4207x"] +atlas = ExtResource("1_c6xgp") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hygyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beky3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po03b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djj6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omwqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0d58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy78j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl61m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s11lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h32g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5n6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cnfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mki70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki4oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhtwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01co4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yjdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuvxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqstg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v58kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jexuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4k7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abgkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll1wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5qhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7qxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0qjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiaky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axtha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j6sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n73ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hewc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncff3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5j65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_om4ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j22wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foaxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir8s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is0qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vop64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7pig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0gsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6fkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu832") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbt0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdsgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht43i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imemn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2u0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbr7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drtjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfikp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moryl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvld0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1eiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn7na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5lhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdujp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ca4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgj2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uqkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4w4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iay82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjqbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a6gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkv7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld6rc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g3ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khqxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2ele") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy5an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weked") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gnvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klmkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqyuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3m75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1mce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3e3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31mf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igcc1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpevs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc3tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7nnr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktnmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hgtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lldn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0mxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0y50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4qhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm8op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odimx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlegw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea23v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtwie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyxyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3hrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acrod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmskh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v427") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1222j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5l5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_624nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy6bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaj72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yq7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4207x") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gnasher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gnasher.tres new file mode 100644 index 0000000..213e407 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gnasher.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://qnoysscrg7ac"] + +[ext_resource type="Texture2D" uid="uid://w2mgf1o26nvl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png" id="1_yycxy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlulm"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nglby"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vxp1"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tpwl"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyc4t"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v08v5"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6uxp"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ola"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w4nk"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8e2t"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_028pe"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m63l5"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sqth"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkdbp"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7mq8"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq5i4"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahj65"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by4bm"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x1sc"] +atlas = ExtResource("1_yycxy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa4ct"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii5ek"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yybu"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux83x"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfalw"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpuxa"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7hyk"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t20aw"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5fjd"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2bwm"] +atlas = ExtResource("1_yycxy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1ffq"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceyww"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg4xb"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg0d7"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3lgu"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q55be"] +atlas = ExtResource("1_yycxy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrt2h"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_781bc"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ub8"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qde4"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx81d"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huy6f"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itfb2"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lobgp"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3q2c"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1um6y"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1flqr"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dldsa"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3r0v"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hixon"] +atlas = ExtResource("1_yycxy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klxfr"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnns5"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l0wf"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hujv7"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tgj8"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syk5r"] +atlas = ExtResource("1_yycxy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o8kn"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vp86"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adr2s"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ekqe"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sctm"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt4w1"] +atlas = ExtResource("1_yycxy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2up3"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao6f5"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uxg0"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hpu4"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vu5a"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skh31"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltao5"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmkq6"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whj8k"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4mpk"] +atlas = ExtResource("1_yycxy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlulm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nglby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vxp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tpwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyc4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v08v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6uxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ola") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w4nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8e2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_028pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m63l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sqth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkdbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7mq8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq5i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahj65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by4bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x1sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa4ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii5ek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yybu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux83x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfalw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpuxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7hyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t20aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5fjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2bwm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1ffq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceyww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg4xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg0d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3lgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q55be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrt2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_781bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ub8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qde4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx81d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huy6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itfb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lobgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3q2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1um6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1flqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dldsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3r0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hixon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klxfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnns5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l0wf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hujv7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tgj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syk5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o8kn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vp86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adr2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ekqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sctm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt4w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2up3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao6f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uxg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hpu4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vu5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skh31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltao5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmkq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whj8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4mpk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenhammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenhammer.tres new file mode 100644 index 0000000..5638018 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenhammer.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://bi03xcmbtlmiu"] + +[ext_resource type="Texture2D" uid="uid://bynybhq0056if" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png" id="1_i1yks"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0a4n"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkxxf"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4ki6"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpk1o"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlyrg"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwjje"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gasp"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m7oc"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn1k4"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w56e6"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dto1o"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl87m"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6haat"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_513l5"] +atlas = ExtResource("1_i1yks") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05br5"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slrup"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0clji"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkhqb"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqgn0"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlm8s"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hs5u"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e6ax"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df2us"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxt4t"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luosx"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45kky"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wpab"] +atlas = ExtResource("1_i1yks") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqbm3"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr36q"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b4n8"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugjxf"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwfuq"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj8k3"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3qkv"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kll83"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p4fy"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bakg3"] +atlas = ExtResource("1_i1yks") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iluuw"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5ksr"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpyxh"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o74vw"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkxnq"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc21u"] +atlas = ExtResource("1_i1yks") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_110yg"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am8mk"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj12f"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ci0"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85s55"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ogne"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l4yh"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp8r6"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brii6"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y3dn"] +atlas = ExtResource("1_i1yks") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ygt"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tprjm"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d28ef"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_savoy"] +atlas = ExtResource("1_i1yks") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0d8l"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n4p5"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85cdd"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xv58"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6lio"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdvph"] +atlas = ExtResource("1_i1yks") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogum2"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fofkl"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4spcr"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dboqv"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se0nj"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nudln"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xpvn"] +atlas = ExtResource("1_i1yks") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4a1x"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlin5"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2exc"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne7h4"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohnil"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00moi"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx2k4"] +atlas = ExtResource("1_i1yks") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0a4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkxxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4ki6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpk1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlyrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwjje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gasp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m7oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn1k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w56e6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dto1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl87m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6haat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_513l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05br5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slrup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0clji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkhqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqgn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlm8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hs5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e6ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df2us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxt4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luosx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45kky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wpab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqbm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr36q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b4n8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugjxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwfuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj8k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3qkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kll83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p4fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bakg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iluuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5ksr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpyxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o74vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkxnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc21u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_110yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am8mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj12f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ci0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85s55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ogne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l4yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp8r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brii6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y3dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ygt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tprjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d28ef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_savoy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0d8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n4p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85cdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xv58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6lio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdvph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogum2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fofkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4spcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dboqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se0nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nudln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xpvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4a1x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlin5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2exc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne7h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohnil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00moi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx2k4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenjusticar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenjusticar.tres new file mode 100644 index 0000000..64520c2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenjusticar.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://cagotohlss717"] + +[ext_resource type="Texture2D" uid="uid://dc8oi6ixvlu80" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png" id="1_xp13e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0djf7"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjs2p"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44cnp"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8xv3"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovhwr"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agi5s"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l87t"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mkmr"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4ffo"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7pcx"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34kmn"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4grt"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl1ho"] +atlas = ExtResource("1_xp13e") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfqtp"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isnhu"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqwfx"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntjy4"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp8om"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uny2n"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wi6a"] +atlas = ExtResource("1_xp13e") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdwo8"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jekot"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okncb"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4md"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmh8e"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6xx8"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpofn"] +atlas = ExtResource("1_xp13e") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn4tm"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuks6"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4akr"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu27w"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycseh"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb26r"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk1u0"] +atlas = ExtResource("1_xp13e") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkaex"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sneaa"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsb1"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_211pn"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljbns"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8srax"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kcxo"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kahv6"] +atlas = ExtResource("1_xp13e") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg6ji"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36bf2"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc8ke"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u46cw"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7etk"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uxpy"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3sst"] +atlas = ExtResource("1_xp13e") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pteef"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lixjo"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2loh"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32xhx"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcl7f"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70gjd"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpkfv"] +atlas = ExtResource("1_xp13e") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmm6w"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8w3x"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6txyl"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1np80"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phavv"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wauy"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwpw6"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thr3g"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5jqn"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpmad"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7eg2"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvx2n"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5drrg"] +atlas = ExtResource("1_xp13e") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uummv"] +atlas = ExtResource("1_xp13e") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbncm"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o5d5"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0imu"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1xre"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8drtr"] +atlas = ExtResource("1_xp13e") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7chvi"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7rk5"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pld2a"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0o4s"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d0pj"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw7mq"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5hno"] +atlas = ExtResource("1_xp13e") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xj1t"] +atlas = ExtResource("1_xp13e") +region = Rect2(917, 786, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0djf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjs2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44cnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8xv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovhwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agi5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l87t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4ffo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7pcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34kmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4grt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl1ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfqtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isnhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqwfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntjy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp8om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uny2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wi6a") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdwo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jekot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okncb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmh8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6xx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpofn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn4tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuks6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4akr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu27w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycseh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb26r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk1u0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkaex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sneaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_211pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljbns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8srax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kcxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kahv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg6ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36bf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc8ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u46cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7etk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uxpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3sst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pteef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lixjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2loh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32xhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcl7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70gjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpkfv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmm6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8w3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6txyl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1np80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phavv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wauy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwpw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thr3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5jqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpmad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7eg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvx2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5drrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uummv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbncm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o5d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0imu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1xre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8drtr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7chvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7rk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pld2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0o4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d0pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw7mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5hno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xj1t") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenmantella.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenmantella.tres new file mode 100644 index 0000000..5864d24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_goldenmantella.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://d16fwmv317eu2"] + +[ext_resource type="Texture2D" uid="uid://pmtt6cefhg2g" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png" id="1_m26im"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5eto"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r81kd"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqs3n"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwmm2"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u7jm"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6brt"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smap1"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k20np"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snmnu"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clupn"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k7u5"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1uvu"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yotf"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3get"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kid3w"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdqb4"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c85xy"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0q51"] +atlas = ExtResource("1_m26im") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn0o2"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdolr"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hfuv"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hf0n"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l0t0"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7u4c"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chcgg"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uown"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cw5r"] +atlas = ExtResource("1_m26im") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h306y"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alsn3"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peeun"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd4su"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83ghe"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lkuq"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3kfw"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lywm"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4655k"] +atlas = ExtResource("1_m26im") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08i71"] +atlas = ExtResource("1_m26im") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3dff"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h25kk"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0cro"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43sew"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlniv"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58yun"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q32ya"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phenx"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y6i5"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sncp5"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k52wb"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k03ur"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6u4j"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2vq7"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cn71"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8px3a"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18dt6"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejn2w"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wneqj"] +atlas = ExtResource("1_m26im") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctnmm"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnfbv"] +atlas = ExtResource("1_m26im") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0r31"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf6rc"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h21v0"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwmrq"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s61mt"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c03s"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5822"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lry0w"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo3aj"] +atlas = ExtResource("1_m26im") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap4jy"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07shj"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dix8d"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw0hc"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ggp"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfuyu"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iukn"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ggk6"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4h1r"] +atlas = ExtResource("1_m26im") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5eto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r81kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqs3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwmm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u7jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6brt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smap1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k20np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snmnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clupn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k7u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1uvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yotf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3get") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kid3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdqb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c85xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0q51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn0o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdolr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hfuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hf0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l0t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7u4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chcgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uown") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cw5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h306y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alsn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peeun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd4su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83ghe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lkuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3kfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lywm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4655k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08i71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3dff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h25kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0cro") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_43sew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlniv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58yun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q32ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phenx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y6i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sncp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k52wb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k03ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6u4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2vq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cn71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8px3a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_18dt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejn2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wneqj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctnmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnfbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0r31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf6rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h21v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwmrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s61mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c03s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5822") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lry0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo3aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap4jy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_07shj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dix8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw0hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ggp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfuyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iukn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ggk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4h1r") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golem_crossbones.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golem_crossbones.tres new file mode 100644 index 0000000..7abe325 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golem_crossbones.tres @@ -0,0 +1,601 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://ctydfahrshfdj"] + +[ext_resource type="Texture2D" uid="uid://4dh0611tgxgc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png" id="1_cdp40"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yafrg"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y16s5"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dkeh"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eja8d"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl537"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8get1"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jki8t"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jheit"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi3op"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpweg"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuqyh"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngi2r"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ygl7"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7076"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htw1o"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icpya"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teaxy"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6fc1"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mxj1"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2dal"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prbwj"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7uqc"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uk15"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ob71"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8tis"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rhk5"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi0q6"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhx4b"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gb0c"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dv1c"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxm7e"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn6m1"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnvac"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t03t1"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arlf0"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w77l0"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrv44"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5cdp"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b6ie"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_653yk"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58u3g"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bmws"] +atlas = ExtResource("1_cdp40") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c1y4"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gahs0"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gojeh"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3e38l"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2djd"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3d2s"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxt21"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruh2y"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8886"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vedln"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8y71"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj6cw"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtmqa"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un8uq"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si3qa"] +atlas = ExtResource("1_cdp40") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sruvu"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06fwc"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2au1"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjipg"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjqqw"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opask"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wepig"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm7o3"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjy8e"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjgmi"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a07y7"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frphm"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwdy8"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7g84"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roe6r"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6h1c"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drusf"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5ow8"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wkcl"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teanc"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53oe3"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwt00"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu7g1"] +atlas = ExtResource("1_cdp40") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yafrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y16s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dkeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eja8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl537") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8get1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jki8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jheit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi3op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpweg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuqyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngi2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ygl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7076") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htw1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icpya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teaxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6fc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mxj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2dal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prbwj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7uqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uk15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ob71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8tis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rhk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi0q6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhx4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gb0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dv1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxm7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn6m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnvac") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t03t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arlf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w77l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrv44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5cdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b6ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_653yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58u3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bmws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c1y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gahs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gojeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3e38l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2djd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3d2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxt21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruh2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8886") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vedln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8y71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj6cw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtmqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un8uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si3qa") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sruvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06fwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2au1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjipg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjqqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opask") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wepig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm7o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjy8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjgmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a07y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frphm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwdy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7g84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roe6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6h1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drusf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5ow8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wkcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teanc") +}], +"loop": true, +"name": &"movement", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_53oe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwt00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu7g1") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golembloodshard.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golembloodshard.tres new file mode 100644 index 0000000..5661cc6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golembloodshard.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://ogndo7hqlmmt"] + +[ext_resource type="Texture2D" uid="uid://dd6jwet71ha1o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png" id="1_teqtg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_222s2"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p53ce"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24375"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts0qw"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfvnd"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieyj0"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ji5j"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3gaq"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqr7u"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acooc"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj63g"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuxaq"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8h7n"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyqd0"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2r44"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xgqr"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkr5x"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2cc2"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmjel"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kntpw"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnc6r"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct0u3"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agfdi"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv14s"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8eet"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7060v"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwvf7"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grt35"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcamg"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3f8o"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ijik"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xdur"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38ca0"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fh0s"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy8y0"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3yjp"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iws4f"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wkvy"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mym8w"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s1as"] +atlas = ExtResource("1_teqtg") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nq5ny"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alcad"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jvbi"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpd4y"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0af7"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu8pw"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdwtw"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqywe"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mr5w"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54syd"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdcqr"] +atlas = ExtResource("1_teqtg") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx2fo"] +atlas = ExtResource("1_teqtg") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qck1"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjgeo"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0860"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8bma"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pkug"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ie0"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nibe"] +atlas = ExtResource("1_teqtg") +region = Rect2(243, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_222s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p53ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24375") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts0qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfvnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieyj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ji5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3gaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqr7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acooc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj63g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuxaq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8h7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyqd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2r44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xgqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkr5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2cc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmjel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kntpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnc6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct0u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agfdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv14s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8eet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7060v") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwvf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grt35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcamg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3f8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ijik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xdur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38ca0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fh0s") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy8y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3yjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iws4f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wkvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mym8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s1as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nq5ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alcad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jvbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpd4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0af7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu8pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdwtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqywe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mr5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54syd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdcqr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx2fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qck1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjgeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0860") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8bma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pkug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ie0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nibe") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemdragonbone.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemdragonbone.tres new file mode 100644 index 0000000..7a873df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemdragonbone.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://bsvhfbr23jgwy"] + +[ext_resource type="Texture2D" uid="uid://4fv8j7mqmdrh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png" id="1_chbdm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrdmb"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k33c0"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lutvf"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q0ol"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m58ls"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h7f0"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50u5y"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiapq"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guhwk"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw10v"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01ehw"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suff4"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt7ij"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0rn3"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eaon"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwrp4"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwwqo"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoige"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmkvp"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32jhk"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhyki"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqq8g"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8cyr"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptish"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thkxs"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_najxm"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxrwp"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey50t"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kihr4"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtvqb"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq3ql"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6t8u"] +atlas = ExtResource("1_chbdm") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jajp7"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8lr6"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ec6u"] +atlas = ExtResource("1_chbdm") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itlfg"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5hmw"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q51c"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3j4e"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cntl"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8pna"] +atlas = ExtResource("1_chbdm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4puc"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0usn"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2js7w"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6snx"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuo3i"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1s8c"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8xum"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs013"] +atlas = ExtResource("1_chbdm") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx0he"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbkbt"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_janmw"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_185ay"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liqi3"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a51o4"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqvfs"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l0u6"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc2ph"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrvcw"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_762ng"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ji1"] +atlas = ExtResource("1_chbdm") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrdmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k33c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lutvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q0ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m58ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h7f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50u5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiapq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guhwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw10v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01ehw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suff4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt7ij") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0rn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eaon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwrp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwwqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoige") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmkvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32jhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhyki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqq8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8cyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptish") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thkxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_najxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxrwp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey50t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kihr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtvqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq3ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6t8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jajp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8lr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ec6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itlfg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5hmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q51c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3j4e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cntl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8pna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4puc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0usn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2js7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6snx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuo3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1s8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8xum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs013") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx0he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbkbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_janmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_185ay") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_liqi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a51o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqvfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l0u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc2ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrvcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_762ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ji1") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemice.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemice.tres new file mode 100644 index 0000000..70ea778 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemice.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://cq8xxbttnw4ol"] + +[ext_resource type="Texture2D" uid="uid://bqyen4qpbt648" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png" id="1_grh0w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro2or"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0aie"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwunh"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wous7"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fknfh"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i6t8"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq0iq"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msdra"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57l3"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh3bd"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31tio"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_covxq"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04f0b"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f22wo"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hm08"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmwe5"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_satxm"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6twnv"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_161pt"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0idts"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxbs8"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw8ys"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t55d5"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cra4p"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgi6l"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgx2y"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5xep"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ee74"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jnv4"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko8b8"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jslsi"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onltu"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1elv"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lde20"] +atlas = ExtResource("1_grh0w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf07v"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8htym"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2oli"] +atlas = ExtResource("1_grh0w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m33kd"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brdxl"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0sx3"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiwlw"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rop2r"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3hox"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj13l"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85a1u"] +atlas = ExtResource("1_grh0w") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dpnt"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dla61"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_154os"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5qxl"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qovrn"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yttf"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3pk3"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uyis"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md4vi"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea00a"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7045"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0hvc"] +atlas = ExtResource("1_grh0w") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro2or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0aie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwunh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wous7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fknfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i6t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq0iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msdra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh3bd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_31tio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_covxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04f0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f22wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hm08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmwe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_satxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6twnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_161pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0idts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxbs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw8ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t55d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cra4p") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgi6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgx2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5xep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ee74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jnv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko8b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jslsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onltu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1elv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lde20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf07v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8htym") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2oli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m33kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brdxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0sx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiwlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rop2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3hox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj13l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85a1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dpnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dla61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_154os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5qxl") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qovrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yttf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3pk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uyis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md4vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea00a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7045") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0hvc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemnature.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemnature.tres new file mode 100644 index 0000000..ad3fc43 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemnature.tres @@ -0,0 +1,414 @@ +[gd_resource type="SpriteFrames" load_steps=56 format=3 uid="uid://b4o7milx6rk2d"] + +[ext_resource type="Texture2D" uid="uid://b4reytxwrbw8m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png" id="1_4xi27"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyc6y"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4pj8"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb1gn"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lk5q"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yruko"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_710kq"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1xlt"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjxuy"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqr0b"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmprq"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm20v"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch3ov"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lna0"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd11f"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xnga"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uegsu"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofw4d"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv3x4"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqobf"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tel4"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g56ga"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvd66"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d83c"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sjmx"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk8gd"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp6a8"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_todap"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pgpr"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rmcc"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud5a1"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s4eu"] +atlas = ExtResource("1_4xi27") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcbkt"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i88ws"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htv2r"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdh30"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5nti"] +atlas = ExtResource("1_4xi27") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpwqy"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0hu5"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj1ie"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd1kp"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqbid"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6b56"] +atlas = ExtResource("1_4xi27") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j12pq"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p30t"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vp83"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr457"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w60sg"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1bqn"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8g7v"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgwpo"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pr165"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axcfy"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glnd7"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agxvd"] +atlas = ExtResource("1_4xi27") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyc6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4pj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb1gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lk5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yruko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_710kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1xlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjxuy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqr0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmprq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm20v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch3ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lna0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd11f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xnga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uegsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofw4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv3x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqobf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tel4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g56ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvd66") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d83c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sjmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk8gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp6a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_todap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pgpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rmcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud5a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s4eu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcbkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i88ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htv2r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdh30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5nti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpwqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0hu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj1ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd1kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqbid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6b56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j12pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p30t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vp83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr457") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w60sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1bqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8g7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgwpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pr165") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axcfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glnd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agxvd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemrunesand.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemrunesand.tres new file mode 100644 index 0000000..69b4982 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemrunesand.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://b44x46wdmlsl3"] + +[ext_resource type="Texture2D" uid="uid://dany2vfdfao77" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png" id="1_oau3g"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6r1l"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6rw4"] +atlas = ExtResource("1_oau3g") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_susho"] +atlas = ExtResource("1_oau3g") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaoc8"] +atlas = ExtResource("1_oau3g") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhvlr"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4kc6"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nov5y"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ar4j"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axqvl"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bkdm"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rm4j"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6da72"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7tlk"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2cfa"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xabpp"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg7d0"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1mqj"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdgqk"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko60n"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkbx3"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sxxk"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anuxp"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4e8e"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gsvj"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so2y0"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7pj5"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0j4w"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f7d4"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6xty"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etjmg"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgib3"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u67m5"] +atlas = ExtResource("1_oau3g") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1wxo"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjri2"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii0ej"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndu3u"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk4nm"] +atlas = ExtResource("1_oau3g") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yfdd"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgxl0"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ymuw"] +atlas = ExtResource("1_oau3g") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a212"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47x5i"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhtph"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll0uc"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcsv0"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc3rn"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvdt5"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8l3n"] +atlas = ExtResource("1_oau3g") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ril6m"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hto2y"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnsxy"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue5xu"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34pgh"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g6tj"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntnks"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lur2"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljmwl"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k585"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qcar"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uu4q"] +atlas = ExtResource("1_oau3g") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6r1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6rw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_susho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaoc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhvlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4kc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nov5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ar4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axqvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bkdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rm4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6da72") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7tlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2cfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xabpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg7d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1mqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdgqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko60n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkbx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sxxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anuxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4e8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gsvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so2y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7pj5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0j4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f7d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6xty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etjmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgib3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u67m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1wxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjri2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii0ej") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndu3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk4nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yfdd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgxl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ymuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a212") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47x5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhtph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll0uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcsv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc3rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvdt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8l3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ril6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hto2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnsxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue5xu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_34pgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g6tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntnks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lur2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljmwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k585") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qcar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uu4q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemsteel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemsteel.tres new file mode 100644 index 0000000..660e23a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemsteel.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://3nf4j2bs0e2s"] + +[ext_resource type="Texture2D" uid="uid://dbq2uriioaa5o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png" id="1_s5ggu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_srjve"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7dt0"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6qtl"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2eg8"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhnr4"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic54a"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbkhr"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsycl"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ywl"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1wdj"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvmb6"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewhg5"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cnic"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj5b0"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sdpe"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cypt"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4l5y"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tg0a"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2i4b"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_injiq"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi0rs"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fewc5"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iigu"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs5hf"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inpqe"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pqqo"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcixg"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ausdf"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlxes"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkomm"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b5w6"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_823oa"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d5w3"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qixt8"] +atlas = ExtResource("1_s5ggu") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v67ds"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le2bl"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05ivo"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nf8w"] +atlas = ExtResource("1_s5ggu") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ds6t"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t8iu"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75sen"] +atlas = ExtResource("1_s5ggu") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qms2i"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hamil"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb08n"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_offkc"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6g3i"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3yp7"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqkxp"] +atlas = ExtResource("1_s5ggu") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvmmf"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ektbe"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6xbu"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsfqf"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0lmog"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbty3"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvpwf"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp4ls"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pjnw"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt3br"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6ro0"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6uob"] +atlas = ExtResource("1_s5ggu") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_srjve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7dt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6qtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2eg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhnr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic54a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbkhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsycl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ywl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1wdj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvmb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewhg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cnic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj5b0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sdpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cypt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4l5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tg0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2i4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_injiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi0rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fewc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iigu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs5hf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_inpqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pqqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcixg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ausdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlxes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkomm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b5w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_823oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d5w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qixt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v67ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le2bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05ivo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nf8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ds6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t8iu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_75sen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qms2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hamil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb08n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_offkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6g3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3yp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqkxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvmmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ektbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6xbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsfqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0lmog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbty3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvpwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp4ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pjnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt3br") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6ro0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6uob") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstone.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstone.tres new file mode 100644 index 0000000..1301f29 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstone.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://vvrwfkqu0mxj"] + +[ext_resource type="Texture2D" uid="uid://dgtye6sq4yyf2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png" id="1_ir0ct"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k25h"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5oqga"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1l83"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vui32"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inx21"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imjxo"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j73pk"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7lr6"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lskdu"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3flm2"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyhkw"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnnuf"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftgxf"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk26o"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdy1t"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfym1"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkyym"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjxgg"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqjxh"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7xsd"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qmgc"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfltx"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dh65"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptbim"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wfie"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8xxy"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lre3o"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hu2tb"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uegoa"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi7vk"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy68k"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_colye"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsbri"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a84l3"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnwpm"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofyjm"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yuxv"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sosbe"] +atlas = ExtResource("1_ir0ct") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ice0"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6jak"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8f0p"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crkc1"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccymt"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l1lr"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5not"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwwim"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyk68"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3tkp"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo0nq"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7m0a"] +atlas = ExtResource("1_ir0ct") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cbgw"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsv3g"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r68j1"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hqjt"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5oi2"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdfa2"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfdsn"] +atlas = ExtResource("1_ir0ct") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogenw"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eutyl"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dx2l"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tscm"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqqf3"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcrbx"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l01x2"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf87c"] +atlas = ExtResource("1_ir0ct") +region = Rect2(0, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k25h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5oqga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1l83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vui32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inx21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imjxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j73pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7lr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lskdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3flm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyhkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnnuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftgxf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk26o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdy1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfym1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkyym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjxgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqjxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7xsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qmgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfltx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dh65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptbim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wfie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8xxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lre3o") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hu2tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uegoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi7vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy68k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_colye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsbri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a84l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnwpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofyjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yuxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sosbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ice0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6jak") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8f0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crkc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccymt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l1lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5not") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwwim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyk68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3tkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo0nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7m0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cbgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsv3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r68j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hqjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5oi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdfa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfdsn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogenw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eutyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dx2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tscm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqqf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcrbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l01x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf87c") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstormmetal.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstormmetal.tres new file mode 100644 index 0000000..9afd21b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_golemstormmetal.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://2stu53hbukpt"] + +[ext_resource type="Texture2D" uid="uid://cpwwiym26v2oe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png" id="1_5c81w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv3ix"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svtxd"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqwws"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_306db"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c704c"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2t8a"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u16jk"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o0u1"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp6d4"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2s3h"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7rlo"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2s2a"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy6ch"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6wec"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2bsa"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0pb7"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6rsf"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2aft"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkq6k"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0foc"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca0qm"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iidof"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qvp8"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1nh6"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri5s2"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x08v6"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s1hi"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juswc"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0gb6"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixd3"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i5hq"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij3hr"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg278"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m67y7"] +atlas = ExtResource("1_5c81w") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7nks"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0i3d"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71uf7"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6it4u"] +atlas = ExtResource("1_5c81w") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r77ln"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt6wk"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ld0"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rynuw"] +atlas = ExtResource("1_5c81w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4unr"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a525"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4l32"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk7px"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8heii"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyh03"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i67ji"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx4fj"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xsu3"] +atlas = ExtResource("1_5c81w") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph2t1"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixysw"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpvre"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db517"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s3ub"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2py4g"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbye0"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r66lx"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7vvw"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b11jn"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m12g"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2453"] +atlas = ExtResource("1_5c81w") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv3ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svtxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqwws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_306db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c704c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2t8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u16jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o0u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp6d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2s3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7rlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2s2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy6ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6wec") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2bsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0pb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6rsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2aft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkq6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0foc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca0qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iidof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qvp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1nh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri5s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x08v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s1hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juswc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0gb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ixd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i5hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij3hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg278") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m67y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7nks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0i3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71uf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6it4u") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r77ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt6wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ld0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rynuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4unr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a525") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4l32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk7px") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8heii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyh03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i67ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx4fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xsu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph2t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixysw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpvre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db517") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s3ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2py4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbye0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r66lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7vvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b11jn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m12g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2453") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grablackhole.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grablackhole.tres new file mode 100644 index 0000000..7671a8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grablackhole.tres @@ -0,0 +1,813 @@ +[gd_resource type="SpriteFrames" load_steps=113 format=3 uid="uid://5gnxcwkx4mmb"] + +[ext_resource type="Texture2D" uid="uid://cm8eibk2xiveo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png" id="1_t3xnk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fbb7"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu0oc"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrf60"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2a5q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i378q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faey8"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f82x"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k60uo"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76gbs"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ekyn"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hscug"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtaql"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jut3i"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os83f"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10fl5"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cis2b"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mliys"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la73r"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud3tx"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wup21"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dex23"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c577q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx21f"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i54bf"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rta1v"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1egxs"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2lo5"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kttn"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73yo8"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0y61"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80ict"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qba0f"] +atlas = ExtResource("1_t3xnk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh6ir"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlpsq"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dsss"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syr5e"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s52p0"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1c4s"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r3ks"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1aap"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odakj"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8rib"] +atlas = ExtResource("1_t3xnk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6ka5"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mejgv"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jijup"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlmh2"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6pxf"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ywmn"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8wyu"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvkly"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwl4h"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnqk1"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fon7"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nobmx"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6kck"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7eri"] +atlas = ExtResource("1_t3xnk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b3ws"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg51p"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb5vh"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhewd"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aool"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkjo1"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_julcp"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wt6v"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh33q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vo4w"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqgfr"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd0n3"] +atlas = ExtResource("1_t3xnk") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifq7m"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfs2l"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3esk"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fucuf"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0o8k"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc5x1"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wydhi"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4l1e"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfsxj"] +atlas = ExtResource("1_t3xnk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgb2u"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skn7q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp74x"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv6ng"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtrlu"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2capo"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pibvv"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r025e"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dswkk"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26fai"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2e5e"] +atlas = ExtResource("1_t3xnk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_000bv"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfwu3"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm8kc"] +atlas = ExtResource("1_t3xnk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7jfc"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcmhb"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82o5q"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nw3o4"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wk7k"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsdnv"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pln36"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m32h2"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtfpj"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysgwy"] +atlas = ExtResource("1_t3xnk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6kvy"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd1gf"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7why3"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1y4s"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5pnd"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1uq4"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo6rd"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78hdi"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tsfu"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7ipw"] +atlas = ExtResource("1_t3xnk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fbb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu0oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrf60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2a5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i378q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faey8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f82x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k60uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76gbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ekyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hscug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtaql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jut3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os83f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10fl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cis2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mliys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la73r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud3tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wup21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dex23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c577q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx21f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i54bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rta1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1egxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2lo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kttn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73yo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0y61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80ict") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qba0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh6ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlpsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dsss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syr5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s52p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1c4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r3ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1aap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odakj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8rib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6ka5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mejgv") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jijup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlmh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6pxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ywmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8wyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvkly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwl4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnqk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fon7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nobmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6kck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7eri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b3ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg51p") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb5vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhewd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aool") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkjo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_julcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wt6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh33q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vo4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqgfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd0n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifq7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfs2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3esk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fucuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0o8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc5x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wydhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4l1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfsxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgb2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skn7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp74x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv6ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtrlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2capo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pibvv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r025e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dswkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26fai") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2e5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_000bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfwu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm8kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7jfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcmhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82o5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nw3o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wk7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsdnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pln36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m32h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtfpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysgwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6kvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd1gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7why3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1y4s") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5pnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1uq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo6rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78hdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tsfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7ipw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grimes.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grimes.tres new file mode 100644 index 0000000..7184d78 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grimes.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://d3nxu5a4gqqn7"] + +[ext_resource type="Texture2D" uid="uid://dxavony6id5tp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png" id="1_i5ojj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1wto"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdpt3"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d7bq"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqhea"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o053h"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r27y"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j53gq"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23jos"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykc5m"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_errwi"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svek5"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pq80"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62o33"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqxf6"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfxm7"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxpby"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3i1a"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dxd4"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2as2"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocbno"] +atlas = ExtResource("1_i5ojj") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_solqb"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exuts"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e154m"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kutql"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88ych"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4auoa"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tim6"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyut6"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhiog"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv55l"] +atlas = ExtResource("1_i5ojj") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcb3m"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrvg7"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tht2"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jig7h"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qgsw"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i2a3"] +atlas = ExtResource("1_i5ojj") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0iqbc"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5naq"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loxd3"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ved70"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc8ft"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlwyh"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x15i"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3wt2"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo272"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nucnh"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq5ll"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufq65"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdfka"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v3bs"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6powo"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2jsr"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp67n"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otiiu"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rj0u"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vty54"] +atlas = ExtResource("1_i5ojj") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acq8d"] +atlas = ExtResource("1_i5ojj") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjfjg"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkfl7"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhdvo"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctlpc"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id7d7"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w58at"] +atlas = ExtResource("1_i5ojj") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pojs"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qnqe"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy1qd"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3oqi"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sql87"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsj3j"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jxtu"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_einub"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewhie"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2gc6"] +atlas = ExtResource("1_i5ojj") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1wto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdpt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d7bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqhea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o053h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r27y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j53gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23jos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykc5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_errwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svek5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pq80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62o33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqxf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfxm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxpby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3i1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dxd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2as2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocbno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_solqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exuts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e154m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kutql") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_88ych") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4auoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tim6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyut6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhiog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv55l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcb3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrvg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tht2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jig7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qgsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i2a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0iqbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5naq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_loxd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ved70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc8ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlwyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x15i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3wt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo272") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nucnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufq65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdfka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v3bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6powo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2jsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp67n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otiiu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rj0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vty54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acq8d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjfjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkfl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhdvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctlpc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id7d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w58at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pojs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qnqe") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy1qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3oqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sql87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsj3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jxtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_einub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewhie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2gc6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grincher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grincher.tres new file mode 100644 index 0000000..8e2bf18 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_grincher.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://bfhn0tmcjm3jt"] + +[ext_resource type="Texture2D" uid="uid://ba4k8lbswvy0v" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png" id="1_7qo5r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_srqs7"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ayg"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxsb7"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hv0y"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0brsf"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou57k"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx0xv"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n51vq"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olrq3"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivp63"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olgey"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwcew"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72b6g"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbbcn"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meuln"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6i3p"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcqnq"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwrrs"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk5re"] +atlas = ExtResource("1_7qo5r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvuim"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4jpr"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt8it"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl8vt"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx458"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfuvl"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20qyc"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hndoc"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ew5o"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mihtn"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l3q2"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wis6x"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v1ex"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjdn6"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd5g7"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8rae"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50lrj"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shj7k"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbugh"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqd5u"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4nxc"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxg33"] +atlas = ExtResource("1_7qo5r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k04vb"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rdbu"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se82g"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvagv"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2ga8"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1368f"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv7sg"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx00f"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5jty"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmu0r"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe57m"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkfag"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10vnh"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q2cb"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mwuo"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eae5c"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb1bj"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub0sy"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2d1v"] +atlas = ExtResource("1_7qo5r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk0kc"] +atlas = ExtResource("1_7qo5r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfooy"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw8ub"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv3nv"] +atlas = ExtResource("1_7qo5r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw7e5"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy3xb"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5mtc"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiw3l"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feuwj"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qwec"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1lxq"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbjhn"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m1e4"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tojun"] +atlas = ExtResource("1_7qo5r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_srqs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ayg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxsb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hv0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0brsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou57k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx0xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n51vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olrq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivp63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olgey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwcew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72b6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbbcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meuln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6i3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcqnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwrrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk5re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvuim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4jpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt8it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl8vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx458") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfuvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20qyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hndoc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ew5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mihtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wis6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v1ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjdn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd5g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8rae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50lrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shj7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbugh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqd5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4nxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxg33") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k04vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rdbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se82g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvagv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2ga8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1368f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv7sg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx00f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5jty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmu0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe57m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkfag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10vnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q2cb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mwuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eae5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb1bj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub0sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2d1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk0kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfooy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw8ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv3nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw7e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy3xb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5mtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiw3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feuwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qwec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1lxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbjhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m1e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tojun") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gro.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gro.tres new file mode 100644 index 0000000..4ee563d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_gro.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://ckt1oidxbxs0g"] + +[ext_resource type="Texture2D" uid="uid://s12baorl80ca" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png" id="1_hkisl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rftg0"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpkxd"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5qdw"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1dbd"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5pty"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2xn0"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3m8p"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww0jl"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c1wn"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp0u2"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiiux"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm1xg"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjmi2"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icxhx"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asx4f"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c72vs"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh48j"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujt2d"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uubfa"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n63ln"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl6tf"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnvci"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1ihf"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vfst"] +atlas = ExtResource("1_hkisl") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n70xv"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfoth"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jp1e"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8h3a"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w532"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vl8c"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl11d"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh4mo"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki70b"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wghm4"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es5nu"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6iis"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmvkx"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqiuo"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssdh2"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x57dj"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6pwo"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbh6p"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p1pd"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjvly"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ko2o"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i0gd"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmf0d"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bedg"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40ag3"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_firab"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg7qi"] +atlas = ExtResource("1_hkisl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8gxn"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oax7"] +atlas = ExtResource("1_hkisl") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otq5c"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyhp8"] +atlas = ExtResource("1_hkisl") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_823py"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5iir"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r0h2"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioxt5"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ojtj"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0st0"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b63x"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcb2x"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rflwf"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2f5a"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eyid"] +atlas = ExtResource("1_hkisl") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsag2"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blywp"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2h64"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5456k"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfwxr"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpl5q"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hbxv"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lilnh"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4air"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jintc"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7sdj"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmpid"] +atlas = ExtResource("1_hkisl") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rftg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpkxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5qdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1dbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5pty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2xn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3m8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww0jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c1wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp0u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiiux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm1xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjmi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icxhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asx4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c72vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh48j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujt2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uubfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n63ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl6tf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnvci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1ihf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vfst") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n70xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfoth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jp1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8h3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w532") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vl8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl11d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh4mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki70b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wghm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es5nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6iis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmvkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqiuo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssdh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x57dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6pwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbh6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p1pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjvly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ko2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i0gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmf0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bedg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40ag3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_firab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg7qi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8gxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oax7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otq5c") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyhp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_823py") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5iir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r0h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioxt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ojtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0st0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b63x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcb2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rflwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2f5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eyid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsag2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blywp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2h64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5456k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfwxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpl5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hbxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lilnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4air") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jintc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7sdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmpid") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hatred.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hatred.tres new file mode 100644 index 0000000..f11446a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hatred.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://ljhos382fxfh"] + +[ext_resource type="Texture2D" uid="uid://craviackk2h0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png" id="1_r4wfi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_61sk0"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov6c8"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fddh"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pepak"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b005r"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7uno"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye7fh"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61kdw"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdvmv"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt6my"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8yq3"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbco7"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksg4j"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyxtx"] +atlas = ExtResource("1_r4wfi") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fugi"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgwbb"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hap6d"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6v37"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksapd"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npxal"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hicjs"] +atlas = ExtResource("1_r4wfi") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojxby"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8dth"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucpim"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcypn"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hddh0"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2g42"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkmfc"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txnoo"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkr8d"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83ojd"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7f1f"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2hly"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31d21"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8yeo"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeo3l"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2viig"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx3na"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0hwy"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plyol"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4o7m0"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neh4e"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7osfx"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl75e"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ve5i"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4kll"] +atlas = ExtResource("1_r4wfi") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0uqj"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cqew"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab7gy"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16xdp"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r22ux"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54ji5"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb6pn"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20cmy"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdfkg"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4d5d"] +atlas = ExtResource("1_r4wfi") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w04wn"] +atlas = ExtResource("1_r4wfi") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6alpv"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag2jd"] +atlas = ExtResource("1_r4wfi") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv4h5"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7sky"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsnd5"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04fo6"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0hbq"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npj7e"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8t0i"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x2cy"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qgyi"] +atlas = ExtResource("1_r4wfi") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h3po"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t45ci"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el6mf"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbt5n"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me4rv"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fj4b"] +atlas = ExtResource("1_r4wfi") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6cfm"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhpuy"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5b2f"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hehpq"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii6wu"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sfvc"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpy5b"] +atlas = ExtResource("1_r4wfi") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_61sk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov6c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fddh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pepak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b005r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7uno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye7fh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61kdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdvmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt6my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8yq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbco7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksg4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyxtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fugi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgwbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hap6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6v37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksapd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npxal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hicjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojxby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8dth") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucpim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcypn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hddh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2g42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkmfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txnoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkr8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83ojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7f1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2hly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31d21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8yeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeo3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2viig") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx3na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0hwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plyol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4o7m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neh4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7osfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl75e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ve5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4kll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0uqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cqew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab7gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16xdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r22ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54ji5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb6pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20cmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdfkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4d5d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w04wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6alpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag2jd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv4h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7sky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsnd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04fo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0hbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npj7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8t0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x2cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qgyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h3po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t45ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el6mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbt5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me4rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fj4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6cfm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhpuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5b2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hehpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii6wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sfvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpy5b") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystic.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystic.tres new file mode 100644 index 0000000..6df080b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystic.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://bhrlnn70bx73b"] + +[ext_resource type="Texture2D" uid="uid://cmvedwujcv5dr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png" id="1_t683s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpdva"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frqx5"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cnir"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4cll"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgpr5"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jiop"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvrlg"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvmhy"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvvrs"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5fw0"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2g1f"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nici8"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltypw"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2wsg"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eecy6"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61o7t"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_708hb"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjj6h"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l85db"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyirj"] +atlas = ExtResource("1_t683s") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22841"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e06bg"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei1d1"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbd4m"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgd5g"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l0kp"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcmcq"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sqlk"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c63y"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wovin"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grvsu"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50i8o"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u0j5"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk0r4"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8cmn"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc21x"] +atlas = ExtResource("1_t683s") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjm8c"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f81ei"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyxrb"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7p5a"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk855"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vvq8"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iclyf"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3w6n"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15ve6"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx8fj"] +atlas = ExtResource("1_t683s") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26pac"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ao6ic"] +atlas = ExtResource("1_t683s") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmpm2"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdviu"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gudh1"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xychv"] +atlas = ExtResource("1_t683s") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngbqa"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci4ws"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoc07"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hcv2"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6ehl"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6pvt"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lssuw"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igiao"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2b0w"] +atlas = ExtResource("1_t683s") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr4r6"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nasq"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bup3"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2n01"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daabf"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqndy"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sugh"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50p6q"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yde6p"] +atlas = ExtResource("1_t683s") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpdva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frqx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cnir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4cll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgpr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jiop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvrlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvmhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvvrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5fw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2g1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nici8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltypw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2wsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eecy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61o7t") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_708hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjj6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l85db") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyirj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22841") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e06bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei1d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbd4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgd5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l0kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcmcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sqlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c63y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wovin") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_grvsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50i8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u0j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk0r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8cmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc21x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjm8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f81ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyxrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7p5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk855") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vvq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iclyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3w6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15ve6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx8fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26pac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ao6ic") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmpm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdviu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gudh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xychv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngbqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci4ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoc07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hcv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6ehl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6pvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lssuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igiao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2b0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr4r6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nasq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bup3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2n01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daabf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqndy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sugh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50p6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yde6p") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmysticbandainamco.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmysticbandainamco.tres new file mode 100644 index 0000000..e303122 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmysticbandainamco.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://vn2tdvairwri"] + +[ext_resource type="Texture2D" uid="uid://cdh057phdrcxr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png" id="1_vmu2j"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf835"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xcw2"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw4jf"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlp5q"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r23we"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alyw2"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ral36"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjske"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_386b1"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf0ds"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pogi7"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7pb5"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4csqq"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mamij"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h1v8"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc2y7"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uj3k"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsqn1"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hl32"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3i6b"] +atlas = ExtResource("1_vmu2j") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdqpj"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbpxy"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xkhb"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjki4"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6t7v"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptnvq"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4i7b"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi30q"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acl1k"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rrph"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt33a"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23idq"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rksv"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gta1s"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kldlr"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blotv"] +atlas = ExtResource("1_vmu2j") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7s2v"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcm5t"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lh16"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5d1g"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj4cw"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xr4p"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrmpl"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orotb"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njkty"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waawj"] +atlas = ExtResource("1_vmu2j") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0abc"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvn17"] +atlas = ExtResource("1_vmu2j") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx31y"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgdox"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhmh8"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dokbq"] +atlas = ExtResource("1_vmu2j") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf208"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgj0y"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlvrx"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfjr5"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt3ac"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuphm"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87pun"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvp8e"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq6w5"] +atlas = ExtResource("1_vmu2j") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfj3q"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8no11"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm5h0"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op7oa"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqywi"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uesmr"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg5bi"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k3ej"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdhqe"] +atlas = ExtResource("1_vmu2j") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf835") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xcw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw4jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlp5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r23we") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alyw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ral36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjske") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_386b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf0ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pogi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7pb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4csqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mamij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h1v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc2y7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uj3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsqn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hl32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3i6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdqpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbpxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xkhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6t7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptnvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4i7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi30q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acl1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rrph") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt33a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23idq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rksv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gta1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kldlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blotv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7s2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcm5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lh16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5d1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj4cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xr4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrmpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orotb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njkty") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_waawj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0abc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvn17") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx31y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgdox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhmh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dokbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf208") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgj0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlvrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfjr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt3ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuphm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87pun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvp8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq6w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfj3q") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8no11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm5h0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op7oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqywi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uesmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg5bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k3ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdhqe") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystictwitch.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystictwitch.tres new file mode 100644 index 0000000..83a26c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_healingmystictwitch.tres @@ -0,0 +1,526 @@ +[gd_resource type="SpriteFrames" load_steps=72 format=3 uid="uid://ct7bcm6mmsmdj"] + +[ext_resource type="Texture2D" uid="uid://cc76jym4t3k7q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png" id="1_0vqyh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_st6r5"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy5jq"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofeyy"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8g4d"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab8on"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nmpf"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jde83"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4hka"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clkca"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coive"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36a6s"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r3ty"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5quvg"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41p2p"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_petv0"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpq2m"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss5ii"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wooq"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihdwe"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj55c"] +atlas = ExtResource("1_0vqyh") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1lb6"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb6fe"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaua1"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omiw3"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8uaq"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pi32"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixmne"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3nla"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kjju"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yt6b"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45q16"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu6ls"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bn4ea"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k3d6"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_387q7"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upatu"] +atlas = ExtResource("1_0vqyh") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isvmt"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0ojd"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg3bb"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edhin"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqgba"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bech6"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmcnt"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjdga"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y7qa"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rvon"] +atlas = ExtResource("1_0vqyh") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1oir"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bhu2"] +atlas = ExtResource("1_0vqyh") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8d2o"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euc5b"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv0ng"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipyct"] +atlas = ExtResource("1_0vqyh") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d18su"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlw8v"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4knq"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvco2"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooik2"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12qp3"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kbxb"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnt7b"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7spbt"] +atlas = ExtResource("1_0vqyh") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bpob"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w07vo"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx6ax"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lksjx"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p1s0"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_th2fp"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx0dt"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8hjo"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05w5l"] +atlas = ExtResource("1_0vqyh") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_st6r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy5jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofeyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8g4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab8on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nmpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jde83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4hka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clkca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coive") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36a6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r3ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5quvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41p2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_petv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpq2m") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss5ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wooq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihdwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj55c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1lb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb6fe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaua1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omiw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8uaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pi32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixmne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3nla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kjju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yt6b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_45q16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu6ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bn4ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k3d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_387q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upatu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isvmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0ojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg3bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edhin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqgba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bech6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmcnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjdga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y7qa") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rvon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1oir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bhu2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8d2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euc5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv0ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipyct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d18su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlw8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4knq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvco2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooik2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12qp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kbxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnt7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7spbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bpob") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w07vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx6ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lksjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p1s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_th2fp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx0dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8hjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05w5l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_highhand.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_highhand.tres new file mode 100644 index 0000000..09d2211 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_highhand.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://fiw8iy46o2fn"] + +[ext_resource type="Texture2D" uid="uid://bvwhl3wxf1ics" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png" id="1_detxd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_83vfc"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py0ts"] +atlas = ExtResource("1_detxd") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ua06"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h46mi"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y578x"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l67j3"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnqgu"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aek6d"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr5t2"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf66r"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_388m5"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mprck"] +atlas = ExtResource("1_detxd") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3twc"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1wf2"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyo8m"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7pvm"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5f10"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5qjg"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_157im"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf5lo"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdwkr"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4k85"] +atlas = ExtResource("1_detxd") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el441"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfub1"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftrth"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt7bq"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7lt4"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35rc3"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xs6i"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf1ac"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t41hy"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arwmp"] +atlas = ExtResource("1_detxd") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b00u7"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlqhk"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8yhc"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdo47"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5hi2"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etvc4"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42t3d"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd5jw"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp21o"] +atlas = ExtResource("1_detxd") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3fho"] +atlas = ExtResource("1_detxd") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oxtc"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpuc7"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiqpo"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ithr"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aucc1"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1bi1"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xstex"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg4fw"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_va7a7"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1fqo"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqdh1"] +atlas = ExtResource("1_detxd") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct6s7"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6vnm"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85fgk"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpi0w"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka78i"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0hex"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xfgv"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2douc"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1w4p"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlaid"] +atlas = ExtResource("1_detxd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg03x"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rqv6"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdpur"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b62w"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhdyq"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apye8"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oaoak"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqvxb"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lobt6"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpxyn"] +atlas = ExtResource("1_detxd") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0quv"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni3my"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2uw5"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk4pg"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8nan"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjdmf"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w107k"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8mgu"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nfte"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spphw"] +atlas = ExtResource("1_detxd") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_83vfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py0ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ua06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h46mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y578x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l67j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnqgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aek6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr5t2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf66r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_388m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mprck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3twc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1wf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyo8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7pvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5f10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5qjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_157im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf5lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdwkr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4k85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el441") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfub1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftrth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt7bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7lt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35rc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xs6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf1ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t41hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arwmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b00u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlqhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8yhc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdo47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5hi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etvc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42t3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd5jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp21o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3fho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oxtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpuc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiqpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ithr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aucc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1bi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xstex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg4fw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_va7a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1fqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqdh1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct6s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6vnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85fgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpi0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka78i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0hex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xfgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2douc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1w4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlaid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg03x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rqv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdpur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b62w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhdyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apye8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oaoak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqvxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lobt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpxyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0quv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni3my") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2uw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk4pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8nan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjdmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w107k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8mgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nfte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spphw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hollowgrovekeeper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hollowgrovekeeper.tres new file mode 100644 index 0000000..4851bae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hollowgrovekeeper.tres @@ -0,0 +1,708 @@ +[gd_resource type="SpriteFrames" load_steps=98 format=3 uid="uid://b6xoosqibn5py"] + +[ext_resource type="Texture2D" uid="uid://b6gp72a7yri6j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png" id="1_53k81"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wicgl"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf12x"] +atlas = ExtResource("1_53k81") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykakh"] +atlas = ExtResource("1_53k81") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgx38"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyp0s"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do3vc"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_capha"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc7qg"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x78yr"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rtga"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2r3s"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmya7"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rpdr"] +atlas = ExtResource("1_53k81") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jc83"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plr13"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o6au"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc46v"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4a4w"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0b43"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsq0r"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70hn3"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avto4"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0ffe"] +atlas = ExtResource("1_53k81") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwa1s"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap887"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkukj"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn4o2"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3vfy"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gkua"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7nyd"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp0so"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqe50"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3r1b"] +atlas = ExtResource("1_53k81") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kqhs"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msaiy"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pl8g"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x4jc"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7m18"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ght5f"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqqxg"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4fh1"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jn8l"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdm2g"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eggo"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0b7q"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lsgq"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl1r6"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo1s3"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moc5s"] +atlas = ExtResource("1_53k81") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5stf0"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhm6d"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur3c2"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l5o0"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1608"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1fr1"] +atlas = ExtResource("1_53k81") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7bv"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2827"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1l64l"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igkfx"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1cnq"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p8p3"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nylb"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvjhs"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1nff"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbue0"] +atlas = ExtResource("1_53k81") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgsjh"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spagd"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl65l"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x778"] +atlas = ExtResource("1_53k81") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsyix"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_own0c"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk6i4"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihudn"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbek0"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00py1"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkiry"] +atlas = ExtResource("1_53k81") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuqyy"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ery7w"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvui7"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxl1t"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkauv"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tm64"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cf2yg"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvq1s"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia8ko"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx2qn"] +atlas = ExtResource("1_53k81") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47j56"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd1ch"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de8fv"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ldq"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4pwo"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5olqb"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m4fn"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynjhs"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlcbu"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssxg5"] +atlas = ExtResource("1_53k81") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wicgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf12x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykakh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgx38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyp0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do3vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_capha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc7qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x78yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rtga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2r3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmya7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rpdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jc83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plr13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o6au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc46v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4a4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0b43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsq0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70hn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avto4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0ffe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwa1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap887") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkukj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn4o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3vfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gkua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7nyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp0so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqe50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3r1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kqhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msaiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pl8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x4jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7m18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ght5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqqxg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4fh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jn8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdm2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eggo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0b7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lsgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl1r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo1s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moc5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5stf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhm6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur3c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l5o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1608") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1fr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2827") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1l64l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igkfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1cnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p8p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nylb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvjhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1nff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbue0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgsjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spagd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl65l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x778") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsyix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_own0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk6i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihudn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbek0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00py1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkiry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuqyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ery7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvui7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxl1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkauv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tm64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cf2yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvq1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia8ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx2qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47j56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd1ch") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_de8fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ldq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4pwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5olqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m4fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynjhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlcbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssxg5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hsuku.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hsuku.tres new file mode 100644 index 0000000..0b81c23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hsuku.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://b7oslgm1iski5"] + +[ext_resource type="Texture2D" uid="uid://bles60xag3irg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png" id="1_k56ts"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l7ys"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvecc"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb3f0"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meqm6"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqwo7"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg8gf"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5y7x"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52jc6"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y8ad"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxp6b"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwnll"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnhuw"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrbrh"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vtbl"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7f21"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weoam"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5msj5"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr0a5"] +atlas = ExtResource("1_k56ts") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxk1d"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3fes"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkqct"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxcr1"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1detr"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv82f"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpi74"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uove2"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roxkd"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2ly7"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3rki"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4yfe"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1nxj"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ird8a"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ive"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od5b5"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdb5q"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8sq8"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhcie"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cknn3"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwt15"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f5ly"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7mfm"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qmun"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o12qe"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td62d"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo3nl"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5bsh"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw3sm"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyw02"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lixbu"] +atlas = ExtResource("1_k56ts") +region = Rect2(999, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eyft"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t32wm"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi4e0"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt3ce"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynk0a"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoek2"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd8r0"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80owj"] +atlas = ExtResource("1_k56ts") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qooj"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap8sa"] +atlas = ExtResource("1_k56ts") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5vme"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jom1"] +atlas = ExtResource("1_k56ts") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw7as"] +atlas = ExtResource("1_k56ts") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sbyt"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ulsl"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olt51"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7d3r"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoa67"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx3ex"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8m1s"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu3cp"] +atlas = ExtResource("1_k56ts") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y1ai"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhxkx"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em8kh"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v448"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpyhp"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yltac"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6ntp"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqx6c"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66cog"] +atlas = ExtResource("1_k56ts") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oajee"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w2fr"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oimsw"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f45ni"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03e08"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oeyy"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62oab"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ymu"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w70i"] +atlas = ExtResource("1_k56ts") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbsis"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8d6i"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc42y"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tp5qq"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wprxw"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvedg"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efhes"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td8m4"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri058"] +atlas = ExtResource("1_k56ts") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l7ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvecc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb3f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meqm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqwo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg8gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5y7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52jc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y8ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxp6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwnll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnhuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrbrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vtbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7f21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weoam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5msj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr0a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxk1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3fes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkqct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxcr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1detr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv82f") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpi74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uove2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roxkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2ly7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3rki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4yfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1nxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ird8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ive") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od5b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdb5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8sq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhcie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cknn3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwt15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f5ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7mfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qmun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o12qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td62d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo3nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5bsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw3sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyw02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lixbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eyft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t32wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi4e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt3ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynk0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoek2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd8r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80owj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qooj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap8sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5vme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jom1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw7as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sbyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ulsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olt51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7d3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoa67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx3ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8m1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu3cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y1ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhxkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em8kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v448") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpyhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yltac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6ntp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqx6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66cog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oajee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w2fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oimsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f45ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03e08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oeyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62oab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ymu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w70i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbsis") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8d6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc42y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tp5qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wprxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvedg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efhes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td8m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri058") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hydrax.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hydrax.tres new file mode 100644 index 0000000..9741d5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_hydrax.tres @@ -0,0 +1,617 @@ +[gd_resource type="SpriteFrames" load_steps=85 format=3 uid="uid://cioyvvgvdcx4r"] + +[ext_resource type="Texture2D" uid="uid://l1jmtoysxmc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png" id="1_6067v"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4j8"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72hl8"] +atlas = ExtResource("1_6067v") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c74yg"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gqx8"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4trke"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fygib"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bdju"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmhev"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw00p"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymkm4"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8k5t"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbo2h"] +atlas = ExtResource("1_6067v") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skgey"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0px2b"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lprw"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwvoo"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x4jo"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdsh7"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa5oo"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fekv"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdvyo"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3y1m"] +atlas = ExtResource("1_6067v") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfn6a"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57h5c"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41qpj"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1cye"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eday3"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a3nt"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waof5"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuc1t"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4e56"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg3jm"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkqoo"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0tm0"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubgew"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q823q"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no4l4"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktjfu"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opofx"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feaiy"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a47l"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy70s"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1v88"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2pui"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg25k"] +atlas = ExtResource("1_6067v") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x1lw"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c62g"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdace"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltuws"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xydtd"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1liv"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed8gj"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpe7o"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj1ff"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8ilu"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvpa8"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2m7e"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk2j7"] +atlas = ExtResource("1_6067v") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uiv3"] +atlas = ExtResource("1_6067v") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alf4c"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjnve"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aro0k"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpet2"] +atlas = ExtResource("1_6067v") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kasr"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clmq2"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfg3q"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ennp"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4iei"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ighol"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b04yy"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ff5w"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arfbg"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwn8x"] +atlas = ExtResource("1_6067v") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grqrn"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no5wy"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ay6q"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onaqo"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gego6"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6hra"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7r1b"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y1dq"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2orf"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8btcy"] +atlas = ExtResource("1_6067v") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp4j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72hl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c74yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gqx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4trke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fygib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bdju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmhev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw00p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymkm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8k5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbo2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skgey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0px2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lprw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwvoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x4jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdsh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa5oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fekv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdvyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3y1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfn6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57h5c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_41qpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1cye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eday3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a3nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waof5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuc1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4e56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg3jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkqoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0tm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubgew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q823q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no4l4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktjfu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opofx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feaiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a47l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy70s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1v88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2pui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg25k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x1lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c62g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdace") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltuws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xydtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1liv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed8gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpe7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj1ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8ilu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvpa8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2m7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk2j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uiv3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_alf4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjnve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aro0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpet2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kasr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clmq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfg3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ennp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4iei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ighol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b04yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ff5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arfbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwn8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grqrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no5wy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ay6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onaqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gego6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6hra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7r1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y1dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2orf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8btcy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_incindy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_incindy.tres new file mode 100644 index 0000000..69e26e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_incindy.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://qsyw7xx8qesl"] + +[ext_resource type="Texture2D" uid="uid://4k57sgt7mso" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png" id="1_mf183"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bs4d"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc1bo"] +atlas = ExtResource("1_mf183") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3b5h4"] +atlas = ExtResource("1_mf183") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qw7k"] +atlas = ExtResource("1_mf183") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mfsv"] +atlas = ExtResource("1_mf183") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j7y7"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egmdk"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyd1k"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi32a"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qb5yq"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r23nr"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5bby"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myavk"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rjvt"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lerer"] +atlas = ExtResource("1_mf183") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vtts"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avkkv"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8ixv"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpqvr"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x00y5"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxm5b"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hq6m"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mvib"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1miv6"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqqnc"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmkc4"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_earhx"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5yhm"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64hmb"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pl1f"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od3fd"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btwlv"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iovvb"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g323f"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uawp"] +atlas = ExtResource("1_mf183") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3mf8"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weify"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb75e"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pno3"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx2jc"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heuu5"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qx22"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cketm"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcuej"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1c8b"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57hw"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xgb2"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqn52"] +atlas = ExtResource("1_mf183") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q387"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tepww"] +atlas = ExtResource("1_mf183") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6eqf"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pntry"] +atlas = ExtResource("1_mf183") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xowui"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixwi2"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10fxg"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbtio"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgwtp"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20yan"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfgsl"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrpp8"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5wvl"] +atlas = ExtResource("1_mf183") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqyw5"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50x4x"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgfic"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjd3f"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0o56"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnmm1"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18fnf"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwdk6"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kma2u"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r0uy"] +atlas = ExtResource("1_mf183") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bs4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc1bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3b5h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qw7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mfsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j7y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egmdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyd1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi32a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qb5yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r23nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5bby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myavk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rjvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lerer") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vtts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avkkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8ixv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpqvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x00y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxm5b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hq6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mvib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1miv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqqnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmkc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_earhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5yhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64hmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pl1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od3fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btwlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iovvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g323f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uawp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3mf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weify") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb75e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pno3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx2jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heuu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qx22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cketm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcuej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1c8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xgb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqn52") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q387") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tepww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6eqf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pntry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xowui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixwi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10fxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbtio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgwtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20yan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfgsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrpp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5wvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqyw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50x4x") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgfic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjd3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0o56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnmm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18fnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwdk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kma2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r0uy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_inquisitorkron.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_inquisitorkron.tres new file mode 100644 index 0000000..789bbc3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_inquisitorkron.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://cilgd67sxpquj"] + +[ext_resource type="Texture2D" uid="uid://b6lg87c5ibfx4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png" id="1_334nq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkt2j"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnaqx"] +atlas = ExtResource("1_334nq") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixo5c"] +atlas = ExtResource("1_334nq") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6smi1"] +atlas = ExtResource("1_334nq") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ncq"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4534"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm111"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ut5"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rhov"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crlqd"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxa6b"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_632b8"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cptb"] +atlas = ExtResource("1_334nq") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s65j"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rfyu"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5id7"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye6xa"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd66x"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evin4"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpccq"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjudq"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op01j"] +atlas = ExtResource("1_334nq") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pv7t"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_om1g4"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5vvi"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03tj3"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd81g"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu8p2"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr0c1"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtx4a"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8yiy"] +atlas = ExtResource("1_334nq") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18108"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pig5r"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynex2"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geyxh"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwri5"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpnbj"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y51fu"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysf30"] +atlas = ExtResource("1_334nq") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vio45"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn4cd"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwdao"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jym0"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhu0s"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1o8l"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfllo"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjpcu"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u1xr"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qibg2"] +atlas = ExtResource("1_334nq") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nsdm"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g58b8"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed2bt"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yef04"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m01n"] +atlas = ExtResource("1_334nq") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqnb6"] +atlas = ExtResource("1_334nq") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxcmv"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0beo"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k72sh"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egsx0"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwrxb"] +atlas = ExtResource("1_334nq") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyr7g"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkjcb"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7pw1"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_202ft"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cfm4"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrswk"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw1fu"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yf4d"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p631f"] +atlas = ExtResource("1_334nq") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0ckp"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy1ux"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhuv6"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t5qn"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq4jc"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2u8f"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56fpw"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ec0b"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r12bh"] +atlas = ExtResource("1_334nq") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkt2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnaqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixo5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6smi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ncq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4534") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm111") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ut5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rhov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crlqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxa6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_632b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cptb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s65j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rfyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5id7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye6xa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd66x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evin4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpccq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjudq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op01j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pv7t") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_om1g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5vvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03tj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd81g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu8p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr0c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtx4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8yiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18108") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pig5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynex2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geyxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwri5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpnbj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y51fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysf30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vio45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn4cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwdao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jym0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhu0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1o8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfllo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjpcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u1xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qibg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nsdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g58b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed2bt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yef04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m01n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqnb6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxcmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0beo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k72sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egsx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwrxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyr7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkjcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7pw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_202ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cfm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrswk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw1fu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yf4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p631f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0ckp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy1ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhuv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t5qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq4jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2u8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56fpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ec0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r12bh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ion.tres new file mode 100644 index 0000000..00ed898 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ion.tres @@ -0,0 +1,552 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bvw8qcqlmltt"] + +[ext_resource type="Texture2D" uid="uid://b4xg78mtonbjc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png" id="1_i0d7r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0w30"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlrrm"] +atlas = ExtResource("1_i0d7r") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xh4j"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnocl"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bmwv"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtrb1"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5rgn"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wwp8"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmdwh"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y0d0"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whoox"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4vmu"] +atlas = ExtResource("1_i0d7r") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lju5l"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf6uu"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay02h"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f3wd"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iv27"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4taos"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afi4w"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vknm"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqet4"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gpu1"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84sqg"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgvrs"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi5ia"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t0fl"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3nx0"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ttey"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aspy2"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_typ27"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vwe8"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tcw7"] +atlas = ExtResource("1_i0d7r") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bbtk"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shcgw"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaxwo"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ier"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei8km"] +atlas = ExtResource("1_i0d7r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xi6a"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4rka"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33vvo"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43d0d"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sagnm"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftio0"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiw2o"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh2ey"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53ts3"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xooi0"] +atlas = ExtResource("1_i0d7r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kq13f"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x8x6"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfd65"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d17uj"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwyif"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrc0s"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awa6j"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdfwo"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f8y7"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtafe"] +atlas = ExtResource("1_i0d7r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sdo8"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv7gw"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6glw8"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bave8"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkuih"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohaen"] +atlas = ExtResource("1_i0d7r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa10o"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd6qk"] +atlas = ExtResource("1_i0d7r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u58mc"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjas6"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgemp"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ei00"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np3hp"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icxii"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acxv6"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csewg"] +atlas = ExtResource("1_i0d7r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0w30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlrrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xh4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnocl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bmwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtrb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5rgn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wwp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmdwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y0d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whoox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4vmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lju5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf6uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay02h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f3wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iv27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4taos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afi4w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vknm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqet4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gpu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84sqg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgvrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi5ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t0fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3nx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ttey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aspy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_typ27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vwe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tcw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bbtk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_shcgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaxwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ier") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei8km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xi6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4rka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33vvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43d0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sagnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftio0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiw2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh2ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53ts3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xooi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kq13f") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x8x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfd65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d17uj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwyif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrc0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awa6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdfwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f8y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtafe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sdo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv7gw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6glw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bave8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkuih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohaen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa10o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd6qk") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u58mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjas6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgemp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ei00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np3hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icxii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acxv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csewg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ironclad.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ironclad.tres new file mode 100644 index 0000000..99a2b7b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ironclad.tres @@ -0,0 +1,785 @@ +[gd_resource type="SpriteFrames" load_steps=109 format=3 uid="uid://cfnff0mtldt51"] + +[ext_resource type="Texture2D" uid="uid://c55io3myie380" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png" id="1_cm1ij"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn8fm"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc1jj"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibuff"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rpft"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1akk"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xuif"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qawv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10x3m"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2efr"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjuwb"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc7rt"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfr6o"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77o4x"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mw3ca"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i85ua"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsnyn"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx1f0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0tk2"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3f2i"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iiw6"] +atlas = ExtResource("1_cm1ij") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c6nh"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl6xh"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6vdv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnn1r"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0vfs"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx6s1"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asebv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8qbr"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2op1"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1lyk"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wls4h"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv1fi"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho0sm"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj0c5"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfww4"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5hto"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl0us"] +atlas = ExtResource("1_cm1ij") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6de1"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erl3k"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgjut"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbwru"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8f4w"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejlve"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxkhb"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcyhi"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxe0x"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl2v1"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaen6"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj2os"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nprrr"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb48o"] +atlas = ExtResource("1_cm1ij") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7mrn"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x56oq"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns8ij"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6acs"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o83i5"] +atlas = ExtResource("1_cm1ij") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_026u5"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnsah"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pu7p"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cvg6"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daua0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vtc0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyrkq"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo6d0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjr3s"] +atlas = ExtResource("1_cm1ij") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doikq"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvp7x"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6cfl"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkcpv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe85s"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8rpg"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_murle"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmjij"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saxec"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe1c1"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b6mo"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olsky"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj4hx"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyftk"] +atlas = ExtResource("1_cm1ij") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svgc4"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gpe8"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mpfv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgq1f"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpi5r"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot6f4"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj073"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fggw5"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsu5d"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_066r0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82rga"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gnpv"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiufx"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ue0y"] +atlas = ExtResource("1_cm1ij") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uafm8"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1833, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa8m3"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1692, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4tgy"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1551, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3elxf"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1410, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3so3"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1269, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bept"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 1128, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6nkk"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 987, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8fhi"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67yw0"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfkvq"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxi21"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt0up"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2l5l"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgxgk"] +atlas = ExtResource("1_cm1ij") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn8fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc1jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibuff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rpft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1akk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xuif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qawv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10x3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2efr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjuwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc7rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfr6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77o4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mw3ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i85ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsnyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx1f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0tk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3f2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iiw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c6nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl6xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6vdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnn1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0vfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx6s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asebv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8qbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2op1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1lyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wls4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv1fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho0sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj0c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfww4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5hto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl0us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6de1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erl3k") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgjut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbwru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8f4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejlve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxkhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcyhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxe0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl2v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaen6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj2os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nprrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb48o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7mrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x56oq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns8ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6acs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o83i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_026u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnsah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pu7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cvg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vtc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyrkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo6d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjr3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doikq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvp7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6cfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkcpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe85s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8rpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_murle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmjij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saxec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe1c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b6mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olsky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj4hx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyftk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svgc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gpe8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mpfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgq1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpi5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot6f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj073") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fggw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsu5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_066r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82rga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gnpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiufx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ue0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uafm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa8m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4tgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3elxf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3so3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bept") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6nkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8fhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67yw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfkvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxi21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt0up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2l5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgxgk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxi.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxi.tres new file mode 100644 index 0000000..20ff3dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxi.tres @@ -0,0 +1,708 @@ +[gd_resource type="SpriteFrames" load_steps=98 format=3 uid="uid://byrdhuiuchkms"] + +[ext_resource type="Texture2D" uid="uid://cvb45nwwv5ft" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png" id="1_otf6g"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f4bc"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qle7n"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyo1p"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qntau"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ntvm"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x4tw"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65rs6"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwj5s"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w4gu"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1p4v"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4griy"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl3w7"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maeo5"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aobo3"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sfb3"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye4e8"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnaq6"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfqmt"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng6u5"] +atlas = ExtResource("1_otf6g") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg6a8"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1imy"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a60jj"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5ucm"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svq88"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ur1"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td6g3"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o53lf"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrhcv"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5juj4"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbgis"] +atlas = ExtResource("1_otf6g") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mutim"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4472"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgi0i"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0xqu"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwhg5"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gve28"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgjxf"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0dp0"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkool"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddnka"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3u80"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0do5"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5waq"] +atlas = ExtResource("1_otf6g") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk400"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxcxq"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koawy"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co3i8"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4qjt"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qx57"] +atlas = ExtResource("1_otf6g") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f6pf"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4wdc"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi1c1"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkx5m"] +atlas = ExtResource("1_otf6g") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkfrw"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc2qq"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dep6r"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3g5y"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esxjc"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ij1"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da2os"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oimwi"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0eoc"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhdhk"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajpej"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uowm"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twk5b"] +atlas = ExtResource("1_otf6g") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mcg6"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eogoq"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdj0t"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd766"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd65c"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxcln"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cup8y"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqg2r"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74mds"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hm1m"] +atlas = ExtResource("1_otf6g") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt246"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmy1j"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v8th"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg2g0"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebm61"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb474"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p6xq"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsnco"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s7xl"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cmnk"] +atlas = ExtResource("1_otf6g") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji317"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h827"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bg3a"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u6d5"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pghbj"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5l2n"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53a36"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0lwj"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1px6c"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_303s5"] +atlas = ExtResource("1_otf6g") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f4bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qle7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyo1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qntau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ntvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x4tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65rs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwj5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w4gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1p4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4griy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl3w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maeo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aobo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sfb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye4e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnaq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfqmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng6u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg6a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1imy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a60jj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5ucm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_svq88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ur1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td6g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o53lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrhcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5juj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbgis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mutim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4472") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgi0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0xqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwhg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gve28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgjxf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0dp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkool") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddnka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3u80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0do5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5waq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk400") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxcxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koawy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co3i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4qjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qx57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f6pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4wdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi1c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkx5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkfrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc2qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dep6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3g5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esxjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ij1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da2os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oimwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0eoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhdhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajpej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uowm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twk5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mcg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eogoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdj0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd766") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd65c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxcln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cup8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqg2r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_74mds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hm1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt246") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmy1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v8th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg2g0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebm61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb474") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p6xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsnco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s7xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cmnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji317") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h827") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bg3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u6d5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pghbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5l2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53a36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0lwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1px6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_303s5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxtruesight.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxtruesight.tres new file mode 100644 index 0000000..898ec6a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_jaxtruesight.tres @@ -0,0 +1,608 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://dg2b5ep4oh6gw"] + +[ext_resource type="Texture2D" uid="uid://bfvyo1fg0iaa5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png" id="1_sab4b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0faof"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kdpy"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6k1c"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kki4v"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdhao"] +atlas = ExtResource("1_sab4b") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjiek"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcb3p"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kopj"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4038c"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lcig"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyrq7"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbvgt"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqc7"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhd2s"] +atlas = ExtResource("1_sab4b") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld6vf"] +atlas = ExtResource("1_sab4b") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdmq5"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jjcp"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jddl"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8efb"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbo03"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fp2xy"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8l56"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl7qv"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vei2j"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjkrm"] +atlas = ExtResource("1_sab4b") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87k23"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in7r6"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bdij"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkdt3"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb747"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mktl"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27nxd"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m64bu"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ral6o"] +atlas = ExtResource("1_sab4b") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdori"] +atlas = ExtResource("1_sab4b") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xqf3"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 867, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jagdo"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 766, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3dpt"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 665, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ff7fo"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 564, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vatcc"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 463, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olcb1"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 362, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnjcd"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 261, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hen6c"] +atlas = ExtResource("1_sab4b") +region = Rect2(101, 160, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhx3c"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 867, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38fkl"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 766, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltjcj"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 665, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8jn4"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 564, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ehbv"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 463, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h56sb"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 362, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqwcw"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 261, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6x42"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 160, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raclf"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdphg"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mognj"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgq7u"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw0ej"] +atlas = ExtResource("1_sab4b") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ineng"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nykx"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rii4x"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkolm"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpgwa"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uyil"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpreb"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63kq7"] +atlas = ExtResource("1_sab4b") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nlop"] +atlas = ExtResource("1_sab4b") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyei3"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmah4"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q07t7"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xonvk"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u55m"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 0, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eme3"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 40, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njovu"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 80, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nmwy"] +atlas = ExtResource("1_sab4b") +region = Rect2(0, 120, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhb7f"] +atlas = ExtResource("1_sab4b") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02do1"] +atlas = ExtResource("1_sab4b") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so4b7"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_003wc"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ev3c"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eb1q"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcvdb"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykjus"] +atlas = ExtResource("1_sab4b") +region = Rect2(505, 404, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0faof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kdpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6k1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kki4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdhao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjiek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcb3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kopj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4038c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lcig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyrq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbvgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhd2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld6vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdmq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jjcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jddl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8efb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbo03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fp2xy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8l56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl7qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vei2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjkrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87k23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in7r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bdij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkdt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb747") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mktl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27nxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m64bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ral6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdori") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xqf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jagdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3dpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ff7fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vatcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olcb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnjcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hen6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhx3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38fkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltjcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8jn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ehbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h56sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqwcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6x42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raclf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdphg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mognj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgq7u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw0ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ineng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nykx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rii4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkolm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpgwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uyil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpreb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63kq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nlop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyei3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmah4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q07t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xonvk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u55m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eme3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njovu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nmwy") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhb7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02do1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so4b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_003wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ev3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eb1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcvdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykjus") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevale.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevale.tres new file mode 100644 index 0000000..dc3f2b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevale.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://w1fa2flww4gd"] + +[ext_resource type="Texture2D" uid="uid://c2e0l0uamjope" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png" id="1_t6gl7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8vqi"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv6rv"] +atlas = ExtResource("1_t6gl7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phxpe"] +atlas = ExtResource("1_t6gl7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n1as"] +atlas = ExtResource("1_t6gl7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro2xc"] +atlas = ExtResource("1_t6gl7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bx6f"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsc3m"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3yw6"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0sxk"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l12jw"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0wca"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_623rl"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwrgs"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joeuo"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x0jf"] +atlas = ExtResource("1_t6gl7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdlra"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpt4x"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyyss"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tnmp"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yup8j"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_288kc"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca338"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4nsi"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy0sd"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8nmk"] +atlas = ExtResource("1_t6gl7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6442l"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ypfj"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ona41"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nebi8"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrdfd"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqll5"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ykep"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdumb"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w015"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi1u6"] +atlas = ExtResource("1_t6gl7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrunm"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fwbn"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skw4u"] +atlas = ExtResource("1_t6gl7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31t6c"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okeak"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5klty"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suxwl"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uweb"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70pgf"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmy07"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv6c8"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu5jg"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afbma"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddjug"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pw32"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p87ia"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j0i6"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rlvd"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32eds"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgge0"] +atlas = ExtResource("1_t6gl7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukj1u"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah31n"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsjdx"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnaxd"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkmhw"] +atlas = ExtResource("1_t6gl7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbe2u"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuxxa"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pely3"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mekl5"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34f4q"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wy21"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_660cc"] +atlas = ExtResource("1_t6gl7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2b07"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sismw"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grjjk"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myfbv"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhmqu"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfv07"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjwjc"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnnvv"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1co78"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6hkb"] +atlas = ExtResource("1_t6gl7") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8vqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv6rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phxpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n1as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro2xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bx6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsc3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3yw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0sxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l12jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0wca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_623rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwrgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joeuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x0jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdlra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpt4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyyss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tnmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yup8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_288kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca338") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4nsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy0sd") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8nmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6442l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ypfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ona41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nebi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrdfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqll5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ykep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdumb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w015") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi1u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrunm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fwbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skw4u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_31t6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okeak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5klty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suxwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uweb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70pgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmy07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv6c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu5jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afbma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddjug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pw32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p87ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j0i6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rlvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32eds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgge0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukj1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah31n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsjdx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnaxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkmhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbe2u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuxxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pely3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mekl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34f4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wy21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_660cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2b07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sismw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grjjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myfbv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhmqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfv07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjwjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnnvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1co78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6hkb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevalue.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevalue.tres new file mode 100644 index 0000000..b383e06 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_keeperofthevalue.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://c7ekao85k3b42"] + +[ext_resource type="Texture2D" uid="uid://v8xvkdrk1mmd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png" id="1_rwqyn"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx0hc"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxj5n"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st8ic"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxp82"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdfwr"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d55qi"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdw0o"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlpkt"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1su8g"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1ng2"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imu40"] +atlas = ExtResource("1_rwqyn") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vmbf"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6jyx"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnixw"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx66v"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w44jh"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrjxd"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deyft"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y414h"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmcku"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pet5v"] +atlas = ExtResource("1_rwqyn") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r60qr"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcc7a"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82sul"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6s48"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5h17"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7uyu"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o8kn"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isvdt"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmlbq"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ho5"] +atlas = ExtResource("1_rwqyn") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p0ht"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4llwx"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abcu7"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wghk"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1444t"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq6hw"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p5n0"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpyde"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2uol"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2fmb"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxxc3"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uqmf"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d60bq"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsigf"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an6wx"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30kds"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktusc"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i64ro"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h581a"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vaio4"] +atlas = ExtResource("1_rwqyn") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8m4e"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6baq8"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ab20"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55y0x"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxlfr"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88m7i"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qw6n"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80mtq"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_buha7"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pop8"] +atlas = ExtResource("1_rwqyn") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4kxk"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a255"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqwq7"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rouad"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh7s0"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y80l"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h70po"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2wyb"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24dik"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1a5v"] +atlas = ExtResource("1_rwqyn") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qksd"] +atlas = ExtResource("1_rwqyn") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ibtw"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8eei"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7ug7"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns8ss"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa62c"] +atlas = ExtResource("1_rwqyn") +region = Rect2(707, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx0hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxj5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st8ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxp82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdfwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d55qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdw0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlpkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1su8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1ng2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imu40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vmbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6jyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnixw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx66v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w44jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrjxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deyft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y414h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmcku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pet5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r60qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcc7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82sul") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6s48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5h17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7uyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o8kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isvdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmlbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ho5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p0ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4llwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abcu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wghk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1444t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq6hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p5n0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpyde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2uol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2fmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxxc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uqmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d60bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsigf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an6wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30kds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktusc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i64ro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h581a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vaio4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8m4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6baq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ab20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55y0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxlfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88m7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qw6n") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_80mtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_buha7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pop8") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4kxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a255") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqwq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rouad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh7s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y80l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h70po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2wyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24dik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1a5v") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qksd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ibtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8eei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7ug7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns8ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa62c") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_khymera.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_khymera.tres new file mode 100644 index 0000000..4875cb2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_khymera.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://dg10cnxsdhe14"] + +[ext_resource type="Texture2D" uid="uid://ce638akpfjub2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png" id="1_5gpjt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhpbs"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1iofm"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx5v2"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5k3e"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1ev8"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqdj7"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tls8i"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbee5"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6h7y"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fboat"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmbo5"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq6op"] +atlas = ExtResource("1_5gpjt") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsb7c"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7cja"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12loc"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1cq3"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83iu8"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh3nt"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju0l1"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ragp"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t33wn"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ff52"] +atlas = ExtResource("1_5gpjt") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk2eq"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epbgk"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8tsj"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmsg1"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x6x4"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48hrr"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgogn"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3frnn"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb53l"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sq12"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeo1c"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a0ic"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lhwg"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_206dw"] +atlas = ExtResource("1_5gpjt") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is7v8"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m27oy"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fkdo"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ayau"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pobh2"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcm22"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibwjm"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gqj4"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rdg5"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rhka"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrnuj"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0axlc"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3gd8"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw4q3"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5aim"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oakky"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5blvq"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_275s1"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2870"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oec7e"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lse5"] +atlas = ExtResource("1_5gpjt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce3t7"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tiol"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd2l2"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rgjm"] +atlas = ExtResource("1_5gpjt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pjb7"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lsdn"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpubc"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owji4"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6k6l"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ru6k"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktm4g"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sslhw"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cid0i"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lfnc"] +atlas = ExtResource("1_5gpjt") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uktwp"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nebxb"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujklh"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_850x4"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoxur"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5nng"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5agxk"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gahic"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwifu"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt3ax"] +atlas = ExtResource("1_5gpjt") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk7nh"] +atlas = ExtResource("1_5gpjt") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsxml"] +atlas = ExtResource("1_5gpjt") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fah0b"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1y3y"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlrki"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi4ye"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1edm2"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji5g2"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thf12"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wkic"] +atlas = ExtResource("1_5gpjt") +region = Rect2(707, 202, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhpbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1iofm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx5v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5k3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1ev8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqdj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tls8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbee5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6h7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fboat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmbo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq6op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsb7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7cja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12loc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1cq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83iu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh3nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju0l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ragp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t33wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ff52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk2eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epbgk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8tsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmsg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x6x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48hrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgogn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3frnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb53l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sq12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeo1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a0ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lhwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_206dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is7v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m27oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fkdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ayau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pobh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcm22") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibwjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gqj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rdg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rhka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrnuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0axlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3gd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw4q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5aim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oakky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5blvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_275s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2870") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oec7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lse5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce3t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tiol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd2l2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rgjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pjb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lsdn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpubc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owji4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6k6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ru6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktm4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sslhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cid0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lfnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uktwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nebxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujklh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_850x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoxur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5nng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5agxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gahic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwifu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt3ax") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk7nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsxml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fah0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1y3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlrki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi4ye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1edm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji5g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thf12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wkic") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_kin.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_kin.tres new file mode 100644 index 0000000..7284c72 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_kin.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://co787oucvvj6t"] + +[ext_resource type="Texture2D" uid="uid://b8uxovrba0l2r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png" id="1_ul45c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cfqo"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21esn"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al0pu"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk4vm"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvutd"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6g3d"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2uy2"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewrn7"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awxsx"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_likcy"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnjkf"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_masdh"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptjyo"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acjet"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnavt"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28wd7"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nalks"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ikem"] +atlas = ExtResource("1_ul45c") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01ppv"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbjbw"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcpiu"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymybc"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ostu4"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnywx"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dadmo"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7b6n"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syhu4"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoqa2"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnaky"] +atlas = ExtResource("1_ul45c") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxjik"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6xsd"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq8yr"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw2rm"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t8b5"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npgv5"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeb2s"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jyxm"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47y4l"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg5uk"] +atlas = ExtResource("1_ul45c") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhtvl"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi0ni"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px8sc"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m76s2"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boplj"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k76h"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n60vq"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7apv3"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dle40"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg8s7"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d6sc"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mknsg"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fkqf"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrhne"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h321n"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb4cp"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljrds"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoh86"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv6d6"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31l3b"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p1m7"] +atlas = ExtResource("1_ul45c") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yotdo"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc8pi"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82p11"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek2qy"] +atlas = ExtResource("1_ul45c") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gcd3"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agi3i"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4aob"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f18i"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdwvy"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhy7k"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nec68"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8os47"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o3jq"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voef3"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj1qe"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btcyv"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qni74"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyuws"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2m74"] +atlas = ExtResource("1_ul45c") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfic4"] +atlas = ExtResource("1_ul45c") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7diam"] +atlas = ExtResource("1_ul45c") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60prc"] +atlas = ExtResource("1_ul45c") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj3hf"] +atlas = ExtResource("1_ul45c") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxr4b"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5be68"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olet4"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pftx"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw3s2"] +atlas = ExtResource("1_ul45c") +region = Rect2(707, 505, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cfqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21esn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al0pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk4vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvutd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6g3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2uy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewrn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awxsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_likcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnjkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_masdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptjyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acjet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnavt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28wd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nalks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ikem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01ppv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbjbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcpiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymybc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ostu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnywx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dadmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7b6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syhu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoqa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnaky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxjik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6xsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq8yr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw2rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t8b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npgv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeb2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jyxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47y4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg5uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhtvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi0ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px8sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m76s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boplj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k76h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n60vq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7apv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dle40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg8s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d6sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mknsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fkqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrhne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h321n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb4cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljrds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoh86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv6d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31l3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p1m7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yotdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc8pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82p11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek2qy") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gcd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agi3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4aob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f18i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdwvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhy7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nec68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8os47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o3jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voef3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj1qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btcyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qni74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyuws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2m74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfic4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7diam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60prc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj3hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxr4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5be68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olet4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pftx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw3s2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_koi.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_koi.tres new file mode 100644 index 0000000..293c714 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_koi.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://cbyi6iieosrak"] + +[ext_resource type="Texture2D" uid="uid://bknt0gapssncj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png" id="1_g3lc7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k5vh"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y58a1"] +atlas = ExtResource("1_g3lc7") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpyih"] +atlas = ExtResource("1_g3lc7") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d2lx"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afa0p"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dakos"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1k07"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy3k2"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ce5j"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxk3p"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqch0"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p07sq"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ee1s"] +atlas = ExtResource("1_g3lc7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oeoj"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xf78"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0tlv"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qelsc"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6mw8"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0awm"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q61e"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2qyl"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqi6r"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6ynh"] +atlas = ExtResource("1_g3lc7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfpij"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j1vg"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbh5n"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awed3"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnss1"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ysk5"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmxqm"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yopjs"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulgvd"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6x6y"] +atlas = ExtResource("1_g3lc7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yu01"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6mli"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gea8l"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dl5d"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2o3q"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebqfe"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cujlw"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73657"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k3f5"] +atlas = ExtResource("1_g3lc7") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j337u"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_medtg"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81i8f"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyeqr"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3awrd"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78xuk"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjovp"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo5wi"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfvwo"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u30eh"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abeib"] +atlas = ExtResource("1_g3lc7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2838"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nqg3"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww0b8"] +atlas = ExtResource("1_g3lc7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p074"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p457h"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clasn"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mum37"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuhqs"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s0d6"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arbgi"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt6pb"] +atlas = ExtResource("1_g3lc7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6owi"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qljy3"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dnab"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcd2a"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c5la"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tam2f"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb8q0"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omvms"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7bf4"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n02u"] +atlas = ExtResource("1_g3lc7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hp2q"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgqx0"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkav0"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgvdv"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc38u"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cud6l"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42ev8"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnrff"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc5pf"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktfor"] +atlas = ExtResource("1_g3lc7") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k5vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y58a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpyih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d2lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afa0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dakos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1k07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy3k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ce5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxk3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqch0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p07sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ee1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oeoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xf78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0tlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qelsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6mw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0awm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q61e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2qyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqi6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6ynh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfpij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j1vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbh5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awed3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnss1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ysk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmxqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yopjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulgvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6x6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yu01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6mli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gea8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dl5d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2o3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebqfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cujlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73657") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k3f5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j337u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_medtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81i8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyeqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3awrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78xuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjovp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo5wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfvwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u30eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abeib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2838") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nqg3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww0b8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p074") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p457h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_clasn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mum37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuhqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s0d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arbgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt6pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6owi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qljy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dnab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcd2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tam2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb8q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omvms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7bf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n02u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hp2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgqx0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkav0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgvdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc38u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cud6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42ev8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnrff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc5pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktfor") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_komodokin.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_komodokin.tres new file mode 100644 index 0000000..d10f570 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_komodokin.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://bw6gyx4ovk3sn"] + +[ext_resource type="Texture2D" uid="uid://dgu6yxltp561h" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png" id="1_uglne"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3ute"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp4cg"] +atlas = ExtResource("1_uglne") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7qct"] +atlas = ExtResource("1_uglne") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xcwf"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibujt"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe7om"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8tf6"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0prh"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quih8"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grbtf"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn5bd"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmsll"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weapy"] +atlas = ExtResource("1_uglne") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvs43"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xvg4"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkvsy"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0ytp"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rky7"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkw7l"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erx5w"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmxd7"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v67en"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iibao"] +atlas = ExtResource("1_uglne") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86aie"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y57em"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihbe5"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0npbn"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gexpy"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7v6rv"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh3nh"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p5y8"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opwk1"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egy3f"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02l1b"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy0li"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05n7u"] +atlas = ExtResource("1_uglne") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an5cx"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wktk"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdtut"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6le1a"] +atlas = ExtResource("1_uglne") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4ada"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlqn8"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u815i"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvbgp"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh0ep"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qugfv"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqvc4"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt5y7"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18t8f"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmx3e"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u37d"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow3s7"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c02sp"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnlcv"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1q7n"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7m0x"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak3at"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83iml"] +atlas = ExtResource("1_uglne") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r8kv"] +atlas = ExtResource("1_uglne") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5drtt"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7she7"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj0sd"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dveda"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_056u1"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4ese"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ur0f"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqivi"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdhcr"] +atlas = ExtResource("1_uglne") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0qr"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcifi"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lchng"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa1b6"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etuuk"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uafk"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbdpd"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js84p"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crw3y"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lc54d"] +atlas = ExtResource("1_uglne") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3ute") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp4cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7qct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xcwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibujt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe7om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8tf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0prh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quih8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grbtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn5bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmsll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weapy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvs43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xvg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkvsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0ytp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rky7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkw7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erx5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmxd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v67en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iibao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86aie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y57em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihbe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0npbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gexpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7v6rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh3nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p5y8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_opwk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egy3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02l1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy0li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05n7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an5cx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wktk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdtut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6le1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4ada") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlqn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u815i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvbgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh0ep") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qugfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqvc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt5y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18t8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmx3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u37d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow3s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c02sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnlcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1q7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7m0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak3at") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_83iml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r8kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5drtt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7she7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj0sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dveda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_056u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4ese") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ur0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqivi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdhcr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de0qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcifi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lchng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa1b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etuuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uafk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbdpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js84p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crw3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lc54d") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ladylocke.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ladylocke.tres new file mode 100644 index 0000000..9c1c36e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ladylocke.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://ds5rqr3ynsqgh"] + +[ext_resource type="Texture2D" uid="uid://dh44dmoukqavj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png" id="1_io2rv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vinn"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4m81"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05tsk"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovxei"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dec5"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36ree"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aywwc"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn8sh"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h57gi"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q56v6"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4db7m"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1fqj"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7ly2"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u36se"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvwke"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af5eq"] +atlas = ExtResource("1_io2rv") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nregt"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etg3w"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wyy7"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6b2t"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5c67"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl55k"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2seia"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvsc2"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3htwy"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmg1u"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycdri"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk7ei"] +atlas = ExtResource("1_io2rv") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fwvo"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jwnb"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1osj"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv8uh"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3dkl"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la3up"] +atlas = ExtResource("1_io2rv") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jepdo"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn0ns"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6xj1"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceur0"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umdc6"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6pxv"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrfci"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oblwc"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqxxv"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfoh0"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk5hq"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3587s"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f22d4"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdw5p"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_176cq"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t60h"] +atlas = ExtResource("1_io2rv") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0sp1"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyohp"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8lmx"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaduc"] +atlas = ExtResource("1_io2rv") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47mwg"] +atlas = ExtResource("1_io2rv") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oeimm"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah4lp"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfny1"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryskc"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rttff"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p462n"] +atlas = ExtResource("1_io2rv") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u10jc"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hoqr"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30irj"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md88r"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jks0g"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ko5"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdm4d"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ybnb"] +atlas = ExtResource("1_io2rv") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kth0c"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnt2a"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3klrj"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eebev"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxtxx"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3hl3"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjkh5"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa5t5"] +atlas = ExtResource("1_io2rv") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vinn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4m81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05tsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovxei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dec5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36ree") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aywwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn8sh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h57gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q56v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4db7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1fqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7ly2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u36se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvwke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af5eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nregt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etg3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wyy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6b2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5c67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl55k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2seia") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvsc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3htwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmg1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycdri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk7ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fwvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jwnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1osj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv8uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3dkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la3up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jepdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn0ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6xj1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceur0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umdc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6pxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrfci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oblwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqxxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfoh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk5hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3587s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f22d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdw5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_176cq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t60h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0sp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyohp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8lmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaduc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47mwg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oeimm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah4lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfny1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryskc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rttff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p462n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u10jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hoqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30irj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md88r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jks0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ko5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdm4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ybnb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kth0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnt2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3klrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eebev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxtxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3hl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjkh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa5t5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigress.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigress.tres new file mode 100644 index 0000000..d0ded66 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigress.tres @@ -0,0 +1,601 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://dksb5y6n1v83l"] + +[ext_resource type="Texture2D" uid="uid://bl3qofu1y5yjy" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png" id="1_uk6lk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjtbe"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e32f"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgp7j"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y7xg"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omiar"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3y3h"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8obj3"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj3tc"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anoes"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8xkm"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3nfo"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lspes"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po5of"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spirt"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cqh0"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxoqj"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2712"] +atlas = ExtResource("1_uk6lk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwbln"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd4v7"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x38pi"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2dy6"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8i6i"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o66cl"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d43fx"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aygm3"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sosb5"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3fg3"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l36yp"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mxor"] +atlas = ExtResource("1_uk6lk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l02iu"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqoko"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo8e3"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh3k6"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1xpb"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pqw2"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7pxy"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8axr"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcc4t"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsxi5"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mk4d"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upql0"] +atlas = ExtResource("1_uk6lk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8gn6"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84v2y"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibj5l"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aisr1"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46xie"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15vld"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gekhd"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bo35"] +atlas = ExtResource("1_uk6lk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opkf7"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sylci"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5tfw"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r83n"] +atlas = ExtResource("1_uk6lk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb81v"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u61kf"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbeaq"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0md34"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lcsw"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7fdy"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh0f1"] +atlas = ExtResource("1_uk6lk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8pik"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sm7v"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnle3"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul3ku"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kckky"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrckn"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6d7a"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y855"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axj4a"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rfu1"] +atlas = ExtResource("1_uk6lk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pemeh"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxoxg"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcrba"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c6as"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlchf"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvlcg"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg4su"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i446"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlvxw"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpy1u"] +atlas = ExtResource("1_uk6lk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjtbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e32f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgp7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y7xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omiar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3y3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8obj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj3tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anoes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8xkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3nfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lspes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po5of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spirt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cqh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxoqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2712") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwbln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd4v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x38pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2dy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8i6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o66cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d43fx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aygm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sosb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3fg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l36yp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mxor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l02iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqoko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo8e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh3k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1xpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pqw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7pxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8axr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcc4t") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsxi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mk4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upql0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8gn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84v2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibj5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aisr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46xie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15vld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gekhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bo35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opkf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sylci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5tfw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r83n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb81v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u61kf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbeaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0md34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lcsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7fdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh0f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8pik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sm7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnle3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul3ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kckky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrckn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6d7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y855") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axj4a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rfu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pemeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxoxg") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcrba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c6as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlchf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvlcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg4su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i446") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlvxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpy1u") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigresscub.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigresscub.tres new file mode 100644 index 0000000..92c971f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_letigresscub.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://djs531x0yyrpa"] + +[ext_resource type="Texture2D" uid="uid://d0180obn4kfr1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png" id="1_3rrvs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_igdk8"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57fni"] +atlas = ExtResource("1_3rrvs") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2yg7"] +atlas = ExtResource("1_3rrvs") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk3rr"] +atlas = ExtResource("1_3rrvs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my2wn"] +atlas = ExtResource("1_3rrvs") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38qck"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fikod"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3rfy"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6boyw"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66r7a"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfjxs"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8a2b"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_put5b"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyps2"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lmdl"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykh01"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7fs7"] +atlas = ExtResource("1_3rrvs") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve0uq"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_627wc"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln27b"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq11m"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci06s"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoc08"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17uu7"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_303c6"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkr2a"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r4dn"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfxvo"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1qrx"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0cfy"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay1a3"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpgbp"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jioo4"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px41v"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quefb"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujk8t"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xat8v"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52kee"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3leb"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e5hs"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s2qq"] +atlas = ExtResource("1_3rrvs") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcx57"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ossbc"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77ihi"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02x28"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1u1r"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm2f1"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmkea"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrbtk"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdvtn"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibsag"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_se2p7"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8h0h3"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tynar"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ankfp"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivy1n"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nmnh"] +atlas = ExtResource("1_3rrvs") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8fqp"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cot6y"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl3le"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44swh"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sitna"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es364"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4stge"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s5ws"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2w4l"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asxgu"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnrfj"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6f4cw"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ywqc"] +atlas = ExtResource("1_3rrvs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty1il"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xf1n"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc2km"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itumd"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg5n4"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxu2u"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uyol"] +atlas = ExtResource("1_3rrvs") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaqhn"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ttad"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw83d"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c1ue"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4m68"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjp4u"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx5xi"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqmun"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54223"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miea7"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccy7g"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60am2"] +atlas = ExtResource("1_3rrvs") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_igdk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57fni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2yg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk3rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my2wn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38qck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fikod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3rfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6boyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66r7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfjxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8a2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_put5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyps2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lmdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykh01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7fs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve0uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_627wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln27b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq11m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci06s") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoc08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17uu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_303c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkr2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r4dn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfxvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1qrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0cfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay1a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpgbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jioo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px41v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quefb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujk8t") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xat8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52kee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3leb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e5hs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s2qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcx57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ossbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77ihi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02x28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1u1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm2f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmkea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrbtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdvtn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibsag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_se2p7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8h0h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tynar") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ankfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivy1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nmnh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8fqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cot6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl3le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44swh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sitna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es364") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4stge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s5ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2w4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asxgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnrfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6f4cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ywqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty1il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xf1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc2km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itumd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg5n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxu2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uyol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaqhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ttad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw83d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c1ue") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4m68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjp4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx5xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqmun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54223") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miea7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccy7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60am2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_loreweaver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_loreweaver.tres new file mode 100644 index 0000000..e4fa3af --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_loreweaver.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://huoylj0hekjm"] + +[ext_resource type="Texture2D" uid="uid://detew4bd6qsrg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png" id="1_5eb08"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqvr4"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdsgk"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ww3b"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewtlu"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de8pg"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2aw6"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjcwt"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjaqb"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgvbg"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxkb5"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ebpo"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qbrk"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6non"] +atlas = ExtResource("1_5eb08") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec22m"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64v5q"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyhn1"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxmgq"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flirt"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40nuf"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ojra"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebfei"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd6oj"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_307fj"] +atlas = ExtResource("1_5eb08") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8ylo"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xan0"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tecas"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n7ng"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2tvx"] +atlas = ExtResource("1_5eb08") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ofa"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxv76"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh8qu"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1y10"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dloh"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15tij"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsltm"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oni0"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4epn4"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmm8r"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fueqe"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rubua"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghaim"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnwbx"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpp6t"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8wwr"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqxjl"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qep0c"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87rqk"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arf6l"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy5eh"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g5iw"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_245sk"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnrnj"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4b4e"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mti02"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwhou"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdn8x"] +atlas = ExtResource("1_5eb08") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmwnw"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1apfh"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42y70"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe53v"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ymgy"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18hgq"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpl7t"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gwmn"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqtis"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h1yu"] +atlas = ExtResource("1_5eb08") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g2en"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wegam"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcxmc"] +atlas = ExtResource("1_5eb08") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5ag5"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tra5x"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7raj"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4orep"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6gec"] +atlas = ExtResource("1_5eb08") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1amws"] +atlas = ExtResource("1_5eb08") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhkjm"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asscb"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d45i1"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e6ck"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3a0dd"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ebx"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ctc"] +atlas = ExtResource("1_5eb08") +region = Rect2(606, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqvr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdsgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ww3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewtlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de8pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2aw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjcwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjaqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgvbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxkb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ebpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qbrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6non") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec22m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64v5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyhn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxmgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flirt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40nuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ojra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebfei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd6oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_307fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8ylo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xan0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tecas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n7ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2tvx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3ofa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxv76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh8qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1y10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dloh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15tij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsltm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oni0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4epn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmm8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fueqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rubua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghaim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnwbx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpp6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8wwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqxjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qep0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87rqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arf6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy5eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g5iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_245sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnrnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4b4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mti02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwhou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdn8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmwnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1apfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42y70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe53v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ymgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18hgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpl7t") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gwmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqtis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h1yu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g2en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wegam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcxmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5ag5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tra5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7raj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4orep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6gec") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1amws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhkjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asscb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d45i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e6ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3a0dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ebx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ctc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_luxignis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_luxignis.tres new file mode 100644 index 0000000..b0c3469 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_luxignis.tres @@ -0,0 +1,706 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://c88d77xlbifww"] + +[ext_resource type="Texture2D" uid="uid://bdshprpffpdwx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png" id="1_pi40m"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxwxe"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlbwq"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybi7l"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kntjq"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phkn1"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77iih"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5ujt"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtwvf"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvy8o"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdiyf"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqg8f"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_110p2"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk47t"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ygdx"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5eewj"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxq3i"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dgu4"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqos"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opvvr"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rltr"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg7yw"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_diqkm"] +atlas = ExtResource("1_pi40m") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hk3n"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2bmr"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3661"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkcry"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbhd7"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fvin"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccr4j"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asmr1"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64ulf"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkhkv"] +atlas = ExtResource("1_pi40m") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b36aj"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el3oh"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6agb4"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bksl"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj4e0"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owxn3"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyugk"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uowbi"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q55qj"] +atlas = ExtResource("1_pi40m") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxhav"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vt51"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvem1"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vjev"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqjm4"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt86l"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cjfj"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25y0i"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jphqx"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nhn6"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gtl8"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71yd0"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lrs5"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggqxb"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r1d4"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c51dg"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87tav"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgneh"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mma5r"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0qqx"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pa5t"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osimq"] +atlas = ExtResource("1_pi40m") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csnuj"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg6vd"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxa1b"] +atlas = ExtResource("1_pi40m") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p83h"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nokeo"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lp4v6"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8k2x"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odrr3"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygol8"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j0hl"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjsjj"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ufri"] +atlas = ExtResource("1_pi40m") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3brl"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0eif"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jiid"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci1m1"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0sp4"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edure"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coqyy"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr08u"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tay0"] +atlas = ExtResource("1_pi40m") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwhvv"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 909, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gr76"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 926, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsp6w"] +atlas = ExtResource("1_pi40m") +region = Rect2(808, 943, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qemik"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03et3"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m6pc"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmmhd"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5afja"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm74i"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3vt3"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grvgf"] +atlas = ExtResource("1_pi40m") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxwxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlbwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybi7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kntjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phkn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77iih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5ujt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtwvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvy8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdiyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqg8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_110p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk47t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ygdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5eewj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxq3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dgu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opvvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rltr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg7yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_diqkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hk3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2bmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3661") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkcry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbhd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fvin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccr4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asmr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64ulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkhkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b36aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el3oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6agb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bksl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj4e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owxn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyugk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uowbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q55qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxhav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vt51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvem1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vjev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqjm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt86l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cjfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25y0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jphqx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nhn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gtl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71yd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lrs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggqxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r1d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c51dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87tav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgneh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mma5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0qqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pa5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osimq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csnuj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg6vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxa1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p83h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nokeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lp4v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8k2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odrr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygol8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j0hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjsjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ufri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3brl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0eif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jiid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci1m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0sp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edure") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coqyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr08u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tay0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwhvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gr76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsp6w") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qemik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03et3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m6pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmmhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5afja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm74i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3vt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grvgf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mageswarm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mageswarm.tres new file mode 100644 index 0000000..89d23c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mageswarm.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://cd3yqd82jhsvq"] + +[ext_resource type="Texture2D" uid="uid://l5rs4t0nm33y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png" id="1_sdmdc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ha2c"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5uso"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t34c"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6vgh"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxqsy"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cplk6"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt27u"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3symc"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8utv"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kk11"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6oyh"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf67y"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhr7n"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4r5w"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l65w8"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss6v1"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ct5g"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msv71"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q74sq"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6gdf"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1cm2"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcpmt"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1bj6"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8kmk"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6ue0"] +atlas = ExtResource("1_sdmdc") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uc0t"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf3sp"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs62b"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghxgr"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8s85"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd4l0"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn1mk"] +atlas = ExtResource("1_sdmdc") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amuqr"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6der"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf7an"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is35e"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c8um"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4cwb"] +atlas = ExtResource("1_sdmdc") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnxcb"] +atlas = ExtResource("1_sdmdc") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtox3"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c8bl"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exqev"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y81pb"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfhfu"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noftt"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aieku"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c342m"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4alrh"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2sj0"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1srs"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ckg"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2wkx"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x53st"] +atlas = ExtResource("1_sdmdc") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o884a"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxfx7"] +atlas = ExtResource("1_sdmdc") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqhvy"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h6uc"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivngr"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d3u0"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru4ca"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mguiv"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pb3a5"] +atlas = ExtResource("1_sdmdc") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmxe5"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev8fj"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymret"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usawc"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifo4u"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmen"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmfdj"] +atlas = ExtResource("1_sdmdc") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y705y"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kbvq"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ca1c"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvk1g"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fyae"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a010p"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mr45"] +atlas = ExtResource("1_sdmdc") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ha2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5uso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t34c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6vgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxqsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cplk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt27u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3symc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8utv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kk11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6oyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf67y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhr7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4r5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l65w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss6v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ct5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msv71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q74sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6gdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1cm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcpmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1bj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8kmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6ue0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uc0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf3sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs62b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghxgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8s85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd4l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn1mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amuqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6der") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf7an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is35e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c8um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4cwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnxcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtox3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c8bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exqev") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y81pb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfhfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noftt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aieku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c342m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4alrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2sj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1srs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ckg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2wkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x53st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o884a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxfx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqhvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h6uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivngr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d3u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru4ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mguiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pb3a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmxe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev8fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymret") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usawc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifo4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmen") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmfdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y705y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kbvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ca1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvk1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fyae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a010p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mr45") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_masteroftheseven.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_masteroftheseven.tres new file mode 100644 index 0000000..f96ad16 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_masteroftheseven.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://cq401xirn6lvr"] + +[ext_resource type="Texture2D" uid="uid://bam7c21o6qo6d" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png" id="1_rkxvd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pufb"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n0hy"] +atlas = ExtResource("1_rkxvd") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg78k"] +atlas = ExtResource("1_rkxvd") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6835p"] +atlas = ExtResource("1_rkxvd") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooyo8"] +atlas = ExtResource("1_rkxvd") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i4jc"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcidy"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00grj"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8kvu"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8svg"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ifc"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63j30"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtm6s"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygros"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yles8"] +atlas = ExtResource("1_rkxvd") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adrej"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r76hq"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5yll"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wu3v"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw17h"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dhbh"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp3gb"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0blo8"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjjtg"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5b61"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj1p6"] +atlas = ExtResource("1_rkxvd") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olex6"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmnnt"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgoa1"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r62bb"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjql3"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmwys"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqsxx"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ct5xj"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u7sp"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wx54"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cdfq"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6b63"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bytq"] +atlas = ExtResource("1_rkxvd") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdum3"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g2k1"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8odhj"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1bi4"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1st4"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aokd"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q04r8"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqgaj"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdsth"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifpjf"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oixkd"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5py7s"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqodd"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul0nl"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qq6on"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etk1b"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcnmi"] +atlas = ExtResource("1_rkxvd") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffats"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hteg3"] +atlas = ExtResource("1_rkxvd") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmgc5"] +atlas = ExtResource("1_rkxvd") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqi3y"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqvba"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqhfe"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8t2u"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7768"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5c1q"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v17rs"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23mhq"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5la2"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huhvq"] +atlas = ExtResource("1_rkxvd") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5th1g"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80c1c"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms1t4"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5m1p"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eul2b"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhp3u"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xnse"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea1rl"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq27g"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iphl4"] +atlas = ExtResource("1_rkxvd") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pufb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n0hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg78k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6835p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooyo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i4jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcidy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00grj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8kvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8svg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ifc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63j30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtm6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygros") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yles8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adrej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r76hq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5yll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wu3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw17h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dhbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp3gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0blo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjjtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5b61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj1p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olex6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmnnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgoa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r62bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjql3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmwys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqsxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ct5xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u7sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wx54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cdfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6b63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bytq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdum3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g2k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8odhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1bi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1st4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aokd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q04r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqgaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdsth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifpjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oixkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5py7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqodd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul0nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qq6on") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_etk1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcnmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffats") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hteg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmgc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqi3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqvba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqhfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8t2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7768") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5c1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v17rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23mhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5la2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huhvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5th1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80c1c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms1t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5m1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eul2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhp3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xnse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea1rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq27g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iphl4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_maw.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_maw.tres new file mode 100644 index 0000000..7f23e4e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_maw.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://bnpq44kr37ybk"] + +[ext_resource type="Texture2D" uid="uid://qngontqkmi2x" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png" id="1_h4tin"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oof3i"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axqy4"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfium"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imqaw"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sug5g"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajlxy"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vf6x"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4ggn"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acri5"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1qtr"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tf2n"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4q11"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4vhm"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yee0k"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhbi7"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fxne"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjk1q"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tt5f"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j54l0"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv261"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6roq"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgqul"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy4en"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3dwu"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogrsb"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk66j"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmltd"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iu6b"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj0gd"] +atlas = ExtResource("1_h4tin") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1g86"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2pbn"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4no7"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fbg4"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olg0g"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dw5s"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikj4s"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovuso"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eswsj"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pva8e"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klu6d"] +atlas = ExtResource("1_h4tin") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hq2v"] +atlas = ExtResource("1_h4tin") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jy0c"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usdlx"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu6nn"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqkq7"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01wel"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mfi5"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73lg5"] +atlas = ExtResource("1_h4tin") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3tuv"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv7qg"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ile0g"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fidf5"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rdmc"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqa53"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcar3"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jryn"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx3jk"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkniy"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftu0f"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4yks"] +atlas = ExtResource("1_h4tin") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oof3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axqy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfium") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imqaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sug5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajlxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vf6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4ggn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acri5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1qtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tf2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4q11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4vhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yee0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhbi7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fxne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjk1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tt5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j54l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv261") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6roq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgqul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy4en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3dwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogrsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk66j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmltd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iu6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj0gd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1g86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2pbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4no7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fbg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olg0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dw5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikj4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovuso") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eswsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pva8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klu6d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hq2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jy0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usdlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu6nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqkq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01wel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mfi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73lg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3tuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv7qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ile0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fidf5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rdmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqa53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcar3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jryn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx3jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkniy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftu0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4yks") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rcannon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rcannon.tres new file mode 100644 index 0000000..0427391 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rcannon.tres @@ -0,0 +1,475 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://dj2gvw2ujmvir"] + +[ext_resource type="Texture2D" uid="uid://b6qlydwn1hcyr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png" id="1_w6424"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nqu2"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kr17"] +atlas = ExtResource("1_w6424") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqo8i"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsnll"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2xml"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggmst"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30hvb"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gftrv"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht6sm"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqoa1"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fyd2"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnc72"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj74c"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o46r"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q281"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61dot"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stpha"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_didtk"] +atlas = ExtResource("1_w6424") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55j1p"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c47ke"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edxou"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyvx1"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbr7w"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stn46"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyv3m"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwnkw"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqr0i"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wns6o"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu32w"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nu5o"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55dim"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmwaq"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0icv"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypd5e"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0g41"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgadn"] +atlas = ExtResource("1_w6424") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcm6i"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk8hp"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33g36"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jr4m"] +atlas = ExtResource("1_w6424") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia3uy"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jt03"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_453eg"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pryka"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewbrc"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnc6e"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioakt"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u17h"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qurfp"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voobj"] +atlas = ExtResource("1_w6424") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1spu0"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru1pp"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doqs2"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8s8c"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eob4p"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_603f6"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t00i"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7smb"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6pte"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq32s"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0njx"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waebr"] +atlas = ExtResource("1_w6424") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nqu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kr17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqo8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsnll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2xml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggmst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30hvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gftrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht6sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqoa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fyd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnc72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj74c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o46r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q281") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61dot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stpha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_didtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55j1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c47ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edxou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyvx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbr7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stn46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyv3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwnkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqr0i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wns6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu32w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nu5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55dim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmwaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0icv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypd5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0g41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgadn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcm6i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk8hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33g36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jr4m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia3uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jt03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_453eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pryka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewbrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnc6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioakt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u17h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qurfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voobj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1spu0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru1pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doqs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8s8c") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eob4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_603f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t00i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7smb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6pte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq32s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0njx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waebr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rchassis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rchassis.tres new file mode 100644 index 0000000..754cb12 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rchassis.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://bsgbfkysn7gkd"] + +[ext_resource type="Texture2D" uid="uid://bpnjyuyju333m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png" id="1_x14te"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw404"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxffc"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi8if"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x03mj"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y2h5"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k6r7"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl6js"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt1hl"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fax1q"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duiff"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd0jy"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coo7e"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxvlw"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oagvf"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u6pu"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2quaq"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2jrw"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crgnf"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmyo3"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5vn7"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhpwj"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3gi2"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs0jo"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1pn4"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv5gl"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh3oy"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nibmw"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6emy"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gmxx"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cncq5"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4agg"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyx66"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kd4v"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twu44"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u1t3"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73ltu"] +atlas = ExtResource("1_x14te") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxcsv"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw0tu"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfyw8"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1xu2"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqykm"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqptt"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keign"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ff6b"] +atlas = ExtResource("1_x14te") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4ggw"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a36dj"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ev4u"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8a6x"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhc80"] +atlas = ExtResource("1_x14te") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g2xj"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75unn"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaty6"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvowd"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra5t1"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_135el"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dc1e"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woiaw"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g2u6"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs10j"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyhs0"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibuo5"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrkc7"] +atlas = ExtResource("1_x14te") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw404") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxffc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi8if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x03mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y2h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k6r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl6js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt1hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fax1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duiff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd0jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coo7e") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxvlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oagvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u6pu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2quaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2jrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crgnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmyo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5vn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhpwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3gi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs0jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1pn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv5gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh3oy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nibmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6emy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gmxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cncq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4agg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyx66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kd4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twu44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u1t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73ltu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxcsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw0tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfyw8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1xu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqykm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqptt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_keign") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ff6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4ggw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a36dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ev4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8a6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhc80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g2xj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75unn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaty6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvowd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra5t1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_135el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dc1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woiaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g2u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs10j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyhs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibuo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrkc7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rhelm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rhelm.tres new file mode 100644 index 0000000..87fcab5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rhelm.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://d1mu50jyhu0w2"] + +[ext_resource type="Texture2D" uid="uid://bfelgpfkjsod7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png" id="1_1l5fv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vak6j"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phavh"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fprjl"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdhba"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehe5r"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhqw3"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7p0s"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gotgs"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6rhe"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xveo7"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8wat"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cph1f"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7yc0"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qo67"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_macgf"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2bx6"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u43jm"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afbtq"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayieo"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j2hi"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylkdy"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkred"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okfha"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrkkk"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vviho"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_860ic"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd3wt"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d40f"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3l5v"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0pgf"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2pfs"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4a1y"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tegxc"] +atlas = ExtResource("1_1l5fv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe5pi"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x58ae"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px10m"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi08b"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxsal"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6r1c"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4qhj"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5yv7"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsoql"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1l8"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sl18"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shj3q"] +atlas = ExtResource("1_1l5fv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spryq"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an6ay"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r06r5"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grfsy"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nu1b"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tupi6"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dtkq"] +atlas = ExtResource("1_1l5fv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u6bq"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvgl6"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whj3u"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh0hq"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju4pw"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be0ns"] +atlas = ExtResource("1_1l5fv") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vak6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phavh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fprjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdhba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehe5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhqw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7p0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gotgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6rhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xveo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8wat") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cph1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7yc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qo67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_macgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2bx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u43jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afbtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayieo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j2hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylkdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkred") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okfha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrkkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vviho") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_860ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd3wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d40f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3l5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0pgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2pfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4a1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tegxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe5pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x58ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px10m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi08b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxsal") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6r1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4qhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5yv7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsoql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sl18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shj3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spryq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an6ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r06r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grfsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nu1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tupi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dtkq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u6bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvgl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whj3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh0hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju4pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be0ns") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsuper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsuper.tres new file mode 100644 index 0000000..5938c1d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsuper.tres @@ -0,0 +1,629 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://bfbc38bdou1t1"] + +[ext_resource type="Texture2D" uid="uid://bmfgxcsoqqey3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png" id="1_712ew"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5m14"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0hpa"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtm5l"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vphgw"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x36o7"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dxiu"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp31t"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilsku"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jygak"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w50b"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc4m7"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx6oh"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owrxv"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71k03"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx1ih"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de7y5"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23j3h"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl74e"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utbtc"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlyx0"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpbld"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1rfw"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgmhy"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puflu"] +atlas = ExtResource("1_712ew") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bck2o"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oppj"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qtwv"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5md3e"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3jil"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hw7y"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xakxu"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1uxv"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5p7t"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujeqd"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tngws"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0g6r"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e67de"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62q3r"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5lbf"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpo68"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxiur"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye438"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1cpn"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jom7h"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebrxy"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evwx8"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr4a8"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckgxe"] +atlas = ExtResource("1_712ew") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsplj"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys103"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3guf"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piyah"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03f1w"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3hnb"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufuk7"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsqti"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tarj5"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbs6t"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfirn"] +atlas = ExtResource("1_712ew") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io1h4"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujuno"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jja7x"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ifat"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7ggx"] +atlas = ExtResource("1_712ew") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qesgg"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt8en"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kel8i"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc86w"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p66s"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54ekc"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_587jk"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uesn"] +atlas = ExtResource("1_712ew") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2e6g"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyym0"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dr7i"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2qbf"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg5md"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn0bj"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oao6i"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmhxo"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11sgv"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cikob"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpky0"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wvaf"] +atlas = ExtResource("1_712ew") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5m14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0hpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtm5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vphgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x36o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dxiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp31t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilsku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jygak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w50b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc4m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx6oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owrxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71k03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx1ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de7y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23j3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl74e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utbtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlyx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpbld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1rfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgmhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puflu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bck2o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oppj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qtwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5md3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3jil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hw7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xakxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1uxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5p7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujeqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tngws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0g6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e67de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62q3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5lbf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpo68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxiur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye438") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1cpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jom7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebrxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evwx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr4a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckgxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsplj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys103") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3guf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piyah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03f1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3hnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufuk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsqti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tarj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbs6t") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfirn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io1h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujuno") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jja7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ifat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7ggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qesgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt8en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kel8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc86w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p66s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54ekc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_587jk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uesn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2e6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyym0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dr7i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2qbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg5md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn0bj") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oao6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmhxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11sgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cikob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpky0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wvaf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsword.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsword.tres new file mode 100644 index 0000000..43d07b5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rsword.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://dtp24purraoqf"] + +[ext_resource type="Texture2D" uid="uid://cmnn6qw6e3erp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png" id="1_vkwdp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4jao"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cc3q"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmhol"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdw6g"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyqt8"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emjy6"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0si8v"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o6rf"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udy5r"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42nks"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqrs6"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s140o"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgrur"] +atlas = ExtResource("1_vkwdp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsn8j"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7kcx"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r3dj"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bjqt"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lm5i7"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt27v"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnp1i"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmcj8"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4hvq"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trrcg"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryc01"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33w1u"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_488et"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giwwq"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1fuj"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3if6u"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwnpu"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgskp"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4q1o"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8vuo"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3dm1"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdrj7"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7ql4"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr1g7"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6delj"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mgiq"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnp7m"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhhbc"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqqxe"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5xob"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlj4h"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jkle"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bebix"] +atlas = ExtResource("1_vkwdp") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84283"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihx7k"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hk4u"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aclr"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1fsd"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wn3r"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb8r0"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a54an"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8htv"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu6jh"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20flu"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1uhn"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkw3k"] +atlas = ExtResource("1_vkwdp") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btnb0"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlwwq"] +atlas = ExtResource("1_vkwdp") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ko3vr"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ski86"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gn0d"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgs6m"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn1yg"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgdnn"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h6a8"] +atlas = ExtResource("1_vkwdp") +region = Rect2(324, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4jao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cc3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmhol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdw6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyqt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emjy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0si8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o6rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udy5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42nks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqrs6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s140o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgrur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsn8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7kcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r3dj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bjqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lm5i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt27v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnp1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmcj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4hvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trrcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryc01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33w1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_488et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giwwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1fuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3if6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwnpu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgskp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4q1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8vuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3dm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdrj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7ql4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr1g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6delj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mgiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnp7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhhbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqqxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5xob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlj4h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jkle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bebix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84283") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihx7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hk4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aclr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1fsd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wn3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb8r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a54an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8htv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu6jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20flu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1uhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkw3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btnb0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlwwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ko3vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ski86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gn0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgs6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn1yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgdnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h6a8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rwing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rwing.tres new file mode 100644 index 0000000..ff2f474 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mechaz0rwing.tres @@ -0,0 +1,510 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://backn460x8kw8"] + +[ext_resource type="Texture2D" uid="uid://bjfqpjxoic3kb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png" id="1_8xcyk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3agkw"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoc3o"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgyap"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jraii"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5epul"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3pdk"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeoso"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wf8v"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8i00"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edxhd"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7t41"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0i1i"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5111r"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2x5j"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hpv1"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82oeo"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2edr"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85bej"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq0ov"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjs48"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m537t"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtphv"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54d7n"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr46k"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hodo"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbc7t"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmp2i"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qobtc"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5r5e"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3x75"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5t73"] +atlas = ExtResource("1_8xcyk") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn1hx"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4cpu"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0anwk"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66wji"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i23xp"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ootfb"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qeb0"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inwc8"] +atlas = ExtResource("1_8xcyk") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6lcb"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55bn0"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6g81"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fisra"] +atlas = ExtResource("1_8xcyk") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3psca"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhv02"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7pkw"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qswqe"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h887h"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hitq"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bt20"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btnu0"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yboex"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8odqp"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb7ot"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6b3k"] +atlas = ExtResource("1_8xcyk") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3byn7"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iys8x"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsked"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkiww"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg30t"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u1gx"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0lt6"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxiqo"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wryuo"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lriwm"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsd5r"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avvdo"] +atlas = ExtResource("1_8xcyk") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3agkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoc3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgyap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jraii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5epul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3pdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeoso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wf8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8i00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edxhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7t41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0i1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5111r") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2x5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hpv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82oeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2edr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85bej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq0ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjs48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m537t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtphv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54d7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr46k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hodo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbc7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmp2i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qobtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5r5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3x75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5t73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn1hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4cpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0anwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66wji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i23xp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ootfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qeb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inwc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6lcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55bn0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6g81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fisra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3psca") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhv02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7pkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qswqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h887h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hitq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bt20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btnu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yboex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8odqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb7ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6b3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3byn7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iys8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsked") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkiww") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg30t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u1gx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0lt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxiqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wryuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lriwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsd5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avvdo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_meltdown.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_meltdown.tres new file mode 100644 index 0000000..1c077a6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_meltdown.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://dpenyrecx2mb0"] + +[ext_resource type="Texture2D" uid="uid://k10t1rwliboc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png" id="1_a48q7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd1vm"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5gxl"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u84yw"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvlbp"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7l5j"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijsnm"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e50yg"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbr13"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txu0x"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fsy6"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfaok"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_781tn"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4030"] +atlas = ExtResource("1_a48q7") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5e0p"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k7p1"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlws4"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epquq"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v20rg"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtcys"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5mop"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi24f"] +atlas = ExtResource("1_a48q7") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xdi3"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy16k"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yisol"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syqkc"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ros"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg504"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r47gi"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7jv1"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wxfa"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygjdg"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jkhs"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7pnh"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk4ml"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oleln"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfi2l"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gxh0"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlu2v"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orqat"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4s61"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v6nl"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp2ue"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbmlb"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ofjt"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opc10"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt6w8"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0huf"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wdxa"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfi84"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rwjk"] +atlas = ExtResource("1_a48q7") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v61n"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hor1m"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6mw5"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubvs0"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6wpb"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umsdx"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3pcg"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tr2m"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md6sl"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_277rw"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcv5s"] +atlas = ExtResource("1_a48q7") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i23l3"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2esy6"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hvfh"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsrhr"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ox6v"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gms7"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bury"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqnak"] +atlas = ExtResource("1_a48q7") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bkhj"] +atlas = ExtResource("1_a48q7") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te0n6"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sqi1"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tykcq"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsp8o"] +atlas = ExtResource("1_a48q7") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e64a"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrdkn"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ace"] +atlas = ExtResource("1_a48q7") +region = Rect2(726, 605, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd1vm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5gxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u84yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvlbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7l5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijsnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e50yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbr13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txu0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fsy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfaok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_781tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4030") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5e0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k7p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlws4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epquq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v20rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtcys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5mop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi24f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xdi3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy16k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yisol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syqkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ros") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg504") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r47gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7jv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygjdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jkhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7pnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk4ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oleln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfi2l") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gxh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlu2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orqat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4s61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v6nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp2ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbmlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ofjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opc10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt6w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0huf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wdxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfi84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rwjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v61n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hor1m") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6mw5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubvs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6wpb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_umsdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3pcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tr2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md6sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_277rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcv5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i23l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2esy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hvfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsrhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ox6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gms7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bury") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqnak") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bkhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te0n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sqi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tykcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsp8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e64a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrdkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ace") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarcanelimiter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarcanelimiter.tres new file mode 100644 index 0000000..405bf87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarcanelimiter.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://htrec4irffxx"] + +[ext_resource type="Texture2D" uid="uid://b0nji06kk1k1j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png" id="1_3b1yk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcpdw"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1ri3"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vx7h"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwu0r"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkia0"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70ryg"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oesae"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q538"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24thv"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xxkl"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brw7y"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l73uk"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ei3"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m07fb"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yfwk"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v8km"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj7iu"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfrut"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut3rm"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4om5a"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srj5d"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyoeo"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r4be"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6slps"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82xwa"] +atlas = ExtResource("1_3b1yk") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa3ok"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhbax"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4do2t"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsoxh"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_653uw"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxgla"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50m8g"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cyny"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q5f3"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcowa"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cslrh"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrpox"] +atlas = ExtResource("1_3b1yk") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3px12"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq8qm"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_salcj"] +atlas = ExtResource("1_3b1yk") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k5xi"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yvor"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jfq1"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6qlf"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qtev"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxn64"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr445"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbnly"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3txf5"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0g0q"] +atlas = ExtResource("1_3b1yk") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd5wl"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3to35"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axwtb"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61848"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rai7o"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unk8h"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3x4q"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqc24"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kqkd"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkp0m"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0b8p"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmak3"] +atlas = ExtResource("1_3b1yk") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gev1n"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j63jl"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl8mo"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jfqs"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joi1d"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tf7g"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufrxc"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka56e"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0dj6"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iprw6"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlfvd"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cy1r"] +atlas = ExtResource("1_3b1yk") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcpdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1ri3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vx7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwu0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkia0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70ryg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oesae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q538") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24thv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xxkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brw7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l73uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ei3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m07fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yfwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v8km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj7iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfrut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut3rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4om5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srj5d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyoeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r4be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6slps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82xwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa3ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhbax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4do2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsoxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_653uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxgla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50m8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cyny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q5f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcowa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cslrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrpox") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3px12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq8qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_salcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k5xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yvor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jfq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6qlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qtev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxn64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr445") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbnly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3txf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0g0q") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd5wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3to35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axwtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61848") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rai7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unk8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3x4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqc24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kqkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkp0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0b8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmak3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gev1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j63jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl8mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jfqs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_joi1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tf7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufrxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka56e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0dj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iprw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlfvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cy1r") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarchonspellbinder.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarchonspellbinder.tres new file mode 100644 index 0000000..249d9a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercarchonspellbinder.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://b56g2dybgvd68"] + +[ext_resource type="Texture2D" uid="uid://cu741prhgt3jb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png" id="1_s6880"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8jx7"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd4mc"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c38xt"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lcuq"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlku0"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wobnt"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkh5a"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfw0r"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8toda"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7q3v"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cgrup"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4a8t"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xctu5"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lukbe"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn2bu"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twdna"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hddo5"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbstr"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y2y7"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45dx2"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35ls2"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf7g2"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilku1"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erkeh"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5usn"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfdvi"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt7in"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4qde"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4nac"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeodw"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6vgo"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vux0c"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f83w5"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efd3p"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjbec"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g52oe"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fodoi"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpshy"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t2ub"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvskg"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lfvi"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57u7k"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avm8d"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2jo6"] +atlas = ExtResource("1_s6880") +region = Rect2(162, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a6u4"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujdic"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6ukq"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ommg"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yd7s"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gavhc"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3mx6"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3hxq"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh13m"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8o4e"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddygp"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pihid"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxr1k"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wms5j"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g8fj"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rba5v"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npawb"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6t4x"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gkw3"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o51dx"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdfiq"] +atlas = ExtResource("1_s6880") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv2ju"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trg44"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qog5g"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1stv"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yil37"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbuc0"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4jrm"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvddr"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efj6x"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvg3r"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en8g1"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cea3b"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap6ca"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lalrv"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qavtl"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3yr3"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mhjf"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgbxu"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krv8m"] +atlas = ExtResource("1_s6880") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8jx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd4mc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c38xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lcuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlku0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wobnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkh5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfw0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8toda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7q3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cgrup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4a8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xctu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lukbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn2bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twdna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hddo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbstr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y2y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45dx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35ls2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf7g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilku1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erkeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5usn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfdvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt7in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4qde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4nac") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeodw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6vgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vux0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f83w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efd3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjbec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g52oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fodoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpshy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t2ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvskg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lfvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57u7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avm8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2jo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a6u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujdic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6ukq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ommg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yd7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gavhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3mx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3hxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh13m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8o4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddygp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pihid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxr1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wms5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g8fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rba5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npawb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6t4x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gkw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o51dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdfiq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv2ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trg44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qog5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1stv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yil37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbuc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4jrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvddr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efj6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvg3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en8g1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cea3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap6ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lalrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qavtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3yr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mhjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgbxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krv8m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercazurehorn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercazurehorn.tres new file mode 100644 index 0000000..aabadcc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercazurehorn.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://ddc3yuerbfevs"] + +[ext_resource type="Texture2D" uid="uid://d0q7ferwojijl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png" id="1_lwqij"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuwtc"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2736"] +atlas = ExtResource("1_lwqij") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u67jb"] +atlas = ExtResource("1_lwqij") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf0ck"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31iwa"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjwyh"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0keuv"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a810v"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0pjm"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssnys"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clttp"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h0cs"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c2uh"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cldlx"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nijni"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgkp4"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpir"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otln0"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtpxl"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqmfh"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rto42"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4q6e"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pixr8"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1kik"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kws2g"] +atlas = ExtResource("1_lwqij") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpcvj"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6jen"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uqf3"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieaoj"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj0eo"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij1bw"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s518j"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2qyu"] +atlas = ExtResource("1_lwqij") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2xak"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1p7n"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htlql"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv36c"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln31h"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjel2"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11pm7"] +atlas = ExtResource("1_lwqij") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0soru"] +atlas = ExtResource("1_lwqij") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53x5g"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjo53"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l536c"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roo8n"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvtbf"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rci3v"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw67i"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqd04"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_renfu"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd17r"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mxun"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cp7r"] +atlas = ExtResource("1_lwqij") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lqsp"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh6lw"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpbfh"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a2fx"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcuao"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv3gh"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73h0s"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkf1u"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npr3w"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaym8"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe7ph"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6obq"] +atlas = ExtResource("1_lwqij") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuwtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2736") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u67jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf0ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31iwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjwyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0keuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a810v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0pjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssnys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clttp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h0cs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c2uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cldlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nijni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgkp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otln0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtpxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqmfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rto42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4q6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pixr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1kik") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kws2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpcvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6jen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uqf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieaoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj0eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij1bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s518j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2qyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2xak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1p7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htlql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv36c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln31h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjel2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11pm7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0soru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53x5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjo53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l536c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roo8n") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvtbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rci3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw67i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqd04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_renfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd17r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mxun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cp7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lqsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh6lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpbfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a2fx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcuao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv3gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73h0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkf1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npr3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaym8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe7ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6obq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merccaster1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merccaster1.tres new file mode 100644 index 0000000..a08b548 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merccaster1.tres @@ -0,0 +1,407 @@ +[gd_resource type="SpriteFrames" load_steps=55 format=3 uid="uid://xeq3akkbxcdm"] + +[ext_resource type="Texture2D" uid="uid://bmeaoq0nie01q" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png" id="1_quqiq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6df5n"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cn4p"] +atlas = ExtResource("1_quqiq") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg6ol"] +atlas = ExtResource("1_quqiq") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8tl6"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcxjp"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsykm"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f0h2"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js47v"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdlyq"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmj05"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ydk3"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5u0o"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh7ty"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiav3"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5tau"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00p5u"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72efw"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwde4"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwyy6"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnm0t"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tl7qj"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtboe"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pv886"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf5jp"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iv1a"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwpm0"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luxpb"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf4m5"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vccym"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqp0d"] +atlas = ExtResource("1_quqiq") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uh45"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gas2e"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sa5i"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6i2v"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnc4m"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7dj5"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alv45"] +atlas = ExtResource("1_quqiq") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryx4w"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp4ss"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dijv5"] +atlas = ExtResource("1_quqiq") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqp7w"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp78v"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5fmd"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38xdd"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uymc"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80upj"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b82d"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odkkf"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r86k1"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k12ok"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gikbg"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2fin"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3mr3"] +atlas = ExtResource("1_quqiq") +region = Rect2(0, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6df5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cn4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg6ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8tl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcxjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsykm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f0h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js47v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdlyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmj05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ydk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5u0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh7ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiav3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5tau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00p5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72efw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwde4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwyy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnm0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tl7qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtboe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pv886") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf5jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iv1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwpm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luxpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf4m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vccym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqp0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uh45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gas2e") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sa5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6i2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnc4m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7dj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alv45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryx4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp4ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dijv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqp7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp78v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5fmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38xdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uymc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80upj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b82d") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_odkkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r86k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k12ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gikbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2fin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3mr3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercdaggerkiri.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercdaggerkiri.tres new file mode 100644 index 0000000..f4aee50 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercdaggerkiri.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://cb8diqf3wtrxk"] + +[ext_resource type="Texture2D" uid="uid://dg2840d3rpjsr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png" id="1_1uuxw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rg46y"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7g6h"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id6gf"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tusbw"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgsrd"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dthba"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf30q"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c351f"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m6mi"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vha5w"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjnof"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xctwc"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i2a8"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j017e"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm78h"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv20n"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnskn"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ksw"] +atlas = ExtResource("1_1uuxw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scc58"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gofcw"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ocvh"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3q66"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhqkl"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2luf7"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdhqt"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cycep"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx2k5"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08e65"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2pbe"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc4ac"] +atlas = ExtResource("1_1uuxw") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oina7"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbsvb"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fets0"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fggk"] +atlas = ExtResource("1_1uuxw") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e6k7"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfrk8"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvmrm"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mefs5"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2jfb"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okg4l"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8uim"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh6fo"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m50by"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k2hx"] +atlas = ExtResource("1_1uuxw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ia5x"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prcxj"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kgym"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5ttp"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4epw8"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh1a2"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cihrn"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcja4"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4swd"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj4d2"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1djsv"] +atlas = ExtResource("1_1uuxw") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uxto"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rfl2"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6f0e"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qea8w"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o8iq"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5mbe"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsdg4"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkem3"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thsfq"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk4xh"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe2e2"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uonk"] +atlas = ExtResource("1_1uuxw") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rg46y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7g6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id6gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tusbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgsrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dthba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf30q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c351f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m6mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vha5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjnof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xctwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i2a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j017e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm78h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv20n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnskn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ksw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scc58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gofcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ocvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3q66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhqkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2luf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdhqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cycep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx2k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08e65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2pbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc4ac") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oina7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbsvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fets0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fggk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e6k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfrk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvmrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mefs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2jfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okg4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8uim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh6fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m50by") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k2hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ia5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prcxj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kgym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5ttp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4epw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh1a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cihrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcja4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4swd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj4d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1djsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uxto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rfl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6f0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qea8w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o8iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5mbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsdg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkem3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thsfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk4xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe2e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uonk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercflamebloodwarlock.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercflamebloodwarlock.tres new file mode 100644 index 0000000..8cdc5cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercflamebloodwarlock.tres @@ -0,0 +1,573 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://ctc1bww7t24s"] + +[ext_resource type="Texture2D" uid="uid://d0a882ga0jd7a" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png" id="1_iea64"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8k87"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5am6q"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_616hg"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql2r6"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sfxq"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou6dx"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulvnk"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ifl8"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwggp"] +atlas = ExtResource("1_iea64") +region = Rect2(273, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5xna"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7heve"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at573"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to465"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3x1u"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsilx"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ktl2"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ouoq"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppsjm"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jihog"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaqmn"] +atlas = ExtResource("1_iea64") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_der43"] +atlas = ExtResource("1_iea64") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gyyf"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stsdv"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rveh0"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rib4"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehtrx"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ockyh"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_betwk"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awvg0"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx1wt"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbc5b"] +atlas = ExtResource("1_iea64") +region = Rect2(354, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_266d4"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcuep"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycygy"] +atlas = ExtResource("1_iea64") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rbu4"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so0bp"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s423"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aic3r"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 204, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6siy"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 123, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4swqu"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 933, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avj6s"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 852, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7fqs"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 771, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aea4"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 690, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t858s"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 609, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1leab"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 528, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n77p2"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 447, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqsrt"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 366, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bt156"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 285, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ju5pm"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 204, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apgar"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 123, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwrnx"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1pdn"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1qkd"] +atlas = ExtResource("1_iea64") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa4ej"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckhsa"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xaqw"] +atlas = ExtResource("1_iea64") +region = Rect2(111, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo486"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 933, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o502r"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 852, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v4w6"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 771, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twkg5"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 690, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp21f"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 609, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spp30"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 528, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c284b"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 447, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecock"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 366, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28qge"] +atlas = ExtResource("1_iea64") +region = Rect2(81, 285, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxe1s"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 82, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcr8s"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 41, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkyxl"] +atlas = ExtResource("1_iea64") +region = Rect2(0, 0, 110, 40) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c4il"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnc11"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0j5q"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb64x"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y33lf"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08l1q"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xns"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ao3s"] +atlas = ExtResource("1_iea64") +region = Rect2(162, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8k87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5am6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_616hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql2r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sfxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou6dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulvnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ifl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwggp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5xna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7heve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at573") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to465") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3x1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsilx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ktl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ouoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppsjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jihog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaqmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_der43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gyyf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_stsdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rveh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rib4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehtrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ockyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_betwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awvg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx1wt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbc5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_266d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcuep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycygy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rbu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so0bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s423") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aic3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6siy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4swqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avj6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7fqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aea4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t858s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1leab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n77p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqsrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bt156") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ju5pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apgar") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwrnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1pdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1qkd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa4ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckhsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xaqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo486") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o502r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v4w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twkg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp21f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spp30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c284b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecock") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28qge") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxe1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcr8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkyxl") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c4il") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnc11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0j5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb64x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y33lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08l1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ao3s") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercfrostbonenaga.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercfrostbonenaga.tres new file mode 100644 index 0000000..c9d15d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercfrostbonenaga.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://dhp3vaynqhf5k"] + +[ext_resource type="Texture2D" uid="uid://i6jstgyxl23o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png" id="1_maiut"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4t1bv"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd10u"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3amgp"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lxx8"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hohvf"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjp65"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pe38"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnfht"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otabl"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38kjq"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jpyq"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so7r6"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfr3s"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsojt"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqh5"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq33g"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mfxe"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe236"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha78j"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c1lj"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_037rs"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ni7t"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwc67"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd1ir"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqhmb"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw48c"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5djn"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2jto"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osn2d"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s5be"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd423"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85eat"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lttnk"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jjxy"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7oaj"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ofa"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twyoa"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuk8p"] +atlas = ExtResource("1_maiut") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65rkd"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni6lg"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obvin"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2060"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6wtg"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2w714"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34bod"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41514"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1322"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0v1x"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7ulh"] +atlas = ExtResource("1_maiut") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx8yf"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06qk6"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1h0m"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1ogb"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywucy"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q07rw"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhd8l"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olv2w"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqpiy"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig0nt"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6lhs"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suk8c"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxop3"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7oue"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkuxu"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvkn5"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7pmb"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhnd7"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l86iy"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixq56"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_warcc"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gr17"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx4bc"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igiyd"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgrxw"] +atlas = ExtResource("1_maiut") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4t1bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd10u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3amgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lxx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hohvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjp65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pe38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnfht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otabl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38kjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jpyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so7r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfr3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsojt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dqh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq33g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mfxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe236") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha78j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c1lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_037rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ni7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwc67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd1ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqhmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw48c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5djn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2jto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osn2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s5be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd423") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85eat") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lttnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jjxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7oaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ofa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twyoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuk8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65rkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni6lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obvin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2060") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6wtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2w714") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34bod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41514") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1322") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0v1x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7ulh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx8yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06qk6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1h0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1ogb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywucy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q07rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhd8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olv2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqpiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig0nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6lhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suk8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxop3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7oue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkuxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvkn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7pmb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhnd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l86iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixq56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_warcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gr17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx4bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igiyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgrxw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgambitgirl.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgambitgirl.tres new file mode 100644 index 0000000..374e992 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgambitgirl.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://vktqhm2afg3s"] + +[ext_resource type="Texture2D" uid="uid://b0xplcp76s35i" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png" id="1_jvyid"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qkeo"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_305xm"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c1md"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnhrm"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4rkh"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmehr"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eck7s"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heh3g"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h2wj"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo77f"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkaga"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03nis"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4um8"] +atlas = ExtResource("1_jvyid") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fipw"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktveq"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvh46"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ukv"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev3nk"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sql5k"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np3sm"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ip1q"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxjr0"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cveug"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la0gq"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpaoj"] +atlas = ExtResource("1_jvyid") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhm3a"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ya7q"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upeio"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6fk1"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctbe0"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gjit"] +atlas = ExtResource("1_jvyid") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qks1m"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s44gu"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnkby"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnkcs"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyitp"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3qjl"] +atlas = ExtResource("1_jvyid") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2gs5"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blwxc"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqa3x"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k20c"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f2xs"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpow0"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qcpu"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktp5j"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c337x"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awcu2"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v17y"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpago"] +atlas = ExtResource("1_jvyid") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v3rv"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi2co"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccvnh"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckd8c"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wurb0"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m068"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvf26"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smahi"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gib7w"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg3jd"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00bke"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0ica"] +atlas = ExtResource("1_jvyid") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qkeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_305xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c1md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnhrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4rkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmehr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eck7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heh3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h2wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo77f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkaga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03nis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4um8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fipw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktveq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvh46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ukv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev3nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sql5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np3sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ip1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxjr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cveug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la0gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpaoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhm3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ya7q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_upeio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6fk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctbe0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gjit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qks1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s44gu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnkby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnkcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyitp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3qjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2gs5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blwxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqa3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k20c") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f2xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpow0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qcpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktp5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c337x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awcu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v17y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpago") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v3rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi2co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccvnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckd8c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wurb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m068") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvf26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smahi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gib7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg3jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00bke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0ica") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgrenadier.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgrenadier.tres new file mode 100644 index 0000000..324a7ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercgrenadier.tres @@ -0,0 +1,461 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://dfduvn0t4pc0l"] + +[ext_resource type="Texture2D" uid="uid://klwcsr40xmw1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png" id="1_5gny5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b7do"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgqdp"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoapg"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkaa8"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thbex"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86caf"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmu61"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnxr4"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s73lb"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1683f"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de586"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpbkm"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv3uv"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mee3x"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8j0w"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_julm7"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjpko"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggssu"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2je62"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf1oc"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdy43"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlfqw"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nhi7"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtmax"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io280"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uq0a"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fac0w"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr761"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syg2w"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qth11"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg6qs"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dednw"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n1o3"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmw2x"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okee3"] +atlas = ExtResource("1_5gny5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m4mp"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eso6"] +atlas = ExtResource("1_5gny5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_485wd"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8iuq"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uoad"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v24lf"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6ncv"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_euo0u"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wenr5"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w71rk"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp4sf"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2hiq"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0hhn"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lispr"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 972, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p8vc"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 1006, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3d75"] +atlas = ExtResource("1_5gny5") +region = Rect2(0, 989, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4c3c"] +atlas = ExtResource("1_5gny5") +region = Rect2(17, 972, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_277cw"] +atlas = ExtResource("1_5gny5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbjls"] +atlas = ExtResource("1_5gny5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im66y"] +atlas = ExtResource("1_5gny5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtvgd"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7eq88"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ah8t4"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ackb"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ultq5"] +atlas = ExtResource("1_5gny5") +region = Rect2(243, 567, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b7do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgqdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoapg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkaa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thbex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86caf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmu61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnxr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s73lb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1683f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de586") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpbkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv3uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mee3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8j0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_julm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjpko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggssu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2je62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf1oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdy43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlfqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nhi7") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtmax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io280") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uq0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fac0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr761") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syg2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qth11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg6qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dednw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n1o3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmw2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okee3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m4mp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eso6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_485wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8iuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uoad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v24lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6ncv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_euo0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wenr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w71rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp4sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2hiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0hhn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lispr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p8vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3d75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4c3c") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_277cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbjls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im66y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtvgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7eq88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ah8t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ackb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ultq5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee1.tres new file mode 100644 index 0000000..a69563e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee1.tres @@ -0,0 +1,358 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://bft1tv78i4oup"] + +[ext_resource type="Texture2D" uid="uid://8b14qrji1teg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png" id="1_7fab5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cki7i"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k1ew"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhoyo"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47kt3"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhl60"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6cm1"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef6af"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7s0h"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piko7"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibocj"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp1bs"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4uvs"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6whw"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w8uq"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feuht"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sb8k8"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ri46"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i3nl"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhhpy"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlef8"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljbjv"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5nws"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6ss0"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmy6e"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfod2"] +atlas = ExtResource("1_7fab5") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ktrx"] +atlas = ExtResource("1_7fab5") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl5fy"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0agg"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ifdx"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnw2h"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb2wj"] +atlas = ExtResource("1_7fab5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5xjn"] +atlas = ExtResource("1_7fab5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssvxq"] +atlas = ExtResource("1_7fab5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcyv6"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb6fb"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbg53"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nkqm"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqo16"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3qfq"] +atlas = ExtResource("1_7fab5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4nqh"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty3s5"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuhko"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_img7w"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6hmn"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl2q4"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjpbc"] +atlas = ExtResource("1_7fab5") +region = Rect2(0, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cki7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k1ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhoyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47kt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhl60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6cm1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef6af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7s0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piko7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibocj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp1bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4uvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6whw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w8uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feuht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sb8k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ri46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i3nl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhhpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlef8") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljbjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5nws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6ss0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmy6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfod2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ktrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl5fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0agg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ifdx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnw2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb2wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5xjn") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssvxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcyv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb6fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbg53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nkqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqo16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3qfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4nqh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty3s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuhko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_img7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6hmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl2q4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjpbc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee2.tres new file mode 100644 index 0000000..f1897fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee2.tres @@ -0,0 +1,372 @@ +[gd_resource type="SpriteFrames" load_steps=50 format=3 uid="uid://dbjly0dftb3iw"] + +[ext_resource type="Texture2D" uid="uid://clmmpgt6y7spl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png" id="1_ksxyv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdgxq"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1lj7"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeq4t"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0dsb"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi2r8"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16yew"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ry7b"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npban"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhqyv"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdb3m"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3drk"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgaku"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahsbf"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xygy2"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fq6w"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peod7"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1siqh"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fw78"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qv4v"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq1d2"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4rpe"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8wi5"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtu7v"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e176b"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykvem"] +atlas = ExtResource("1_ksxyv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6d45"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwsoc"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf32t"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq562"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4wki"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aj5r"] +atlas = ExtResource("1_ksxyv") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swdih"] +atlas = ExtResource("1_ksxyv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_den60"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x707e"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64qla"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87b6c"] +atlas = ExtResource("1_ksxyv") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1k8"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeqpw"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em02k"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp5ld"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gexho"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq5ww"] +atlas = ExtResource("1_ksxyv") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adoi3"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4mew"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_desje"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7x2p"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idfjq"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smws0"] +atlas = ExtResource("1_ksxyv") +region = Rect2(243, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdgxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1lj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeq4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0dsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi2r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16yew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ry7b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_npban") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhqyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdb3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3drk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgaku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahsbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xygy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fq6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peod7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1siqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fw78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qv4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq1d2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4rpe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8wi5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtu7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e176b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykvem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6d45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwsoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf32t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq562") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4wki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aj5r") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_swdih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_den60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x707e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64qla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87b6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeqpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em02k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp5ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gexho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq5ww") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_adoi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4mew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_desje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7x2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idfjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smws0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee3.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee3.tres new file mode 100644 index 0000000..8d97878 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee3.tres @@ -0,0 +1,372 @@ +[gd_resource type="SpriteFrames" load_steps=50 format=3 uid="uid://cqqrop50u5pu6"] + +[ext_resource type="Texture2D" uid="uid://fnr2rcf0u5be" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png" id="1_l202i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdtcv"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhb2s"] +atlas = ExtResource("1_l202i") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jixe"] +atlas = ExtResource("1_l202i") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbxvb"] +atlas = ExtResource("1_l202i") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12pyw"] +atlas = ExtResource("1_l202i") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ii2gw"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b36o"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd8ti"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tufh1"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rt0r"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd2bs"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elvj7"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiscr"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e4ds"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otr6h"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duglm"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk66d"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr5av"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb7cs"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bqrm"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdoyg"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weof6"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwqti"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ink"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylt8v"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te3ba"] +atlas = ExtResource("1_l202i") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukt76"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoira"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_felnh"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni5k2"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0pp1"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odba7"] +atlas = ExtResource("1_l202i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm0by"] +atlas = ExtResource("1_l202i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iln0"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24lv2"] +atlas = ExtResource("1_l202i") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjbot"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5rbx"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni2w7"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5h7k"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdx7s"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y102l"] +atlas = ExtResource("1_l202i") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2obc6"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s783"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mla66"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1cev"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0yg0"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mosb8"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bge7q"] +atlas = ExtResource("1_l202i") +region = Rect2(0, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdtcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhb2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jixe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbxvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12pyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ii2gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b36o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd8ti") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tufh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rt0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd2bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elvj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiscr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e4ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otr6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duglm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk66d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr5av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb7cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bqrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdoyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weof6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwqti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ink") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylt8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te3ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukt76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoira") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_felnh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni5k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0pp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odba7") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm0by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iln0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24lv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjbot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5rbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni2w7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5h7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdx7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y102l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2obc6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s783") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mla66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1cev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0yg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mosb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bge7q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee4.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee4.tres new file mode 100644 index 0000000..7d7bd01 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmelee4.tres @@ -0,0 +1,358 @@ +[gd_resource type="SpriteFrames" load_steps=48 format=3 uid="uid://fkrnutin1vvg"] + +[ext_resource type="Texture2D" uid="uid://c1g77s41dl1jt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png" id="1_ibxfk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnhu7"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee0dp"] +atlas = ExtResource("1_ibxfk") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efjhb"] +atlas = ExtResource("1_ibxfk") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3rtt"] +atlas = ExtResource("1_ibxfk") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hewn"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ktpv"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gja7"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw7a6"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejaqx"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln41y"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nna4"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1o7h"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1phn"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8gix"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frpbw"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_564si"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydkcw"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15ige"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eii20"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_418eo"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8peq"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox3o7"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5ehr"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e5kp"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nj7yd"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn5iv"] +atlas = ExtResource("1_ibxfk") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wn1f"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ft08"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5ww7"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6hja"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xirg3"] +atlas = ExtResource("1_ibxfk") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u60sw"] +atlas = ExtResource("1_ibxfk") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3rti"] +atlas = ExtResource("1_ibxfk") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybs0w"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76cjy"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t2vb"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okd3v"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eouh2"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahj1i"] +atlas = ExtResource("1_ibxfk") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43wk7"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwa0o"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e41rw"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfcfo"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su2c6"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e66t0"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgtl2"] +atlas = ExtResource("1_ibxfk") +region = Rect2(0, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnhu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee0dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efjhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3rtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hewn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ktpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gja7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw7a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejaqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln41y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nna4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1o7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1phn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8gix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frpbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_564si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydkcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15ige") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eii20") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_418eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8peq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox3o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5ehr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e5kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nj7yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn5iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wn1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ft08") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5ww7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6hja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xirg3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u60sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3rti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybs0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76cjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t2vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okd3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eouh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahj1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43wk7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwa0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e41rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfcfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su2c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e66t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgtl2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmindwarper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmindwarper.tres new file mode 100644 index 0000000..19ebb11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercmindwarper.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://bpiu8fpbevky8"] + +[ext_resource type="Texture2D" uid="uid://b4pk5xcmn3e5u" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png" id="1_6qhsw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yog8v"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cfmp"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vyif"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xsn7"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ou06"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1jpg"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u8lg"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceorc"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qnxg"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc6on"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pck8b"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdcoa"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wiu4"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra5gi"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioxp4"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ooon"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjlki"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xji0q"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yffiq"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4acak"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls6pf"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8yc1"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywuvs"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ixj"] +atlas = ExtResource("1_6qhsw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu32k"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv1ya"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quc1e"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp4pc"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqd76"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7777"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64ngh"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6la03"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt8pi"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4h3m"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akagw"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n70r6"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1puq"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76moi"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2drk0"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueej0"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbpxd"] +atlas = ExtResource("1_6qhsw") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du2xi"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p451"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7rndv"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cq7x"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cegqm"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hicry"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25w47"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84l0s"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aul4r"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgrt0"] +atlas = ExtResource("1_6qhsw") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihmji"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tggoj"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvqck"] +atlas = ExtResource("1_6qhsw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_414jo"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6wbh"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqadw"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6yt4"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_480qg"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynm4u"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2iqm"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg2aj"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjwuj"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afdj1"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_760te"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bajo"] +atlas = ExtResource("1_6qhsw") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukhbg"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g73lb"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meyyw"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df78r"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsdwr"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yydd0"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn71d"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bwc7"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mau7n"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inu1q"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxhsu"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48qrv"] +atlas = ExtResource("1_6qhsw") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yog8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cfmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vyif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xsn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ou06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1jpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u8lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceorc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qnxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc6on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pck8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdcoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wiu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra5gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioxp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ooon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjlki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xji0q") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yffiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4acak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls6pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8yc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywuvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ixj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu32k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv1ya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quc1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp4pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqd76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7777") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64ngh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6la03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt8pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4h3m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_akagw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n70r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1puq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76moi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2drk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueej0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbpxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du2xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p451") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7rndv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cq7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cegqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hicry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25w47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84l0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aul4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgrt0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihmji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tggoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvqck") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_414jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6wbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqadw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6yt4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_480qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynm4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2iqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg2aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjwuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afdj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_760te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bajo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukhbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g73lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meyyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df78r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsdwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yydd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn71d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bwc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mau7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inu1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxhsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48qrv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercneedler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercneedler.tres new file mode 100644 index 0000000..1fca8d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercneedler.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://cj76mdwytx3d0"] + +[ext_resource type="Texture2D" uid="uid://c80kq2ryu6wc3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png" id="1_1gwco"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwo3u"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0yi4"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl26x"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggyod"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksovp"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16uk8"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5exco"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgelh"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_020f3"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s5j6"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isr55"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfuwc"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqddx"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4nbw"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f6cd"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pju8o"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5dlu"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbhug"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw1wx"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blabr"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj52i"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkpmj"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17av8"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktlp0"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm7rt"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fve8u"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pviy8"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5r2j"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wu87"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj04q"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ho37"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g37wh"] +atlas = ExtResource("1_1gwco") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyewb"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gljfl"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mogni"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wv64"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7rq4"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dfnh"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agu7c"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq1a2"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r201"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbrb3"] +atlas = ExtResource("1_1gwco") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjuct"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvu0q"] +atlas = ExtResource("1_1gwco") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dd2x"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5ub2"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi3w0"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_068u3"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6724"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytj60"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1el0p"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4h0j7"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtaut"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p20ty"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2rdn"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv4j0"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddtg3"] +atlas = ExtResource("1_1gwco") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwo3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0yi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl26x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggyod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksovp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16uk8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5exco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgelh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_020f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s5j6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isr55") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfuwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqddx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4nbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f6cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pju8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5dlu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbhug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw1wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blabr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj52i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkpmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17av8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktlp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm7rt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fve8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pviy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5r2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wu87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj04q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ho37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g37wh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyewb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gljfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mogni") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wv64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7rq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dfnh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_agu7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq1a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r201") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbrb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjuct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvu0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dd2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5ub2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi3w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_068u3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6724") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytj60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1el0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4h0j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtaut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p20ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2rdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv4j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddtg3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercowlbearmage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercowlbearmage.tres new file mode 100644 index 0000000..26f25e2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercowlbearmage.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://c2flokqarvbam"] + +[ext_resource type="Texture2D" uid="uid://djmkbthjnnyfl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png" id="1_2dloh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2obw6"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xqef"] +atlas = ExtResource("1_2dloh") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryw3a"] +atlas = ExtResource("1_2dloh") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt3r6"] +atlas = ExtResource("1_2dloh") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knanu"] +atlas = ExtResource("1_2dloh") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gxgm"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ps7"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjysn"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nupoo"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b888n"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm8tl"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1unwn"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egoq0"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enr48"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giyc0"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odokc"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv60x"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25cc5"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv5yx"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0doe"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2cbw"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rknro"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxdwq"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0xtc"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfy4e"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3n01"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88ecc"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vero"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt1sj"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv3i2"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_narb6"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmte5"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42d2k"] +atlas = ExtResource("1_2dloh") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhv82"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5agy"] +atlas = ExtResource("1_2dloh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omyj5"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbqmu"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm8y8"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0uu6"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spsjv"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptad6"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf7m6"] +atlas = ExtResource("1_2dloh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xn2k"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd8as"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhhvj"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwhfu"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_polgq"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmbvn"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmpyg"] +atlas = ExtResource("1_2dloh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_choso"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrdaa"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxltu"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa6q5"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpc5u"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5oqy"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrkol"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oak65"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhsa3"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aia3g"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8etw"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra8ob"] +atlas = ExtResource("1_2dloh") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2obw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xqef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryw3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt3r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knanu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gxgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ps7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjysn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nupoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b888n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm8tl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1unwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egoq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enr48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giyc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odokc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv60x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25cc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv5yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0doe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2cbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rknro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxdwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0xtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfy4e") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3n01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88ecc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vero") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt1sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv3i2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_narb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmte5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42d2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhv82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5agy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omyj5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbqmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm8y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0uu6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spsjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptad6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf7m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xn2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd8as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhhvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwhfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_polgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmbvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmpyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_choso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrdaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxltu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa6q5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpc5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5oqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrkol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oak65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhsa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aia3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8etw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra8ob") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpirate.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpirate.tres new file mode 100644 index 0000000..7f04a28 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpirate.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://bboj2wjab87v6"] + +[ext_resource type="Texture2D" uid="uid://qvj2n3tfhxwx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png" id="1_ch6k5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4w4x"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01va6"] +atlas = ExtResource("1_ch6k5") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exu0e"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e87qn"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbvpg"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_croey"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ctju"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgl3g"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nh0a"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca1k5"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo444"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4blq8"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cysx0"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhaln"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16psx"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2jd2"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpdrr"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3wgg"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyh6k"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oytq"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnpyr"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3vs"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pudg2"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0oyj"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnbi4"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55qpc"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhphk"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gflgo"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub1sr"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpumi"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw3gl"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypfcv"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hwfv"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qnm8"] +atlas = ExtResource("1_ch6k5") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmsk6"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iprcs"] +atlas = ExtResource("1_ch6k5") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoxqw"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7pxd"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rye16"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nf7b"] +atlas = ExtResource("1_ch6k5") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs864"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olnbq"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkwci"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs0xg"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1lwi"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqamr"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2pa7"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj8ik"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76r8j"] +atlas = ExtResource("1_ch6k5") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap0kk"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0s5me"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvmvw"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c40qf"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67nfv"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8076w"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjgch"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3elk"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i77p4"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m00vl"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moe14"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obtjs"] +atlas = ExtResource("1_ch6k5") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4w4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01va6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exu0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e87qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbvpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_croey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ctju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgl3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nh0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca1k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo444") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4blq8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cysx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhaln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16psx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2jd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpdrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3wgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyh6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oytq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnpyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pudg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0oyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnbi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55qpc") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhphk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gflgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub1sr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpumi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw3gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypfcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hwfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qnm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmsk6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iprcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoxqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7pxd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rye16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nf7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs864") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olnbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkwci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs0xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1lwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqamr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2pa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj8ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76r8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap0kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0s5me") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvmvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c40qf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_67nfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8076w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjgch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3elk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i77p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m00vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moe14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obtjs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpiratebeast.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpiratebeast.tres new file mode 100644 index 0000000..d5488e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercpiratebeast.tres @@ -0,0 +1,365 @@ +[gd_resource type="SpriteFrames" load_steps=49 format=3 uid="uid://dqkk5ll00wrx7"] + +[ext_resource type="Texture2D" uid="uid://dik8qhwx4n4hi" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png" id="1_kl4ur"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_60xgy"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecrxb"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw5yn"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt2gi"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdl01"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmprw"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1he33"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h74h"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxayj"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo47y"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4n8t"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv0ip"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rvjr"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayyyf"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjwr2"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v27g8"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78skl"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy21n"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2iu1"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pdyk"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fb3x1"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikfpe"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilwsq"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fswb"] +atlas = ExtResource("1_kl4ur") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b530o"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crvnl"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trs4c"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdv26"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq7pc"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrg4y"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd0ul"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sst46"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v44r"] +atlas = ExtResource("1_kl4ur") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thsih"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqf25"] +atlas = ExtResource("1_kl4ur") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n44v4"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_680yc"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2naf"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v47bv"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuopk"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxfmj"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wulj"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glhyd"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_447sk"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds4wk"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qara7"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_payfb"] +atlas = ExtResource("1_kl4ur") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_60xgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecrxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw5yn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt2gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdl01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmprw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1he33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h74h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxayj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo47y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4n8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv0ip") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rvjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayyyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjwr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v27g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78skl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy21n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2iu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pdyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fb3x1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikfpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilwsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fswb") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b530o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crvnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trs4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdv26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq7pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrg4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd0ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sst46") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v44r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thsih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqf25") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n44v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_680yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2naf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v47bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuopk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxfmj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wulj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glhyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_447sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds4wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qara7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_payfb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercranged1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercranged1.tres new file mode 100644 index 0000000..42f8cbf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercranged1.tres @@ -0,0 +1,405 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://47b1d2daq33v"] + +[ext_resource type="Texture2D" uid="uid://cxrxbkx5on40y" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png" id="1_un1cs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mu2w"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bff7"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i224q"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x24yv"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d86d4"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s64s5"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdfgu"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80885"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r7i3"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i14sk"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlap3"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5ida"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tngqv"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4clb"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lss58"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfsnr"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohy1m"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17l66"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki53l"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8udgx"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16eor"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac6p5"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj5ob"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87320"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lskm6"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apsub"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjceq"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8asu"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osfi6"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbvm6"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch5r3"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hffr8"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwo00"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mnlo"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veual"] +atlas = ExtResource("1_un1cs") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_215ds"] +atlas = ExtResource("1_un1cs") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wb8q"] +atlas = ExtResource("1_un1cs") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48ae5"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpjnc"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5de4f"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5hvw"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixeci"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ire1"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vknm"] +atlas = ExtResource("1_un1cs") +region = Rect2(17, 486, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_370be"] +atlas = ExtResource("1_un1cs") +region = Rect2(34, 486, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukram"] +atlas = ExtResource("1_un1cs") +region = Rect2(0, 486, 16, 16) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfe6k"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxsun"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpbxl"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c481"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2u6i"] +atlas = ExtResource("1_un1cs") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kvco"] +atlas = ExtResource("1_un1cs") +region = Rect2(405, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mu2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bff7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i224q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x24yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d86d4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s64s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdfgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80885") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r7i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i14sk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlap3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5ida") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tngqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4clb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lss58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfsnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohy1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17l66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki53l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8udgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16eor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac6p5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj5ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87320") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lskm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apsub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjceq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8asu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osfi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbvm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch5r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hffr8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwo00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mnlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veual") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_215ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wb8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48ae5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpjnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5de4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5hvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixeci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ire1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vknm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_370be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukram") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfe6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxsun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpbxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c481") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2u6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kvco") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercshieldoracle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercshieldoracle.tres new file mode 100644 index 0000000..f32cc22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercshieldoracle.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://drhwcibrodepx"] + +[ext_resource type="Texture2D" uid="uid://b2sxm8kg4eiv1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png" id="1_a86nh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bihl"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58brx"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trhxc"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew4tn"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp8v4"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7hnv"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gva17"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln8ma"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljdbf"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6th8"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxwn5"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgpra"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fomc6"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tmlm"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atqtq"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw63l"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orh6g"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v6si"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww8qe"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftcdj"] +atlas = ExtResource("1_a86nh") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlop5"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8t5w"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rsn3"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mv8nr"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veyth"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibs2o"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0xhy"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6y2f"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6hqa"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e72uf"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uua4"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhn1f"] +atlas = ExtResource("1_a86nh") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1a4xf"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3fkv"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oghn"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id6tt"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpku1"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ltv4"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mng8a"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o62cl"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt8y0"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_237wr"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3ptk"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vgsy"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlm6g"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3gdr"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdqw3"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fems5"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7on73"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3x5j"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cixm"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3cpy"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27sje"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8vod"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5k4r"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37b54"] +atlas = ExtResource("1_a86nh") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsm6s"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5w6a"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro0nk"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5vgx"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bqru"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwrhh"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_im6df"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qxrs"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjejj"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e2jd"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qab37"] +atlas = ExtResource("1_a86nh") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3m5y"] +atlas = ExtResource("1_a86nh") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0da7p"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdfm0"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtor2"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3tyk"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duj08"] +atlas = ExtResource("1_a86nh") +region = Rect2(405, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bihl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58brx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trhxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew4tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp8v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7hnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gva17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln8ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljdbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6th8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxwn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgpra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fomc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tmlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atqtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw63l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orh6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v6si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww8qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftcdj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlop5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8t5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rsn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mv8nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veyth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibs2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0xhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6y2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6hqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e72uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uua4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhn1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1a4xf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3fkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oghn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id6tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpku1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ltv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mng8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o62cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt8y0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_237wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3ptk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vgsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlm6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3gdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdqw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fems5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7on73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3x5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cixm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3cpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27sje") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8vod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5k4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37b54") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsm6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5w6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro0nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5vgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bqru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwrhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_im6df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qxrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjejj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e2jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qab37") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3m5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0da7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdfm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtor2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3tyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duj08") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsightlessfarseer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsightlessfarseer.tres new file mode 100644 index 0000000..3325050 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsightlessfarseer.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://bc87kmhejb306"] + +[ext_resource type="Texture2D" uid="uid://d2qvqvj4xc7j4" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png" id="1_wmsqg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_chgpm"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddgel"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey7h5"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tej5"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkbqs"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd5wk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odgpm"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmvlk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8rfr"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpron"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4y46"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flq38"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y8sj"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4pll"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lf2i"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pddpo"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gi4h"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txkl7"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0oop"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jme4o"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnepw"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tlnk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5g70"] +atlas = ExtResource("1_wmsqg") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w6sq"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clx2y"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3me4"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o8t1"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8xek"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffwrn"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c75vk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk608"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgw86"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuqr6"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnit4"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sg1iu"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08toh"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqlq7"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvkf2"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c1b7"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sr0m"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svpw2"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qv32j"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmpe3"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3ioh"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqiji"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyibk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk627"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uorck"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqiyf"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt2vb"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r427o"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1u6o"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06qbu"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgdix"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ivg1"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88qxb"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djyv1"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtmkg"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p44w"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brctd"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_basi0"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhg8g"] +atlas = ExtResource("1_wmsqg") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5xv3"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drttf"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylocs"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voalw"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwi4i"] +atlas = ExtResource("1_wmsqg") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p837"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxqbg"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfsbw"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rc3j"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x76t6"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3nmb"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdju7"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nwnk"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25lim"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk4wv"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uoi1o"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07kqj"] +atlas = ExtResource("1_wmsqg") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv6rp"] +atlas = ExtResource("1_wmsqg") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q0s5"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpurf"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drtwy"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7leil"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3lta"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r0bn"] +atlas = ExtResource("1_wmsqg") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nb5p"] +atlas = ExtResource("1_wmsqg") +region = Rect2(405, 891, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_chgpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddgel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey7h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tej5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkbqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd5wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odgpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmvlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8rfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpron") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4y46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flq38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y8sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4pll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lf2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pddpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gi4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txkl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0oop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jme4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnepw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tlnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5g70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w6sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clx2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3me4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o8t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8xek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffwrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c75vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk608") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgw86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuqr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnit4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sg1iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08toh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqlq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvkf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c1b7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sr0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svpw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qv32j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmpe3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3ioh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqiji") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyibk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk627") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uorck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqiyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt2vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r427o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1u6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06qbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgdix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ivg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88qxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djyv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtmkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p44w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brctd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_basi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhg8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5xv3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_drttf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylocs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voalw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwi4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p837") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxqbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfsbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rc3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x76t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3nmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdju7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nwnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25lim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uoi1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07kqj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv6rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q0s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpurf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drtwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7leil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3lta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r0bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nb5p") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsongweaver.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsongweaver.tres new file mode 100644 index 0000000..55649e9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsongweaver.tres @@ -0,0 +1,428 @@ +[gd_resource type="SpriteFrames" load_steps=58 format=3 uid="uid://bfj22v7paqr7n"] + +[ext_resource type="Texture2D" uid="uid://dtd212mifpwam" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png" id="1_uglic"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5j88"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyvv1"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ccnuy"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tss8i"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckd3k"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnd0q"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxd6s"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrn0y"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr6fm"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpek"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ma78y"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhw7k"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4suwn"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by2y0"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6214h"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77d1h"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4wug"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjccp"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv5us"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbumc"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53fa7"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utcvp"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c03ky"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggdss"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hrrq"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvq2n"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mtej"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ndx8"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkvys"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j4q2"] +atlas = ExtResource("1_uglic") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaadx"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvro5"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq2to"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otjgi"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pov5v"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18gxo"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2hfl"] +atlas = ExtResource("1_uglic") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aevli"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjtui"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfovk"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0yxc"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nm00"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxglc"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dijw3"] +atlas = ExtResource("1_uglic") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3arx8"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28dlh"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5qa2"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l8q0"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkomf"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l55di"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sl64"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2obk0"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7htfd"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcwqj"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ii5w"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lehar"] +atlas = ExtResource("1_uglic") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5j88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyvv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ccnuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tss8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckd3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnd0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxd6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrn0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr6fm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ma78y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhw7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4suwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by2y0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6214h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77d1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4wug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjccp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv5us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbumc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53fa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utcvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c03ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggdss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hrrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvq2n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mtej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ndx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkvys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j4q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaadx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvro5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq2to") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otjgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pov5v") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_18gxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2hfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aevli") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjtui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfovk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0yxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nm00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxglc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dijw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3arx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28dlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5qa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l8q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkomf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l55di") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sl64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2obk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7htfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcwqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ii5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lehar") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsunseer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsunseer.tres new file mode 100644 index 0000000..e840318 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsunseer.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://hqsa0tes6xky"] + +[ext_resource type="Texture2D" uid="uid://v3wnjtvwa00k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png" id="1_ky8yc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ieo"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpwia"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avumk"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j2x3"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in3eq"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xujt"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkjkl"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4t2p"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq65s"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0fdn"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdngt"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl1n1"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e18cj"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhqmx"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcucm"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdf37"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myq6b"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvyli"] +atlas = ExtResource("1_ky8yc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyttb"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq7a5"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jny0u"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi8uf"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hly6"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mw7j"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4m3d"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcjmo"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl7vb"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ba1q"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1owwn"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a8jf"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7csoj"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2icpb"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j32vu"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4h5d"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spvnx"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8smh0"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpc52"] +atlas = ExtResource("1_ky8yc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cgxk"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pewm"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrqkr"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lk4r"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dewl6"] +atlas = ExtResource("1_ky8yc") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ox3"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dota7"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fviy6"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y7ii"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_074qc"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxs6m"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bavf"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24ies"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y50p8"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqvk0"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x3es"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwk25"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no2o3"] +atlas = ExtResource("1_ky8yc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dusum"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r58w3"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nos57"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3a30"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vbl4"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpt06"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rqdk"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyro2"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itnbj"] +atlas = ExtResource("1_ky8yc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv5aa"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a46ir"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6fv4"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5dlt"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkfth"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7usj"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwxwh"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eat7"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2nlw"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2w4f"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qp06"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ykv"] +atlas = ExtResource("1_ky8yc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ieo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpwia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avumk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j2x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in3eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xujt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkjkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4t2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq65s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0fdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdngt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl1n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e18cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhqmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdf37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myq6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvyli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyttb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq7a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jny0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi8uf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hly6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mw7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4m3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcjmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl7vb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ba1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1owwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a8jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7csoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2icpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j32vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4h5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spvnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8smh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpc52") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cgxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pewm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrqkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lk4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dewl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ox3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dota7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fviy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y7ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_074qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxs6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bavf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24ies") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y50p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqvk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x3es") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwk25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no2o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dusum") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r58w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nos57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3a30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vbl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpt06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rqdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyro2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itnbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv5aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a46ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6fv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5dlt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkfth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7usj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwxwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eat7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2nlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2w4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qp06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ykv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercswornavanger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercswornavanger.tres new file mode 100644 index 0000000..644bee3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercswornavanger.tres @@ -0,0 +1,482 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://dif1qpwlq77as"] + +[ext_resource type="Texture2D" uid="uid://bc2qu5wi17hlf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png" id="1_wuu6c"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ethxt"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smd5s"] +atlas = ExtResource("1_wuu6c") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_668s4"] +atlas = ExtResource("1_wuu6c") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0alu1"] +atlas = ExtResource("1_wuu6c") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cck4"] +atlas = ExtResource("1_wuu6c") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os5j2"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvf5i"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5ait"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae4n2"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jqhl"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px8nw"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qvx8"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlcpm"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33akc"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ulqq"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vojhh"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxc65"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvy7m"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3ycb"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e0o3"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsq6d"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_545eh"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fewu"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7r21"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np0sx"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wir1"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3jv4"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13fdh"] +atlas = ExtResource("1_wuu6c") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo5go"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axp8u"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bcyi"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gnkc"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h5qn"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqrgg"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6db5k"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3v07l"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hae73"] +atlas = ExtResource("1_wuu6c") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1256e"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfy11"] +atlas = ExtResource("1_wuu6c") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5c7s"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoxv3"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg6nh"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygbsm"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rif13"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wkdm"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2npl8"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh7l6"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmk6q"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwuqm"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weeab"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx7bh"] +atlas = ExtResource("1_wuu6c") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv8fl"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83njx"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee7ir"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8xgx"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5usw3"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45ace"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb6fa"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih4us"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc6jd"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p52am"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alpa3"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cswfs"] +atlas = ExtResource("1_wuu6c") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ethxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smd5s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_668s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0alu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cck4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os5j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvf5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5ait") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae4n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jqhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px8nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qvx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlcpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33akc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ulqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vojhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxc65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvy7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3ycb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e0o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsq6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_545eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fewu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7r21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np0sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wir1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3jv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13fdh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo5go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axp8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bcyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gnkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h5qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqrgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6db5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3v07l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hae73") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1256e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfy11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5c7s") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoxv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg6nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygbsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rif13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wkdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2npl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh7l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmk6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwuqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weeab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx7bh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv8fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83njx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee7ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8xgx") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5usw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45ace") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb6fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih4us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc6jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p52am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alpa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cswfs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsworndefender.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsworndefender.tres new file mode 100644 index 0000000..18302eb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mercsworndefender.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://brcfd6pgtpuk"] + +[ext_resource type="Texture2D" uid="uid://dtfi42nt3lcpt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png" id="1_0jf8w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3ufd"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2doy0"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70g52"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncn3u"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y57ve"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3nvn"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi1uy"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na5cs"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef0cc"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mej3b"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfmim"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfk2s"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jm0a"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ee0m"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t71d6"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu83v"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_877sn"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r44i3"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddn2y"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05o1j"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkjqd"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ucda"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr043"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl7ed"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqa24"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg75f"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c62ue"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rsym"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lifpa"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wywqv"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmt04"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htep2"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lebip"] +atlas = ExtResource("1_0jf8w") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcdy2"] +atlas = ExtResource("1_0jf8w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x7vh"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bt4a"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8js38"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkdgl"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35ouc"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pykyc"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on1v7"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spnns"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngobr"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_827kh"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7iu7"] +atlas = ExtResource("1_0jf8w") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubkg6"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mg6k"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f0kf"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6qgo"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kitj0"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsvue"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p16uj"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrfga"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_478jo"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xx3s"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqqfy"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkc4k"] +atlas = ExtResource("1_0jf8w") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3ufd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2doy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70g52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncn3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y57ve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3nvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi1uy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na5cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef0cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mej3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfmim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfk2s") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jm0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ee0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t71d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu83v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_877sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r44i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddn2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05o1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkjqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ucda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr043") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl7ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqa24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg75f") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c62ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rsym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lifpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wywqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmt04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htep2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lebip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcdy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x7vh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bt4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8js38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkdgl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_35ouc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pykyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on1v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spnns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngobr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_827kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7iu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubkg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mg6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f0kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6qgo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kitj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsvue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p16uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrfga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_478jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xx3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqqfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkc4k") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwilightmage.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwilightmage.tres new file mode 100644 index 0000000..706566a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwilightmage.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://ctqb1t5cg3rm"] + +[ext_resource type="Texture2D" uid="uid://cnsjh0bc2umv1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png" id="1_57nh7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibwv2"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ar0k"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e038v"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxejr"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3sn3"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvkjp"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_735uj"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74v4s"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cagtf"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wy44"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h08c3"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idlyv"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6brwr"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o1cu"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhhhm"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee6bq"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utj0i"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q20f"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7qp1"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g35wl"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8ngn"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap0kw"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20iba"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgwyt"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhsdi"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mscxc"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu4d5"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmkor"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0sqa"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj5cd"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8vl1"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5dbt"] +atlas = ExtResource("1_57nh7") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lamh3"] +atlas = ExtResource("1_57nh7") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lc6c"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekxoj"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kidse"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg7nt"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1588r"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4631j"] +atlas = ExtResource("1_57nh7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1iki"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_busmx"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk5eo"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24g0c"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dftcu"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8rqk"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dngu"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nndca"] +atlas = ExtResource("1_57nh7") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hvcd"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmtkv"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e8h7"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fom41"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3lqu"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kht7n"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pedqn"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky4vy"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jder4"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woh56"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duw6p"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05pa6"] +atlas = ExtResource("1_57nh7") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibwv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ar0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e038v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxejr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3sn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvkjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_735uj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74v4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cagtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wy44") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h08c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idlyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6brwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o1cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhhhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee6bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utj0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q20f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7qp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g35wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8ngn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap0kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20iba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgwyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhsdi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mscxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu4d5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmkor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0sqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj5cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8vl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5dbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lamh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lc6c") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekxoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kidse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg7nt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1588r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4631j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1iki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_busmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk5eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24g0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dftcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8rqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dngu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nndca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hvcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmtkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e8h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fom41") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3lqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kht7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pedqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky4vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jder4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woh56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duw6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05pa6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwinbladewarmonger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwinbladewarmonger.tres new file mode 100644 index 0000000..f119b94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_merctwinbladewarmonger.tres @@ -0,0 +1,428 @@ +[gd_resource type="SpriteFrames" load_steps=58 format=3 uid="uid://c0jlb3eo3hpyx"] + +[ext_resource type="Texture2D" uid="uid://bcpoaquau0h0r" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png" id="1_i071u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbayo"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh61t"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl2fs"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq1f7"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q2gw"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm0le"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh6tg"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ig46"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5t8p"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs3rq"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yn70"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeohf"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy84q"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ocqv"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6iqva"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q07a0"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hclnf"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vyia"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yh5x"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvo4o"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wejxb"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7344k"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7jn5"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyfqa"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1wx8"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqjgx"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxl7k"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp10s"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8e43"] +atlas = ExtResource("1_i071u") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o1h2"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lm5x"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8whk"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ak7y"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj3v1"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c5or"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnygd"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x84ru"] +atlas = ExtResource("1_i071u") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojvfu"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_168cg"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6s1u"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gphy"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6k42"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4cw7"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx8nk"] +atlas = ExtResource("1_i071u") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xivr"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6spo"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3jg8"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaid2"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sh7mj"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kp6b"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdofa"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7857a"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unv6c"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf2qo"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqjxk"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8kty"] +atlas = ExtResource("1_i071u") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbayo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh61t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl2fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq1f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q2gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm0le") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh6tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ig46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5t8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs3rq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yn70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeohf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy84q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ocqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6iqva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q07a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hclnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vyia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yh5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvo4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wejxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7344k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7jn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyfqa") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1wx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqjgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxl7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp10s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8e43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o1h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lm5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8whk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ak7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj3v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c5or") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnygd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x84ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojvfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_168cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6s1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gphy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6k42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4cw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx8nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xivr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6spo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3jg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaid2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sh7mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kp6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdofa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7857a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unv6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf2qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqjxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8kty") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_metaltooth.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_metaltooth.tres new file mode 100644 index 0000000..566c1a9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_metaltooth.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://7m5qskuqn21t"] + +[ext_resource type="Texture2D" uid="uid://bde0wj5lrlqwh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png" id="1_4mfap"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wmud"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvdde"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy43k"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0lvx"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1761o"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1b1o"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wga8"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08s2i"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sacne"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cofv7"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1non4"] +atlas = ExtResource("1_4mfap") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ubu4"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sphs1"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wklt5"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d7lv"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pttn"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwxm2"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qmxg"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcgyi"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myoou"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbiqu"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wlpo"] +atlas = ExtResource("1_4mfap") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtpme"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eifuu"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7yk3"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsb7n"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyl31"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr8f8"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upqgx"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhsyn"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xgwm"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s4k7"] +atlas = ExtResource("1_4mfap") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pi7qu"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdqvr"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky7j7"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2xtj"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0iuf"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dck3l"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpk7a"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvufp"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wmm4"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u045j"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cxh6"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6i1a"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0orla"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv0ny"] +atlas = ExtResource("1_4mfap") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nbs7"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltqqh"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fkn27"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tibn8"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi6h7"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5enpq"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltbws"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnult"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kycfs"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42dxw"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v23v"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efnk4"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upvnx"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjbm8"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f35ay"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gna8o"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sop5j"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrj62"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2088b"] +atlas = ExtResource("1_4mfap") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n04id"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjqmj"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qk8f"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax4v3"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yif4r"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcada"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13np4"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tihoq"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c8y8"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yewes"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm4v2"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdd0a"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl24i"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eves"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrnjk"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8l6w"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7kq5"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iywel"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilvhr"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so7l2"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6cux"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxdos"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n2dy"] +atlas = ExtResource("1_4mfap") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqjsu"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks78n"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wwpe"] +atlas = ExtResource("1_4mfap") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omdmu"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40mln"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niwv0"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5rnt"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc5b2"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgooo"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooajy"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6fo8"] +atlas = ExtResource("1_4mfap") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wmud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvdde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy43k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0lvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1761o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1b1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wga8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08s2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sacne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cofv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1non4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ubu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sphs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wklt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d7lv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pttn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwxm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qmxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcgyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myoou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbiqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wlpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtpme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eifuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7yk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsb7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyl31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr8f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upqgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhsyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xgwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s4k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pi7qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdqvr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky7j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2xtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0iuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dck3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpk7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvufp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wmm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u045j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cxh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6i1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0orla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv0ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nbs7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltqqh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fkn27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tibn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi6h7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5enpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltbws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnult") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kycfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42dxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v23v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efnk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upvnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjbm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f35ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gna8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sop5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrj62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2088b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n04id") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjqmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qk8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax4v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yif4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcada") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13np4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tihoq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c8y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yewes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm4v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdd0a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl24i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eves") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrnjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8l6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7kq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iywel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilvhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so7l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6cux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxdos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n2dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqjsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks78n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wwpe") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_omdmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40mln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niwv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5rnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc5b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgooo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooajy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6fo8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_minijax.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_minijax.tres new file mode 100644 index 0000000..af9aa25 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_minijax.tres @@ -0,0 +1,566 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://ccjwsoop23s2i"] + +[ext_resource type="Texture2D" uid="uid://3bxntvfxqxow" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png" id="1_h403a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_44j31"] +atlas = ExtResource("1_h403a") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7y4i"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3b66"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf6fw"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsh8v"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inuu4"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l08wd"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6q15"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwfjc"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os3hn"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxu27"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl1iy"] +atlas = ExtResource("1_h403a") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hcwf"] +atlas = ExtResource("1_h403a") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gox3"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv8my"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv5lr"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf05i"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhbn8"] +atlas = ExtResource("1_h403a") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2hhx"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk10n"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv2r4"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i075"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apbgy"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl0w6"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4pwf"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vx2k"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtkmq"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt1eh"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbhmx"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipbgi"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbyxi"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tfie"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04w1h"] +atlas = ExtResource("1_h403a") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd2po"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 867, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn82e"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 766, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74yua"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2upa"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 564, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1ivi"] +atlas = ExtResource("1_h403a") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmtpi"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 463, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8rjq"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 362, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3anh"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 261, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27y8y"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 160, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbiao"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 867, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2c01"] +atlas = ExtResource("1_h403a") +region = Rect2(101, 665, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbetj"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 665, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlope"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 564, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6toq"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 463, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdd3k"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 766, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l06ih"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 261, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhlff"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 362, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhgth"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 160, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrloy"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1smog"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnulr"] +atlas = ExtResource("1_h403a") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omiaj"] +atlas = ExtResource("1_h403a") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4hdj"] +atlas = ExtResource("1_h403a") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjcqk"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xc0b5"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlikk"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfxwb"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fr61"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjgxs"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdypo"] +atlas = ExtResource("1_h403a") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60w6h"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 80, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyyik"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 0, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5vxr"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 40, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s36d"] +atlas = ExtResource("1_h403a") +region = Rect2(0, 120, 110, 39) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqgf7"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1d0r"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw1hk"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57nk3"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lv4v"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emmb5"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pstgo"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hxl2"] +atlas = ExtResource("1_h403a") +region = Rect2(505, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_44j31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7y4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3b66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf6fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsh8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inuu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l08wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6q15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwfjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os3hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxu27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl1iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hcwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gox3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv8my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv5lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf05i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhbn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2hhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk10n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv2r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i075") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apbgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl0w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4pwf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vx2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtkmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt1eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbhmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipbgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbyxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tfie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04w1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd2po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn82e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74yua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2upa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1ivi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmtpi") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8rjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3anh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27y8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbiao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2c01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbetj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlope") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6toq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdd3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l06ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhlff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhgth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrloy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1smog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnulr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omiaj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4hdj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjcqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xc0b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlikk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfxwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fr61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjgxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdypo") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_60w6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyyik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5vxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s36d") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqgf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1d0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw1hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57nk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lv4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emmb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pstgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hxl2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mirrormancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mirrormancer.tres new file mode 100644 index 0000000..dbace5c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mirrormancer.tres @@ -0,0 +1,792 @@ +[gd_resource type="SpriteFrames" load_steps=110 format=3 uid="uid://d25udnsnf5msm"] + +[ext_resource type="Texture2D" uid="uid://dqpkf3kb0tchf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png" id="1_gyplg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgbea"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohdyg"] +atlas = ExtResource("1_gyplg") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uut0u"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtfv3"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe63n"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pplgo"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo6tk"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23vgh"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j430"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls8go"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae7qg"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00fkq"] +atlas = ExtResource("1_gyplg") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iq8p5"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lxkf"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfppb"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmmsb"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6olmj"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sey1k"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwu6f"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fona"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0p8i"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkiwh"] +atlas = ExtResource("1_gyplg") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w11qh"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbjvo"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln6kq"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ug4fg"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50g78"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqvag"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ex0h"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evdmc"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxs8e"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgx1b"] +atlas = ExtResource("1_gyplg") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68f1l"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5nss"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1j5d"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8bpg"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htg0a"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lv37"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv47x"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryqav"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkp0a"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1qy8"] +atlas = ExtResource("1_gyplg") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx7qv"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vv8wl"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehvx5"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0tva"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atpg6"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neii4"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs2ao"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ritgi"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucg30"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6e8a"] +atlas = ExtResource("1_gyplg") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlkhn"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21q5q"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne80w"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0aft"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxo3m"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n73y"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72yd2"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qicmy"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lipyu"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w7hx"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifn56"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn3v5"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggxgw"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmg6u"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wep7"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdskm"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbyaf"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji6nb"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eh8q"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vygrs"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t07n3"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwmy2"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25btb"] +atlas = ExtResource("1_gyplg") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqm85"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am5bg"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_656p3"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_todkj"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qglew"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo3df"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa3ci"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guupv"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g84rj"] +atlas = ExtResource("1_gyplg") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqc1i"] +atlas = ExtResource("1_gyplg") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfpor"] +atlas = ExtResource("1_gyplg") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sljn1"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwx82"] +atlas = ExtResource("1_gyplg") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnv5j"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiary"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vtlp"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eox5"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56qn5"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rygjn"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v1ay"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbd4e"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v835k"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh51s"] +atlas = ExtResource("1_gyplg") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0li7j"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yub3"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfllm"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_er2aw"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e525j"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny7rw"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ortt"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_map87"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj85b"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucgr4"] +atlas = ExtResource("1_gyplg") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgbea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohdyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uut0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtfv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe63n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pplgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo6tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23vgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j430") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls8go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae7qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00fkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iq8p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lxkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfppb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmmsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6olmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sey1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwu6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fona") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0p8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkiwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w11qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbjvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln6kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ug4fg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50g78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqvag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ex0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evdmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxs8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgx1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68f1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5nss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1j5d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8bpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htg0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lv37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv47x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryqav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkp0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1qy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx7qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vv8wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehvx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0tva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atpg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neii4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs2ao") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ritgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucg30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6e8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlkhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21q5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne80w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0aft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxo3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n73y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72yd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qicmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lipyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w7hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifn56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn3v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggxgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmg6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wep7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdskm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbyaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji6nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eh8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vygrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t07n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwmy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25btb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqm85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am5bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_656p3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_todkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qglew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo3df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa3ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guupv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g84rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqc1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfpor") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sljn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwx82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnv5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiary") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vtlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eox5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56qn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rygjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v1ay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbd4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v835k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh51s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0li7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yub3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfllm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_er2aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e525j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny7rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ortt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_map87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj85b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucgr4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moebius.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moebius.tres new file mode 100644 index 0000000..27ea797 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moebius.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://cgo8npd5onfgt"] + +[ext_resource type="Texture2D" uid="uid://bku5mi58mnnnf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png" id="1_rv63l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx4gt"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c82k"] +atlas = ExtResource("1_rv63l") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5agby"] +atlas = ExtResource("1_rv63l") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twf4u"] +atlas = ExtResource("1_rv63l") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tcwf"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhawb"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f00u8"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vq2s"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioixp"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mju8d"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxfxk"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ene4j"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20lcq"] +atlas = ExtResource("1_rv63l") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_040fd"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7044"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek5ko"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bfmk"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i85oy"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe2e8"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3ryc"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vab3e"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5nbf"] +atlas = ExtResource("1_rv63l") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g3gy"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hl1h"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thoqh"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20r7d"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75a7v"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylrms"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3ojh"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bo81"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8wt8"] +atlas = ExtResource("1_rv63l") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egtg7"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhgp6"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk1tt"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugnla"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54vs5"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly2rc"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4fhy"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5m3j"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oe06k"] +atlas = ExtResource("1_rv63l") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4eoi"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puvwe"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpicp"] +atlas = ExtResource("1_rv63l") +region = Rect2(999, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3s8p"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jd86"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idqfa"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5kya"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4x66"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0drjk"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb48w"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n0ow"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lwdm"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rihvj"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1dww"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxjse"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuxle"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynkys"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly2hh"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6ser"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb4ua"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucnym"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48b1n"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4i0n"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyj5c"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pynya"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20pfk"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eigpp"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfign"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gscsq"] +atlas = ExtResource("1_rv63l") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy1xb"] +atlas = ExtResource("1_rv63l") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc55x"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fe8d"] +atlas = ExtResource("1_rv63l") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg5ce"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rusp2"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bgw3"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dup0"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg6jx"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv56l"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej5g8"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6oo0"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3svwp"] +atlas = ExtResource("1_rv63l") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtikc"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vo6w"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46rn1"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fy3jl"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfdlm"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xn5y"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2qr8"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_npugx"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qciw3"] +atlas = ExtResource("1_rv63l") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx4gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c82k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5agby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twf4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tcwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhawb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f00u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vq2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioixp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mju8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxfxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ene4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20lcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_040fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7044") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek5ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bfmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i85oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe2e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3ryc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vab3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5nbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g3gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hl1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thoqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20r7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75a7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylrms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3ojh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bo81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8wt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egtg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhgp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk1tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugnla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54vs5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly2rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4fhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5m3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oe06k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4eoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puvwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpicp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3s8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jd86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idqfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5kya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4x66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0drjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb48w") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n0ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lwdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rihvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1dww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxjse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuxle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynkys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly2hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6ser") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb4ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucnym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48b1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4i0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyj5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pynya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20pfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eigpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfign") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gscsq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy1xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc55x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fe8d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg5ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rusp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bgw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dup0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg6jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv56l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej5g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6oo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3svwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtikc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vo6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46rn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fy3jl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfdlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xn5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2qr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_npugx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qciw3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mogwai.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mogwai.tres new file mode 100644 index 0000000..4efcf04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mogwai.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://dtthxl6hvdlqw"] + +[ext_resource type="Texture2D" uid="uid://coghdqoaggsw0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png" id="1_4kmxj"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy2qq"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcx8u"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfu0c"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phttw"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6a05"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pasbd"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4m13"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8py2"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xf26"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlo1v"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7n6l"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr8tx"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt6xd"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kofc"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kx11v"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_26lrf"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocmaj"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7oum"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n756"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whl0f"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6eexw"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8yhb"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh44i"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l66oj"] +atlas = ExtResource("1_4kmxj") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtop0"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cxal"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yufj4"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n842m"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hkjn"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2beu5"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh4yl"] +atlas = ExtResource("1_4kmxj") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdkwm"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0y2n"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1s01c"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7i36w"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvutr"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t80mu"] +atlas = ExtResource("1_4kmxj") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl03s"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k32yo"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwgce"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1sl3"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iju87"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqk63"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fejh"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfpp7"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6idri"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_begq5"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fou02"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lp8v"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5rq7"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7sso"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4yr6"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo2sw"] +atlas = ExtResource("1_4kmxj") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oddfd"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj6fm"] +atlas = ExtResource("1_4kmxj") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wxc6"] +atlas = ExtResource("1_4kmxj") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gde5d"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j0k5"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gv67"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8sts"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neg6f"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj6lr"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy3o1"] +atlas = ExtResource("1_4kmxj") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt28t"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh0t4"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es7pi"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0stw"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8opf"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts5ub"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw5a5"] +atlas = ExtResource("1_4kmxj") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjih6"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgemg"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxrwd"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h11kt"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq64m"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr1iu"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eais7"] +atlas = ExtResource("1_4kmxj") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy2qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcx8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfu0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phttw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6a05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pasbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4m13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8py2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xf26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlo1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7n6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr8tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt6xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kofc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kx11v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_26lrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocmaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7oum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n756") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whl0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6eexw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8yhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh44i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l66oj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtop0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cxal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yufj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n842m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hkjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2beu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh4yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdkwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0y2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1s01c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7i36w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvutr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t80mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl03s") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k32yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwgce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1sl3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iju87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqk63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fejh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfpp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6idri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_begq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fou02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lp8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5rq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7sso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4yr6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo2sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oddfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj6fm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wxc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gde5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j0k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gv67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8sts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neg6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj6lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy3o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt28t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh0t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es7pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0stw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8opf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts5ub") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw5a5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjih6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgemg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxrwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h11kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq64m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr1iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eais7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moltengolem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moltengolem.tres new file mode 100644 index 0000000..5a193b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moltengolem.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://denakjrv3xinu"] + +[ext_resource type="Texture2D" uid="uid://b5ecs6k2f0nij" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png" id="1_mj2ab"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cj8a"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_givfd"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fj6d"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ibp"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ohb"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc87m"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7deb"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_440uw"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d5vr"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv1v8"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0dqd"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7q4u4"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn6e2"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5c8a"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5yxw"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm1g3"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iaxc6"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqc6j"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv457"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43g5a"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11xks"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbe2g"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gj2g"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7drxj"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctoaj"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqe32"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbm82"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx6hi"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dodtm"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cks65"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3y4p"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2snva"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulvbt"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21ybh"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s6d7"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbxic"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4qto"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcalh"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psoi7"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o4w3"] +atlas = ExtResource("1_mj2ab") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xy0k"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e00jn"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugvsn"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wi3eo"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otb42"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg0ib"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwrei"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_advc8"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syvhm"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmsfo"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1tba"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7cnq"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ijm"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqpp7"] +atlas = ExtResource("1_mj2ab") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc8ej"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daxab"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce7gk"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvbqk"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muqnl"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m153"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukjj4"] +atlas = ExtResource("1_mj2ab") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xmww"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_727lq"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5irk"] +atlas = ExtResource("1_mj2ab") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aj26y"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hkw1"] +atlas = ExtResource("1_mj2ab") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o357p"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty028"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvnqp"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vclj0"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c5bn"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58bsx"] +atlas = ExtResource("1_mj2ab") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4smki"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf70c"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogfio"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_705m5"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lswfw"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1h5g"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3gmj"] +atlas = ExtResource("1_mj2ab") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in7nx"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yddom"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46cgm"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcuhv"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11n47"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi3pg"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhwwg"] +atlas = ExtResource("1_mj2ab") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ejk2"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2njfb"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge4h1"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0r61v"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxyy4"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w0pk"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac53h"] +atlas = ExtResource("1_mj2ab") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cj8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_givfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fj6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ibp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ohb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc87m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7deb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_440uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d5vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv1v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0dqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7q4u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn6e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5c8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5yxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm1g3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iaxc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqc6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv457") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43g5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11xks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbe2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gj2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7drxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctoaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqe32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbm82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx6hi") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dodtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cks65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3y4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2snva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulvbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21ybh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s6d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbxic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4qto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcalh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psoi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o4w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xy0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e00jn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugvsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wi3eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otb42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg0ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwrei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_advc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syvhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmsfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1tba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7cnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ijm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqpp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc8ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daxab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce7gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvbqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muqnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m153") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukjj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xmww") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_727lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5irk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aj26y") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hkw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o357p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty028") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvnqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vclj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c5bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58bsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4smki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf70c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogfio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_705m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lswfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1h5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3gmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in7nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yddom") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_46cgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcuhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11n47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi3pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhwwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ejk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2njfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge4h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0r61v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxyy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w0pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac53h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monster_explodingdemon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monster_explodingdemon.tres new file mode 100644 index 0000000..7957784 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monster_explodingdemon.tres @@ -0,0 +1,538 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://drnhm0hxp3lan"] + +[ext_resource type="Texture2D" uid="uid://cobmhj62y5jn" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png" id="1_05xoa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u1rn"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk610"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn38a"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l82r8"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_573c3"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3d5a"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p18g4"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0iy8"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrvkg"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kkbt"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q07it"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a01s7"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73y5j"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unl5u"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8k8m"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceqpx"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfdk4"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4ff2"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_weet7"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8d4x"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms8ld"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c3pf"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atlh2"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30rb5"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5aqpn"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bdpi"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34ss3"] +atlas = ExtResource("1_05xoa") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xcet"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qogoy"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy08a"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uhs1"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1iyf"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2qhc"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf3c3"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqoow"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmctq"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ctp"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab508"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i537s"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubku8"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejsqe"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cugd0"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cu56"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yo65"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq8je"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_178ug"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yt5a"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecm4c"] +atlas = ExtResource("1_05xoa") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_480d0"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhxgx"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80oue"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73nw3"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0la7c"] +atlas = ExtResource("1_05xoa") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oad1k"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfm3j"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brhl0"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf0x0"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r18t6"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1nhg"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ils0u"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvsqs"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4ebq"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd3rq"] +atlas = ExtResource("1_05xoa") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7n03"] +atlas = ExtResource("1_05xoa") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n57xy"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o0pr"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8fuh"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6mda"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dstme"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_furlr"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3jah"] +atlas = ExtResource("1_05xoa") +region = Rect2(324, 405, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u1rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk610") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn38a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l82r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_573c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3d5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p18g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0iy8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrvkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kkbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q07it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a01s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73y5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unl5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8k8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceqpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfdk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4ff2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_weet7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8d4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms8ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c3pf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_atlh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30rb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5aqpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bdpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34ss3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xcet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qogoy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy08a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uhs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1iyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2qhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf3c3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqoow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmctq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ctp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab508") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i537s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubku8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejsqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cugd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cu56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yo65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq8je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_178ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yt5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecm4c") +}], +"loop": true, +"name": &"explode", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_480d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhxgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80oue") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_73nw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0la7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oad1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfm3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brhl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf0x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r18t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1nhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ils0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvsqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4ebq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd3rq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7n03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n57xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o0pr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8fuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6mda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dstme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_furlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3jah") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterartifacthunter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterartifacthunter.tres new file mode 100644 index 0000000..d8a20e2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterartifacthunter.tres @@ -0,0 +1,477 @@ +[gd_resource type="SpriteFrames" load_steps=65 format=3 uid="uid://tpsycdgwmrbm"] + +[ext_resource type="Texture2D" uid="uid://b06xxuraaltwk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png" id="1_pr50u"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbr8j"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvn8s"] +atlas = ExtResource("1_pr50u") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vvhg"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au2wq"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ioss"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ql1l"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivt2f"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwn5n"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6jgr"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pg77k"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4qqq"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho4hr"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omdb4"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slkak"] +atlas = ExtResource("1_pr50u") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikujj"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv5v8"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7fot"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdst2"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdk4g"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvgkg"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3dmw"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyo0f"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a15ic"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycx8e"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55wv1"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcfqt"] +atlas = ExtResource("1_pr50u") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ia2p"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl8oh"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6bxx"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apyp5"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vw3lj"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scona"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jxml"] +atlas = ExtResource("1_pr50u") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggdph"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi2xx"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_502kv"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2x8f"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6x37"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t37vu"] +atlas = ExtResource("1_pr50u") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seyrk"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ye8d3"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m8p0"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvswb"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbvr2"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eyip"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvw06"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a06x"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x22eg"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv86n"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huxhd"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6nev"] +atlas = ExtResource("1_pr50u") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oewau"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r5j1"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0etjs"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae1n5"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1qsc"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meg85"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppbt6"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyhh1"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd204"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sqs8"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqx1h"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yempk"] +atlas = ExtResource("1_pr50u") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbr8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvn8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vvhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au2wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ioss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ql1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivt2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwn5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6jgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pg77k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4qqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho4hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omdb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slkak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikujj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv5v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7fot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdst2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdk4g") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvgkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3dmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyo0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a15ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycx8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55wv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcfqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ia2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl8oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6bxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apyp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vw3lj") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_scona") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jxml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggdph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi2xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_502kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2x8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6x37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t37vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seyrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ye8d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m8p0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvswb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbvr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eyip") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvw06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a06x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x22eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv86n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huxhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6nev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oewau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r5j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0etjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae1n5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1qsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meg85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppbt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyhh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd204") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sqs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqx1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yempk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterblacksandburrower.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterblacksandburrower.tres new file mode 100644 index 0000000..c909828 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterblacksandburrower.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://drdwoyng301lk"] + +[ext_resource type="Texture2D" uid="uid://buwlmu1l2nfeg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png" id="1_5pmxw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xf5i"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8ba5"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6onus"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw8g2"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6lr1"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fojq7"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8je83"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlhb5"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0m6i"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twbaq"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt1bn"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktlbq"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkod2"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qn3pc"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6nk7"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufjpe"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abpol"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6lmi"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeh30"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7trhb"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxvqh"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qrod"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cur0e"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kp7u"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ac86"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h28l6"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t287p"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7n2m"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmxdh"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v15gm"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i6v8"] +atlas = ExtResource("1_5pmxw") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phr78"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aflgw"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey4hy"] +atlas = ExtResource("1_5pmxw") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8jk7"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhcdh"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw0jd"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynic2"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mymbo"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grbbp"] +atlas = ExtResource("1_5pmxw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6l6ov"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhxuf"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gsdsn"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xy08"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kiqa"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kymbw"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o77o"] +atlas = ExtResource("1_5pmxw") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wpwxc"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7udu8"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xk4a"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_op8ge"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_653mh"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jq6k"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nym1m"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaaor"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y44lt"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfnwe"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xggaa"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tjgb"] +atlas = ExtResource("1_5pmxw") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xf5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8ba5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6onus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw8g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6lr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fojq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8je83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlhb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0m6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twbaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt1bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktlbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkod2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qn3pc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6nk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufjpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abpol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6lmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeh30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7trhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxvqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qrod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cur0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kp7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ac86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h28l6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t287p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7n2m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmxdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v15gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i6v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phr78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aflgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey4hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8jk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhcdh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw0jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynic2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mymbo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_grbbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6l6ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhxuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gsdsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xy08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kiqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kymbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o77o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wpwxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7udu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xk4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_op8ge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_653mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jq6k") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nym1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaaor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y44lt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfnwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xggaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tjgb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercoiledcrawler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercoiledcrawler.tres new file mode 100644 index 0000000..e2e69a3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercoiledcrawler.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://22s82arm41p2"] + +[ext_resource type="Texture2D" uid="uid://yhnn7xp662qj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png" id="1_gohnc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pnxq"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyddb"] +atlas = ExtResource("1_gohnc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uemsw"] +atlas = ExtResource("1_gohnc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mubpw"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pr78"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v00hj"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqu35"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hin8"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6xgm"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb6ku"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j62u3"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_741m6"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dvav"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vp5q"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ig1x"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iailg"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvk5x"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xg1ja"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kor16"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4hj7"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys88w"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p51e"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_807kf"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehspw"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2teau"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4ucf"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v6eb"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrg8m"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g4d0"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7npfc"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyprr"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00fp1"] +atlas = ExtResource("1_gohnc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldmqu"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70fko"] +atlas = ExtResource("1_gohnc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t7j7"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxtqo"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loxhy"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hewik"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qluqk"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k4ok"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0oknr"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3dd6"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b17l8"] +atlas = ExtResource("1_gohnc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihj06"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akkgp"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn6ft"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy21o"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35hcg"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qsdv"] +atlas = ExtResource("1_gohnc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdwqk"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72n43"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udbds"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2og4q"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74rux"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjf8e"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie3vd"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ibw0"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbqrr"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evq1j"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eor3d"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b1qo"] +atlas = ExtResource("1_gohnc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pnxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyddb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uemsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mubpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pr78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v00hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqu35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hin8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6xgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb6ku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j62u3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_741m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dvav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vp5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ig1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iailg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvk5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xg1ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kor16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4hj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys88w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p51e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_807kf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehspw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2teau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4ucf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v6eb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrg8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g4d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7npfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyprr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00fp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldmqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70fko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t7j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxtqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loxhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hewik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qluqk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k4ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0oknr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3dd6") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b17l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihj06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akkgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn6ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy21o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35hcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qsdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdwqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72n43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udbds") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2og4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74rux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjf8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie3vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ibw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbqrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evq1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eor3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b1qo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercrystalwisp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercrystalwisp.tres new file mode 100644 index 0000000..70f19f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstercrystalwisp.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://518i6rnqueof"] + +[ext_resource type="Texture2D" uid="uid://dgb12dhmtlcx2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png" id="1_wpudp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lluwy"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n70l"] +atlas = ExtResource("1_wpudp") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vse0t"] +atlas = ExtResource("1_wpudp") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdt8f"] +atlas = ExtResource("1_wpudp") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksrnw"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osi3i"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omd2w"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygovm"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpcjn"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u8x6"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxq7t"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x80o5"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7e5e"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jliub"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twu3g"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgfvs"] +atlas = ExtResource("1_wpudp") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55khg"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cb8ct"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwyyx"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2enk"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlhas"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpxdh"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evoo1"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtptw"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrcsp"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31yr6"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cnty"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8ajn"] +atlas = ExtResource("1_wpudp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxueq"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2buk"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mipc"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r8r5"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4l85"] +atlas = ExtResource("1_wpudp") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fdb6"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6hos"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02o7u"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv6w8"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcilg"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c74g8"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3mrc"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap4fw"] +atlas = ExtResource("1_wpudp") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwlb8"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls5ri"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyg3o"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cne8"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjfdi"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lha8e"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3u7r"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwy5c"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqe3p"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8ua0"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvfqt"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptu71"] +atlas = ExtResource("1_wpudp") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i6fv"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj6no"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uojrf"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64qce"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_biq3p"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts1ky"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm03x"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbwak"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bswp"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfxx2"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh4kk"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpf3m"] +atlas = ExtResource("1_wpudp") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lluwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n70l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vse0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdt8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksrnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osi3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omd2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygovm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpcjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u8x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxq7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x80o5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7e5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jliub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twu3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgfvs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55khg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cb8ct") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwyyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2enk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlhas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpxdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evoo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtptw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrcsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31yr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cnty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8ajn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxueq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2buk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mipc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r8r5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4l85") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fdb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6hos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02o7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv6w8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcilg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c74g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3mrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap4fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwlb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls5ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyg3o") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cne8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjfdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lha8e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3u7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwy5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqe3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8ua0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvfqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptu71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i6fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj6no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uojrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64qce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_biq3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts1ky") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm03x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbwak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bswp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfxx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh4kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpf3m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdancingblades.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdancingblades.tres new file mode 100644 index 0000000..1d93fda --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdancingblades.tres @@ -0,0 +1,694 @@ +[gd_resource type="SpriteFrames" load_steps=96 format=3 uid="uid://g0vrkor383um"] + +[ext_resource type="Texture2D" uid="uid://bbx1was0ic6vr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png" id="1_t26ih"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_txtf0"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peugv"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maaga"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjwvp"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10jag"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgkm2"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lu8t"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3avxr"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vxvn"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj0th"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjtwf"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjybh"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ti5"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osf3x"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi2t6"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot383"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w73hy"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_005wo"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymnj5"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ohn7"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cppi0"] +atlas = ExtResource("1_t26ih") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b42d0"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy2dw"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj77g"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d08bg"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgypo"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l88i5"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuq21"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73mk7"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mhbo"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d12ci"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ni1"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij4yx"] +atlas = ExtResource("1_t26ih") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17a4h"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsr44"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioo44"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ketnk"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swoqf"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_porwa"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lawll"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y743j"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo5c2"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsym6"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwpfq"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehg8k"] +atlas = ExtResource("1_t26ih") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px21c"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y25pm"] +atlas = ExtResource("1_t26ih") +region = Rect2(567, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttys4"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t2ay"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idx5q"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5bfm"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn4k8"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4nr4"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0aaq7"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2kjf"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bssju"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoq6g"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgsqw"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcwia"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mvpo"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48mf0"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muxln"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeiak"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mnf5"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myqqy"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nax1"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6ndt"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txmwv"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4kxl"] +atlas = ExtResource("1_t26ih") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvv15"] +atlas = ExtResource("1_t26ih") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmcot"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujd0d"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tpbc"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6rdo"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h201"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3xjj"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljexy"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo3go"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8svsq"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8qii"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25jqu"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8tid"] +atlas = ExtResource("1_t26ih") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h30rn"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjg87"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxy2e"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tqtm"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq1oi"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5yemu"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh4kw"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofm37"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j75kr"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwf7p"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx8v6"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ld0ue"] +atlas = ExtResource("1_t26ih") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_txtf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peugv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maaga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjwvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10jag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgkm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lu8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3avxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vxvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj0th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjtwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjybh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ti5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osf3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi2t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot383") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w73hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_005wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymnj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ohn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cppi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b42d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy2dw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj77g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d08bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgypo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l88i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuq21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73mk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mhbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d12ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ni1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij4yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17a4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsr44") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioo44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ketnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swoqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_porwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lawll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y743j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo5c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsym6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwpfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehg8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px21c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y25pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttys4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t2ay") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_idx5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5bfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn4k8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4nr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0aaq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2kjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bssju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoq6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgsqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcwia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mvpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48mf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muxln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeiak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mnf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myqqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nax1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6ndt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txmwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4kxl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvv15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmcot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujd0d") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tpbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6rdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h201") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3xjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljexy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8svsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8qii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25jqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8tid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h30rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjg87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxy2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tqtm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq1oi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5yemu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh4kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofm37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j75kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwf7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx8v6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ld0ue") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdarkharbinger.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdarkharbinger.tres new file mode 100644 index 0000000..3154d09 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdarkharbinger.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://b3gge0dsj0hsy"] + +[ext_resource type="Texture2D" uid="uid://dhdcfnli180gg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png" id="1_mh7kw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q18a8"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4f0l"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6kkb"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrrm6"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvk2v"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85e5t"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aulbf"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35ags"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ankra"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxe1e"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b5a5"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxglr"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8phe8"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3urjw"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwefs"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj6q0"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py6vl"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ij80d"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n2c0"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm6qg"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2fib"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enjxf"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pitu"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdji8"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x4o8"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3agap"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y8kn"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4htb"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw0e0"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adnhw"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl5bi"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72404"] +atlas = ExtResource("1_mh7kw") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40ikn"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjpdx"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ifpx"] +atlas = ExtResource("1_mh7kw") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmc6s"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmkvh"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgdok"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pbhp"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aef2m"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cni3"] +atlas = ExtResource("1_mh7kw") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odi7o"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anpd5"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek5uo"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6465p"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_521rg"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn3oc"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08deb"] +atlas = ExtResource("1_mh7kw") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o731r"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ejp"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wegna"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fffcc"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yikg"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h014v"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yxxg"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjsqj"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_suomg"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl2h2"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okqtu"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv6w5"] +atlas = ExtResource("1_mh7kw") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q18a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4f0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6kkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrrm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvk2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85e5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aulbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35ags") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ankra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxe1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b5a5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxglr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8phe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3urjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwefs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj6q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py6vl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ij80d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n2c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm6qg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2fib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enjxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pitu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdji8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x4o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3agap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y8kn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4htb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw0e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adnhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl5bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72404") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40ikn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjpdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ifpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmc6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmkvh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgdok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pbhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aef2m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cni3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odi7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anpd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek5uo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6465p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_521rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn3oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08deb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o731r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ejp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wegna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fffcc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yikg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h014v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yxxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjsqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_suomg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl2h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okqtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv6w5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdragonhawk.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdragonhawk.tres new file mode 100644 index 0000000..f0bdbd7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdragonhawk.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://djr27ypmq86pb"] + +[ext_resource type="Texture2D" uid="uid://8jc2qdrktmya" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png" id="1_2a6tc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_al5u0"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odhvx"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_objkc"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1wrj"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrvy6"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrfw2"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kysc"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne5jo"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbga2"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xvnj"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt3n3"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8auea"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3jrg"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkqgb"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ii3d"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cfv7"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce6eg"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0h1v"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqx0p"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5yit"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efla7"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n3y6"] +atlas = ExtResource("1_2a6tc") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kk5bu"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b7kc"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juupd"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd3uv"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsm4w"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbuik"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7a5l"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnedj"] +atlas = ExtResource("1_2a6tc") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06rlv"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23n88"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ji5x"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwcsl"] +atlas = ExtResource("1_2a6tc") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s63r"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05yyo"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5u3h"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0di4d"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy3uc"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2siyi"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2qyc"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs301"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spbut"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kps41"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pimmw"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o0qp"] +atlas = ExtResource("1_2a6tc") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogx5t"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ewpo"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mniod"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_saia6"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axqb4"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p16wg"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ocd"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryh3t"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e48j5"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlrot"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_566uq"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs270"] +atlas = ExtResource("1_2a6tc") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_al5u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odhvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_objkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1wrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrvy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrfw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kysc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne5jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbga2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xvnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt3n3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8auea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3jrg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkqgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ii3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cfv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce6eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0h1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqx0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5yit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efla7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n3y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kk5bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b7kc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juupd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd3uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsm4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbuik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7a5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnedj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06rlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23n88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ji5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwcsl") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s63r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05yyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5u3h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0di4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy3uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2siyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2qyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs301") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spbut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kps41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pimmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o0qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogx5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ewpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mniod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_saia6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axqb4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p16wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ocd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryh3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e48j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlrot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_566uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs270") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdreamoracle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdreamoracle.tres new file mode 100644 index 0000000..d9bb32f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterdreamoracle.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://lnhx0dpo1x5c"] + +[ext_resource type="Texture2D" uid="uid://bbnc5xwymkods" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png" id="1_tdbtp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k1hn"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_micxu"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3f7b1"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83fyj"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y758f"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ulwy"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txngn"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db2bk"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y86mj"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mx6ev"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x30vh"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waepp"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri667"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uotbv"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmqr0"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po7b3"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18u41"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q01b"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6012"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js6t5"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iqp7"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4dm8"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fodgf"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dba4t"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqset"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yudw"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crmhu"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kppdj"] +atlas = ExtResource("1_tdbtp") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egi6o"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksjv7"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n163o"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek27a"] +atlas = ExtResource("1_tdbtp") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxutu"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_klkja"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypfuj"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqbul"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g3pn"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le7oh"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w2ki"] +atlas = ExtResource("1_tdbtp") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c11u4"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt2j6"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayvxy"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl3ko"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_026ma"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8f40"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp3jd"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qqn7"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulj88"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvt1w"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpscf"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m82bq"] +atlas = ExtResource("1_tdbtp") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k1hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_micxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3f7b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83fyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y758f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ulwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txngn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db2bk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y86mj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mx6ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x30vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waepp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri667") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uotbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmqr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po7b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18u41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q01b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6012") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_js6t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iqp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4dm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fodgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dba4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqset") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yudw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crmhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kppdj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_egi6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksjv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n163o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek27a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxutu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_klkja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypfuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqbul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g3pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le7oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w2ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c11u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt2j6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayvxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl3ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_026ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8f40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp3jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qqn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulj88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvt1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpscf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m82bq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterexplodingdemon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterexplodingdemon.tres new file mode 100644 index 0000000..00e2637 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterexplodingdemon.tres @@ -0,0 +1,615 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://ch2xm3bj05hlx"] + +[ext_resource type="Texture2D" uid="uid://fjyx6fk50vk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png" id="1_76bvm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dtfg"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc1qb"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt60l"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfd1h"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1aly"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7e80"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jx035"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i410f"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqevs"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsgmg"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjmc3"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d67yr"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrutx"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io8rr"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6isc"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7yp3"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8j4u4"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6vxc"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc3v4"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfh2n"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn8kd"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab4rx"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gbm5"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iichc"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_got2y"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wyha"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_678gk"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i0te"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47rle"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ak5g"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf2eu"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plvcd"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhi6h"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_delmy"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjjbv"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aia72"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh105"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2h1v"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3rlh"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0tih"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq60b"] +atlas = ExtResource("1_76bvm") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r1ep"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kshjg"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scwsp"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t18ls"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhtv4"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wje3g"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxebw"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgofy"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlow3"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xj4rg"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uncih"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku6o7"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n0n0"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvsnu"] +atlas = ExtResource("1_76bvm") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8effo"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqr66"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e3ua"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcb6f"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prtb7"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfp6d"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6b0u"] +atlas = ExtResource("1_76bvm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uubf"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17mpi"] +atlas = ExtResource("1_76bvm") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8qqc"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5cyu"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13wo4"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiucd"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ogb0"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ktyb"] +atlas = ExtResource("1_76bvm") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dp0b"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slc54"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eq3m"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3f8r"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sspu"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5jx7"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1dpf"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7852"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02xpx"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pm8d"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru2uv"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gm4xm"] +atlas = ExtResource("1_76bvm") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dtfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc1qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt60l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfd1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1aly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7e80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jx035") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i410f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqevs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsgmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjmc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d67yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrutx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io8rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6isc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7yp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8j4u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6vxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc3v4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfh2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn8kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab4rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gbm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iichc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_got2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wyha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_678gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i0te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47rle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ak5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf2eu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plvcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhi6h") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_delmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjjbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aia72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh105") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2h1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3rlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0tih") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq60b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r1ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kshjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scwsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t18ls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhtv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wje3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxebw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgofy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlow3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xj4rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uncih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku6o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n0n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvsnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8effo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqr66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e3ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcb6f") +}], +"loop": true, +"name": &"explode", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_prtb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfp6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6b0u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uubf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17mpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8qqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5cyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13wo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiucd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ogb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ktyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dp0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slc54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eq3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3f8r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sspu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5jx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1dpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7852") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02xpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pm8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru2uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gm4xm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterflamewing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterflamewing.tres new file mode 100644 index 0000000..e0e5ca8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterflamewing.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://x7awy8gv21wk"] + +[ext_resource type="Texture2D" uid="uid://cgmf8llqditay" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png" id="1_686ht"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpss5"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqmiw"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlen0"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvpj1"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjebw"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy0m5"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0w6l0"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdddu"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga7ao"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53jbs"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jllfn"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy0p1"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egkkd"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nitns"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oooas"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k4cc"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r5lr"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o23"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d608e"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aadjs"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsji"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoyh6"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuojn"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dixrm"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mwbv"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bioj6"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v12bi"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtm8s"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2khw"] +atlas = ExtResource("1_686ht") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8em1k"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6gxx"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc1gj"] +atlas = ExtResource("1_686ht") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onwra"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86otr"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw04y"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7im3y"] +atlas = ExtResource("1_686ht") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg58l"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52874"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0np5"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk6fn"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sicnc"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0r8o"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2vfh"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1dkc"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82kff"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mmvu"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lofw1"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j64aq"] +atlas = ExtResource("1_686ht") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aetd"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crqp8"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsvr1"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtjnp"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn43a"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmsnp"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61gty"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcw76"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgotq"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1q6p"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njcko"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfa34"] +atlas = ExtResource("1_686ht") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpss5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqmiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlen0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvpj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjebw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy0m5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0w6l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdddu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga7ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53jbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jllfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy0p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egkkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nitns") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oooas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k4cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r5lr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d608e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aadjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoyh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuojn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dixrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mwbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bioj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v12bi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtm8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2khw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8em1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6gxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc1gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onwra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86otr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw04y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7im3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg58l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52874") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0np5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk6fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sicnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0r8o") +}], +"loop": true, +"name": &"hurt", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2vfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1dkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82kff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mmvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lofw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j64aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aetd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crqp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsvr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtjnp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn43a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmsnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61gty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcw76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgotq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1q6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njcko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfa34") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterlightningbeetle.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterlightningbeetle.tres new file mode 100644 index 0000000..b97f757 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterlightningbeetle.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://ctxomw5n33wxn"] + +[ext_resource type="Texture2D" uid="uid://dmxuej1sgcfqb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png" id="1_s3erl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8vof"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fq6l"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo1b1"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7iy2"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o24pl"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8hm1"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5k31v"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0dq0"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1mh2"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15avl"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qgfi"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j6gc"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2vss"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rscow"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rby8r"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkat5"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f7ck"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ocft"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k747x"] +atlas = ExtResource("1_s3erl") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f4rd"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn3vo"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpaid"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvw0h"] +atlas = ExtResource("1_s3erl") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy3d0"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_javij"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qduc"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4354"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r37c"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5jpf"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74inx"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ages7"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0du4t"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu1ik"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8qrq"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqfgw"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls8la"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2sv5"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcjqy"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_355y1"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhbfg"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6ea3"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48f27"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7p7r"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su2o2"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ljav"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r0qy"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66ss4"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mp7w"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg4ao"] +atlas = ExtResource("1_s3erl") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojabh"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6hvk"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2tbg"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3l30"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrdf8"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqe7a"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21bty"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_066gf"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r323v"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lypaw"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgi4b"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lnr3"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1c41"] +atlas = ExtResource("1_s3erl") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjiww"] +atlas = ExtResource("1_s3erl") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wucm"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnyb8"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yalak"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o46op"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5bgo"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8657"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psj1k"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07e2x"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt5f3"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehtyt"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_721t2"] +atlas = ExtResource("1_s3erl") +region = Rect2(324, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8vof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fq6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo1b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7iy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o24pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8hm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5k31v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0dq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1mh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15avl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qgfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j6gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2vss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rscow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rby8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkat5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f7ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ocft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k747x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f4rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn3vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpaid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvw0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy3d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_javij") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qduc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4354") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r37c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5jpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74inx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ages7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0du4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu1ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8qrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqfgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls8la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2sv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcjqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_355y1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhbfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6ea3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48f27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7p7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su2o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ljav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r0qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66ss4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mp7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg4ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojabh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6hvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2tbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3l30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrdf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqe7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21bty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_066gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r323v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lypaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgi4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lnr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1c41") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjiww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnyb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yalak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o46op") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5bgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8657") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psj1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07e2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt5f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehtyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_721t2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteroculus.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteroculus.tres new file mode 100644 index 0000000..70d04c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteroculus.tres @@ -0,0 +1,421 @@ +[gd_resource type="SpriteFrames" load_steps=57 format=3 uid="uid://8rmmuecy7hhw"] + +[ext_resource type="Texture2D" uid="uid://cl43iw34rmb2b" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png" id="1_0bbwr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8206"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbtpm"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1sdo"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo8hm"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0dee"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvs6u"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrx2t"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwp10"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqko2"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54t3o"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c3ai"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdnhc"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vi0iv"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjob0"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce4xv"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwnr4"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f61a6"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fexpn"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m36i0"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thtkv"] +atlas = ExtResource("1_0bbwr") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7c2y"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdmo7"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_538fw"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vwq4"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uju8a"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0051s"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4at3c"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ug1"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5k10"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypod5"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_878bx"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3bah"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ajiv"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_506wu"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo4xv"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyugr"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sys7h"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvrb5"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kngod"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7dis"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7olfc"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkagd"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt5ra"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md7rf"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0yo3"] +atlas = ExtResource("1_0bbwr") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyxdt"] +atlas = ExtResource("1_0bbwr") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgxx4"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm3h1"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw1be"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkh1h"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfr2b"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rorhn"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwt2q"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy7y8"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me1ow"] +atlas = ExtResource("1_0bbwr") +region = Rect2(243, 162, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8206") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbtpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1sdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo8hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0dee") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvs6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrx2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwp10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqko2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_54t3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c3ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdnhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vi0iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjob0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce4xv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwnr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f61a6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fexpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m36i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thtkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7c2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdmo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_538fw") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vwq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uju8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0051s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4at3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ug1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5k10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypod5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_878bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3bah") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ajiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_506wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo4xv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyugr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sys7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvrb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kngod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7dis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7olfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkagd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt5ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md7rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0yo3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyxdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgxx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm3h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw1be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkh1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfr2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rorhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwt2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy7y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me1ow") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteronyxscorpion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteronyxscorpion.tres new file mode 100644 index 0000000..35f2f4a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsteronyxscorpion.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://dning3f6v684a"] + +[ext_resource type="Texture2D" uid="uid://dx4gavj1ecxj1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png" id="1_k5q3t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_50vgj"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6re8"] +atlas = ExtResource("1_k5q3t") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ea32g"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkrw3"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt6jq"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieqb4"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rt3as"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojye6"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dvuu"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t56yq"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naccj"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj7r3"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdk4w"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wyfn"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hh2l"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka2jb"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d157p"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tno5p"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3ng1"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gfvk"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s75bx"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olbjb"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbj37"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jken"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22sg8"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hks1x"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4nup"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs1kx"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgh6y"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vgc8"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x62p2"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdd5u"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82gmo"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n0ag"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1b4q"] +atlas = ExtResource("1_k5q3t") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq1ix"] +atlas = ExtResource("1_k5q3t") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hojf"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lbrr"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otuyg"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hruo"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcc8x"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scx1l"] +atlas = ExtResource("1_k5q3t") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sokk"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxq2e"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u047g"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oihex"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gafh"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grmtf"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hwsm"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrb6q"] +atlas = ExtResource("1_k5q3t") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lumsk"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esf5k"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54ftd"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y451o"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a37jd"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fw0cj"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w467t"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nasqt"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8evcc"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptu76"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cpkf"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcodh"] +atlas = ExtResource("1_k5q3t") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_50vgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6re8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ea32g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkrw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt6jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieqb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rt3as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojye6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dvuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t56yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naccj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj7r3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdk4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wyfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hh2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka2jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d157p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tno5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3ng1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gfvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s75bx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olbjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbj37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jken") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22sg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hks1x") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4nup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs1kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgh6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vgc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x62p2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdd5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82gmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n0ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1b4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq1ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hojf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lbrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otuyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hruo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcc8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scx1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sokk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxq2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u047g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oihex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gafh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grmtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hwsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrb6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lumsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esf5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54ftd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y451o") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a37jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fw0cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w467t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nasqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8evcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptu76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cpkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcodh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterputridmindflayer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterputridmindflayer.tres new file mode 100644 index 0000000..32a2216 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterputridmindflayer.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://cm7ao53rue1qo"] + +[ext_resource type="Texture2D" uid="uid://cm2yecwxjjyws" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png" id="1_jj68t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0rok"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd3sw"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlism"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7a12"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0w2q"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guitx"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8reu3"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v51yl"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhffm"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfaw7"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef2f3"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctb7k"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kqn1"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jwyn"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypw3a"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b64ij"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6lpm"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5an63"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5bs2"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctsnf"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw2gy"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urxgt"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knkf5"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueoyo"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bavs5"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ofkq"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtlgh"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocjbh"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_816eq"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0moi"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ifme"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr3ct"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdmok"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wuquc"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlfn0"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_attv4"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_631l5"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppv7j"] +atlas = ExtResource("1_jj68t") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mc7f6"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vsu8"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rdme"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy1sd"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykc7s"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xks2"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaqpt"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21apf"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbh1y"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbxbe"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byouv"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwq4g"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p30n"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0ttb"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh11l"] +atlas = ExtResource("1_jj68t") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihbb0"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0waka"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0ms4"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i62ng"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab0gh"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia0ce"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrwp1"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kb86"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjhea"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l14fd"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o061x"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f26y5"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47m84"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe3m1"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sifeq"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hm43r"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsnw1"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82n4q"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hw3q"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yohjp"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioskk"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p82kd"] +atlas = ExtResource("1_jj68t") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0rok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd3sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlism") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7a12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0w2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guitx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8reu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v51yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhffm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfaw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef2f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctb7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kqn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jwyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypw3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b64ij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6lpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5an63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5bs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctsnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw2gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urxgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knkf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueoyo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bavs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ofkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtlgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocjbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_816eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0moi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ifme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr3ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdmok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wuquc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlfn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_attv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_631l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppv7j") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mc7f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vsu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rdme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy1sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykc7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xks2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaqpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21apf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbh1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbxbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byouv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwq4g") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p30n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0ttb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh11l") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihbb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0waka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0ms4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i62ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab0gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia0ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrwp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kb86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjhea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l14fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o061x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f26y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47m84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe3m1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sifeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hm43r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsnw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82n4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hw3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yohjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioskk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p82kd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterredsynja.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterredsynja.tres new file mode 100644 index 0000000..aca9ede --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterredsynja.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://dtcksd28kd3un"] + +[ext_resource type="Texture2D" uid="uid://c31cmvpmncpvb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png" id="1_sdj78"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_87lcj"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e51e0"] +atlas = ExtResource("1_sdj78") +region = Rect2(486, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5pm3"] +atlas = ExtResource("1_sdj78") +region = Rect2(486, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey83x"] +atlas = ExtResource("1_sdj78") +region = Rect2(486, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qyit"] +atlas = ExtResource("1_sdj78") +region = Rect2(486, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsdn4"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8y8si"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srjeb"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkrmb"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aabl"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk08t"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5qd7"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwe27"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52ufj"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ek88"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al25v"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psjkm"] +atlas = ExtResource("1_sdj78") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_geo3r"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvgln"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ccjr"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eskib"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8h7y"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl5xg"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve2au"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nfbo"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bnxh"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcxwk"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qt7b"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3snxa"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wudhu"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koupe"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2w3p"] +atlas = ExtResource("1_sdj78") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkt1e"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x4ep"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_byssi"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsjf3"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjh34"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8a05"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01wok"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7srwf"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s52n"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnlmf"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7m24"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvjde"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axg3j"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gga21"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kah5a"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxnql"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8n0v"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkvae"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cpv4c"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4hhd"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wycuv"] +atlas = ExtResource("1_sdj78") +region = Rect2(486, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_666af"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaewi"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d6tk"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggdo4"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxd3a"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5a8p"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4b2w1"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmiij"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqyye"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrmo4"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fokig"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n638u"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vpc4"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd7ld"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6wag"] +atlas = ExtResource("1_sdj78") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5vqe"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evcyr"] +atlas = ExtResource("1_sdj78") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg2sw"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ovf6"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ar4t"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4siw"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sx0hc"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k61mk"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2jd7"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgyb1"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jww7d"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvs7j"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txxt8"] +atlas = ExtResource("1_sdj78") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teu7o"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fiirn"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0pe5"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdunu"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_megqm"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xlmn"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5180w"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2me3o"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cvjo"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxo61"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6pgc"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxggo"] +atlas = ExtResource("1_sdj78") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_87lcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e51e0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5pm3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey83x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qyit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsdn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8y8si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srjeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkrmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aabl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk08t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5qd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwe27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52ufj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ek88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al25v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psjkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_geo3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvgln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ccjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eskib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8h7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl5xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve2au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nfbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bnxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcxwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qt7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3snxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wudhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koupe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2w3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkt1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x4ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_byssi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsjf3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjh34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8a05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01wok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7srwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s52n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnlmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7m24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvjde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axg3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gga21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kah5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxnql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8n0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkvae") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cpv4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4hhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wycuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_666af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaewi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d6tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggdo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxd3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5a8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4b2w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmiij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqyye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrmo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fokig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n638u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vpc4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd7ld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6wag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5vqe") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_evcyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg2sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ovf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ar4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4siw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sx0hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k61mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2jd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgyb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jww7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvs7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txxt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teu7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fiirn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0pe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdunu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_megqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xlmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5180w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2me3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cvjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxo61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6pgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxggo") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstershreddingmantis.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstershreddingmantis.tres new file mode 100644 index 0000000..aa50927 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monstershreddingmantis.tres @@ -0,0 +1,442 @@ +[gd_resource type="SpriteFrames" load_steps=60 format=3 uid="uid://cq5lhf0melfjd"] + +[ext_resource type="Texture2D" uid="uid://dpoqiscgxqpuv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png" id="1_ev3l0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb5h3"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wufdt"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xruf"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acxuv"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u8ti"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqs6n"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wpd5"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23fi6"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltouj"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koqnd"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qp1k"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hyyu"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv1ip"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw1tp"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roipm"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qe1l"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srem5"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr0tl"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2c4t"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gf00o"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78bwr"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xidr"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7qli"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x36pd"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsuc1"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyjar"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwnau"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6pgm"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l0yg"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n2ng"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2i1k"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trleh"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoyeb"] +atlas = ExtResource("1_ev3l0") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcj7u"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwofx"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bloov"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2881"] +atlas = ExtResource("1_ev3l0") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc3oe"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg8vh"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8epi"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4hbk"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlqmf"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rorr"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3j1v"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bym65"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7h85"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvea4"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjvg5"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrupg"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i8b2"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1qfs"] +atlas = ExtResource("1_ev3l0") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fj6nv"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijouy"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sunr2"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alxso"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ospcw"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fxos"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btvut"] +atlas = ExtResource("1_ev3l0") +region = Rect2(81, 81, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb5h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wufdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xruf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acxuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u8ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqs6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wpd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23fi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltouj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koqnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qp1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hyyu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv1ip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw1tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roipm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qe1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srem5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr0tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2c4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gf00o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78bwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xidr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7qli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x36pd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsuc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyjar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwnau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6pgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l0yg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n2ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2i1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trleh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoyeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcj7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwofx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bloov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2881") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc3oe") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg8vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8epi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4hbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlqmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rorr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3j1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bym65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7h85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvea4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjvg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrupg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i8b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1qfs") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fj6nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijouy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sunr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alxso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ospcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fxos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btvut") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterwhistlingblade.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterwhistlingblade.tres new file mode 100644 index 0000000..e47ef8e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_monsterwhistlingblade.tres @@ -0,0 +1,449 @@ +[gd_resource type="SpriteFrames" load_steps=61 format=3 uid="uid://cc6akefqud0hu"] + +[ext_resource type="Texture2D" uid="uid://cwttsfdxqist7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png" id="1_nyg0s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_cocpt"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u6eg"] +atlas = ExtResource("1_nyg0s") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehvao"] +atlas = ExtResource("1_nyg0s") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vwy0"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84rqv"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73tk0"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ftkb"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xusg"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e867"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be184"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb88y"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjshj"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hagoj"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_845yu"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bktc"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw355"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcejn"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vptrm"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgtxo"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qir3"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uf25"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4k5w"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoc4s"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i84j"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uxpx"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3cvv"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1lpm"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3tk7"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe2n3"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3qlq"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeg7p"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xayu"] +atlas = ExtResource("1_nyg0s") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7pts"] +atlas = ExtResource("1_nyg0s") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la0xq"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c6rp"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3gpf"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy25w"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmj7j"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph76y"] +atlas = ExtResource("1_nyg0s") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2hnd"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78jmt"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntw68"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i1po"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnd2y"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u64fj"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5do"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgfb5"] +atlas = ExtResource("1_nyg0s") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxo2j"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txuep"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg7qy"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpyiv"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78t2e"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irulf"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bffjp"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0d6h"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o25pf"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fajc"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jo88"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53f5r"] +atlas = ExtResource("1_nyg0s") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cocpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u6eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehvao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vwy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84rqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73tk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ftkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xusg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e867") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_be184") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb88y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjshj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hagoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_845yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bktc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw355") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcejn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vptrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgtxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qir3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uf25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4k5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoc4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i84j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uxpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3cvv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1lpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3tk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe2n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3qlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeg7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xayu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7pts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la0xq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c6rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3gpf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy25w") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmj7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph76y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2hnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78jmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntw68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i1po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnd2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u64fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgfb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxo2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txuep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg7qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpyiv") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_78t2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irulf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bffjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0d6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o25pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fajc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jo88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53f5r") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moonlitsorcerer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moonlitsorcerer.tres new file mode 100644 index 0000000..66f466e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_moonlitsorcerer.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://cqipl0y1w6q8j"] + +[ext_resource type="Texture2D" uid="uid://b6pat076484q5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png" id="1_c6r4b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywtm1"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_puioc"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shg0x"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nf3d"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq14g"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74tlm"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyic8"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nyqe"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sot4g"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25lav"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4gyt"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbii2"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7b0q"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hc6p"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yccm5"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vmm2"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdfai"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2vp2"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88isv"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_milpp"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x0nr"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6bxj"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10isu"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53o3x"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t4a1"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3skw"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk1jm"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64f1g"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gk5c"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uid6l"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dlr3"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p80r7"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwtao"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q36y"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1f63"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vly8v"] +atlas = ExtResource("1_c6r4b") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5nbu"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvuhk"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj2ho"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl5bv"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr565"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws6uu"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1no1"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xof1"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23x5x"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cg5p"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kspyf"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_065a2"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb5wq"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qa24c"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3fo6"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi00a"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptnuw"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ml3"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrwaq"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41r0y"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifr4u"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3qcp"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsm8w"] +atlas = ExtResource("1_c6r4b") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bks5y"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk260"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h2pv"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ubmi"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dncn"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nygkg"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv4wi"] +atlas = ExtResource("1_c6r4b") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mj8"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5igh"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idv2n"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rosw3"] +atlas = ExtResource("1_c6r4b") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twwqk"] +atlas = ExtResource("1_c6r4b") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvjx5"] +atlas = ExtResource("1_c6r4b") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu6nu"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv6cp"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_475yo"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4x1w"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6gxs"] +atlas = ExtResource("1_c6r4b") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6pqf"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr475"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86l5t"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhj01"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oelel"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olvte"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs0xe"] +atlas = ExtResource("1_c6r4b") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3k7gt"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkha5"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t803q"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpseo"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am6v7"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drvgs"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rlku8"] +atlas = ExtResource("1_c6r4b") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywtm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_puioc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shg0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nf3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq14g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74tlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyic8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nyqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sot4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25lav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4gyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbii2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7b0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hc6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yccm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vmm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdfai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2vp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88isv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_milpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x0nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6bxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10isu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53o3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t4a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3skw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk1jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64f1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gk5c") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uid6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dlr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p80r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwtao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q36y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1f63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vly8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5nbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvuhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj2ho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl5bv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr565") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws6uu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1no1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xof1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23x5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cg5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kspyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_065a2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb5wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qa24c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3fo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi00a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ml3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrwaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41r0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifr4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3qcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsm8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bks5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk260") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h2pv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ubmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dncn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nygkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv4wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5igh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_idv2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rosw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twwqk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvjx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu6nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv6cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_475yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4x1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6gxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6pqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr475") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86l5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhj01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oelel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olvte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs0xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3k7gt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkha5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t803q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpseo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am6v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drvgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rlku8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mrgoldmclover.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mrgoldmclover.tres new file mode 100644 index 0000000..486ba94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mrgoldmclover.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://dh3nlfb7f7bo3"] + +[ext_resource type="Texture2D" uid="uid://bo8f70lwhl7nu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png" id="1_sc8jy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv8gw"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbvg2"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mti4k"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj6yv"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t2k7"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au3wq"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl5y2"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxavy"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyf8b"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi4qx"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly4po"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycc6m"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjh4j"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gk13"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vg7c"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rct0x"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnsdi"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y544"] +atlas = ExtResource("1_sc8jy") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vr3iu"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgyxe"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rle78"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7dua"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lq3f"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15i48"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cacvs"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6diba"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tity"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpmma"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6igyf"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5jjn"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j67r4"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ekr"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1vw0"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mka38"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qh04"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msibv"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxdlc"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1hea"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiuex"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u65ck"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a86xc"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5lps"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mirn"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ycwv"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b67qj"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h07ft"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrynt"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fu0o"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1svkl"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu67l"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rutit"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syj7b"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o7ys"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp3u4"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl3bh"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17ne5"] +atlas = ExtResource("1_sc8jy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sg48"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjvhr"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf1w7"] +atlas = ExtResource("1_sc8jy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c5xx"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqi22"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mj5b0"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd03c"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nkwq"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpp7j"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r0x6"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3ca6"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_256ou"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hxlf"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ic3wo"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjpbw"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sycjr"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v84ic"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysuh8"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtqwd"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0vd6"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_783rn"] +atlas = ExtResource("1_sc8jy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ncle"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsopk"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcu1r"] +atlas = ExtResource("1_sc8jy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q21us"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylwiv"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dj0pi"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp3kn"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjf0t"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3elhq"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxmhb"] +atlas = ExtResource("1_sc8jy") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si24t"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qaxh"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7rs4"] +atlas = ExtResource("1_sc8jy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uad1t"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cagh"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4a4b"] +atlas = ExtResource("1_sc8jy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmik6"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p87hr"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmenf"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvjkv"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm7a7"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf6bh"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bubpo"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojb2o"] +atlas = ExtResource("1_sc8jy") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv8gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbvg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mti4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj6yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t2k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au3wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl5y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxavy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyf8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi4qx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly4po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycc6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjh4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gk13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vg7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rct0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnsdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y544") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vr3iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgyxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rle78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7dua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lq3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15i48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cacvs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6diba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tity") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpmma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6igyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5jjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j67r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ekr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1vw0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mka38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qh04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msibv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxdlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1hea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiuex") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u65ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a86xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5lps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mirn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ycwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b67qj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h07ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrynt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fu0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1svkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu67l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rutit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syj7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o7ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp3u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl3bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17ne5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sg48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjvhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf1w7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c5xx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqi22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mj5b0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd03c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nkwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpp7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r0x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3ca6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_256ou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hxlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ic3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjpbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sycjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v84ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysuh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtqwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0vd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_783rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ncle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsopk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcu1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q21us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylwiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dj0pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp3kn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjf0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3elhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxmhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si24t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qaxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7rs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uad1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cagh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4a4b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmik6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p87hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmenf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvjkv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm7a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf6bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bubpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojb2o") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mystery.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mystery.tres new file mode 100644 index 0000000..00358a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_mystery.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://dqhwwjipl80d3"] + +[ext_resource type="Texture2D" uid="uid://c0q7iqa01jixa" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png" id="1_l6ffk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yj5k"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qls4"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e31nf"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kiwrk"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi2ca"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n23vh"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5n8xl"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnrtq"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fibp0"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4ec2"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_507qp"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mbaq"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1fmd"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8g04"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2h6j"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8cbc"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljjlk"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy70r"] +atlas = ExtResource("1_l6ffk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_egb5y"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm8yx"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r244u"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r81v"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cim4"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0b1t"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k37x6"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b203"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em25v"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kc71"] +atlas = ExtResource("1_l6ffk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e1tl"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1g52"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmgh6"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aen67"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk5gy"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4fvp"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgjyf"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihxnv"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyrx1"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emunn"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nefg"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g47b"] +atlas = ExtResource("1_l6ffk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bg3l"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frtpt"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yrg5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_567vv"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh86o"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j31b5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67dl5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uyif"] +atlas = ExtResource("1_l6ffk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk4vw"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if3wo"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlvv5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvgb5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a2m4"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbpfd"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ur4p"] +atlas = ExtResource("1_l6ffk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k7do"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eveqt"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bggwr"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e200w"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jdbu"] +atlas = ExtResource("1_l6ffk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2j1i"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yru01"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edr3f"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_703em"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13ng5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5c8n"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t7a4"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mnpu"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d5b3"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpj14"] +atlas = ExtResource("1_l6ffk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp1mw"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p73l2"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ladk5"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohymk"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52et8"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onq86"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p0y3"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqk1j"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmcnh"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ktsl"] +atlas = ExtResource("1_l6ffk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yj5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qls4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e31nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kiwrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi2ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n23vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5n8xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnrtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fibp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4ec2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_507qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mbaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1fmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8g04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2h6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8cbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljjlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy70r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_egb5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm8yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r244u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r81v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cim4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0b1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k37x6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b203") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em25v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kc71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e1tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1g52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmgh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aen67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk5gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4fvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgjyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihxnv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyrx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emunn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nefg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g47b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bg3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frtpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yrg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_567vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh86o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j31b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67dl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uyif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk4vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if3wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlvv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvgb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a2m4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbpfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ur4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k7do") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eveqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bggwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e200w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jdbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2j1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yru01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edr3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_703em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13ng5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5c8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t7a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mnpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d5b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpj14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp1mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p73l2") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ladk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohymk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52et8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onq86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p0y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqk1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmcnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ktsl") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nightwatcher.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nightwatcher.tres new file mode 100644 index 0000000..f9cdc9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nightwatcher.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://bbbwsxnbavsfn"] + +[ext_resource type="Texture2D" uid="uid://b2nhw83sbypop" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png" id="1_vpi88"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ah5t"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehimv"] +atlas = ExtResource("1_vpi88") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m5ky"] +atlas = ExtResource("1_vpi88") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eggx"] +atlas = ExtResource("1_vpi88") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsj6s"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7og47"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcnji"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj7v2"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh65q"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy6pt"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50f8a"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na7pi"] +atlas = ExtResource("1_vpi88") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mogla"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctmfj"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o28hp"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhgc5"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ads5x"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udh2w"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vomcg"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdi6u"] +atlas = ExtResource("1_vpi88") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyyou"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hgsk"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in6jq"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0sm0"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btm7f"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbh7v"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qsse"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dihvc"] +atlas = ExtResource("1_vpi88") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0asw8"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58iof"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7al8"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo7v5"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78r06"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3t1lu"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cekqq"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8lm2"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jawfp"] +atlas = ExtResource("1_vpi88") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yto5b"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xjt8"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7qi0"] +atlas = ExtResource("1_vpi88") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc6nu"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgfqo"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfj26"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6y5r"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ako1n"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uojd"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqof3"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4d8h"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogkoi"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f456t"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y17wm"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciosb"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqlbi"] +atlas = ExtResource("1_vpi88") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0pkd"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx2nf"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14p5o"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uehe"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmmwq"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxjkp"] +atlas = ExtResource("1_vpi88") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pkaj"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34sra"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oypy7"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47wx7"] +atlas = ExtResource("1_vpi88") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dvhc"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay8lc"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hrur"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8m6yq"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0bi4"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vci0o"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1iur"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3keuu"] +atlas = ExtResource("1_vpi88") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddnr7"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i8ke"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1q1u"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctn0x"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqow3"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8y30"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5qr2"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_appfm"] +atlas = ExtResource("1_vpi88") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ah5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehimv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m5ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsj6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7og47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcnji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj7v2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh65q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy6pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50f8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na7pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mogla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctmfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o28hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhgc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ads5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udh2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vomcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdi6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyyou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hgsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in6jq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0sm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btm7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbh7v") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qsse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dihvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0asw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58iof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7al8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo7v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78r06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3t1lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cekqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8lm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jawfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yto5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xjt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7qi0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc6nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgfqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfj26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6y5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ako1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqof3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4d8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogkoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f456t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y17wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciosb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqlbi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0pkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx2nf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14p5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uehe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmmwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxjkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pkaj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_34sra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oypy7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47wx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dvhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay8lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hrur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8m6yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0bi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vci0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1iur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3keuu") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddnr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i8ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1q1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctn0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqow3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8y30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5qr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_appfm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nip.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nip.tres new file mode 100644 index 0000000..6cd443c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_nip.tres @@ -0,0 +1,750 @@ +[gd_resource type="SpriteFrames" load_steps=104 format=3 uid="uid://bdrudx2d8eukj"] + +[ext_resource type="Texture2D" uid="uid://bxfmhmj2hpbas" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png" id="1_60rq4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1kp7"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnat6"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdanh"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx6nb"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spqg1"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hoiyx"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ooaaq"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qi13x"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am417"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3gnc"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl6lb"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5uiu"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wemcm"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr08e"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sj62"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idcqu"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmgwl"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j35pi"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iklnx"] +atlas = ExtResource("1_60rq4") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_038up"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2svx1"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4w3i"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_488av"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnl8f"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsve1"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpglc"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac7cg"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ul44i"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_235kf"] +atlas = ExtResource("1_60rq4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_534pm"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ks5k"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfifu"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmsj"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj0kx"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x0ka"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmex5"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33y7b"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlrgj"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08k8f"] +atlas = ExtResource("1_60rq4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8feac"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8nqn"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe82t"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4elef"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5u14"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbnyg"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuhhk"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr18m"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxlwr"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atax2"] +atlas = ExtResource("1_60rq4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv13v"] +atlas = ExtResource("1_60rq4") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_liyt5"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mm82"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p5v1"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrssi"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whdmi"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kpnn"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaycr"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg10d"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bl66"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq7pc"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0eyw4"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0cvt"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrjg0"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ilqp"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h66tc"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldnb6"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qpj8"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_175rg"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm6tn"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30mbc"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upran"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67ct8"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgf0c"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc7fn"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln7ll"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2nc2"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcc8e"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy332"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45hap"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gv4w"] +atlas = ExtResource("1_60rq4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yff1r"] +atlas = ExtResource("1_60rq4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qe15a"] +atlas = ExtResource("1_60rq4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy7wm"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h81vo"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bit0c"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oeca"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y5it"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuw6j"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2poqm"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwe0u"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfff0"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d72h5"] +atlas = ExtResource("1_60rq4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_niq5u"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_simha"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8maw"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xirxk"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae0t7"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcvh7"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0me1w"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5jtj"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufwrb"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy1w6"] +atlas = ExtResource("1_60rq4") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1kp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnat6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdanh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx6nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spqg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hoiyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ooaaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qi13x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am417") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3gnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl6lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5uiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wemcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr08e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sj62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idcqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmgwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j35pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iklnx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_038up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2svx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4w3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_488av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnl8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsve1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpglc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac7cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ul44i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_235kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_534pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ks5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfifu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj0kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x0ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmex5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33y7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlrgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08k8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8feac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8nqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe82t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4elef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5u14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbnyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuhhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr18m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxlwr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_atax2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv13v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_liyt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mm82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p5v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrssi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whdmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kpnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaycr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg10d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bl66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq7pc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0eyw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0cvt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrjg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ilqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h66tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldnb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qpj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_175rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm6tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30mbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upran") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67ct8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgf0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc7fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2nc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcc8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy332") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45hap") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gv4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yff1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qe15a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy7wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h81vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bit0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oeca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y5it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuw6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2poqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwe0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfff0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d72h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_niq5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_simha") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8maw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xirxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae0t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcvh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0me1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5jtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufwrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy1w6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_oni.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_oni.tres new file mode 100644 index 0000000..7122d45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_oni.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://bfdv2xnq8h5cw"] + +[ext_resource type="Texture2D" uid="uid://btc515swfwdyr" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png" id="1_03s11"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a1lc"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xywd"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsdkr"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27arr"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk68l"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62qto"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kojjy"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4myt"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1mxn"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jfro"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnmew"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dndq"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkpeh"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgk07"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6501"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oswij"] +atlas = ExtResource("1_03s11") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d82fk"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmkvb"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4tkyi"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8x2r"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2avbs"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7kwx"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c57t"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_247sm"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmrdh"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmxgf"] +atlas = ExtResource("1_03s11") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbfnb"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihom5"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbe13"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m82u5"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keasu"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j76y"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whcxr"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrddi"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia25d"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvcmu"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_683xm"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40lsb"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4j8x8"] +atlas = ExtResource("1_03s11") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mei3p"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hex22"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8d7q"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frfyg"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvcas"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uvj0"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es43k"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pnsf"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1chac"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8tywf"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1rub"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bntfl"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8hak"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lkrr"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qhl6"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux7yx"] +atlas = ExtResource("1_03s11") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flyeb"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7hxk"] +atlas = ExtResource("1_03s11") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ps64h"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cx7h"] +atlas = ExtResource("1_03s11") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjwmj"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3xiw"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lftnh"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3e8c"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eggf0"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_furhn"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixiqs"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5aw8"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h43cu"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxtqh"] +atlas = ExtResource("1_03s11") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6k5i"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_my5ti"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jer7"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lh76x"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yly5e"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kr5q"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dc7r"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3klcp"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axqq2"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4ypx"] +atlas = ExtResource("1_03s11") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a1lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xywd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsdkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27arr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk68l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62qto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kojjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4myt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1mxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jfro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnmew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dndq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkpeh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgk07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6501") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oswij") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d82fk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmkvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4tkyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8x2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2avbs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7kwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c57t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_247sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmrdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmxgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbfnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihom5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbe13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m82u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keasu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j76y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whcxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia25d") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvcmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_683xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40lsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4j8x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mei3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hex22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8d7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frfyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvcas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uvj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es43k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pnsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1chac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8tywf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1rub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bntfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8hak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lkrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qhl6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux7yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flyeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7hxk") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ps64h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cx7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjwmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3xiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lftnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3e8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eggf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_furhn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixiqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5aw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h43cu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxtqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6k5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_my5ti") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jer7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lh76x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yly5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kr5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dc7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3klcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axqq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4ypx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_owlshadescholar.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_owlshadescholar.tres new file mode 100644 index 0000000..c9a0ce3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_owlshadescholar.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://0ne7boyk3qm3"] + +[ext_resource type="Texture2D" uid="uid://b8tdag8mlntao" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png" id="1_x2875"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_loe6b"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktaem"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcpk0"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfdnu"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ne8r2"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm5l1"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw5pd"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kisf"] +atlas = ExtResource("1_x2875") +region = Rect2(756, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ke0s"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpcsl"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt4ms"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mw3g"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4be1"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfxw6"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6u55"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52fof"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up3wu"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vqt5"] +atlas = ExtResource("1_x2875") +region = Rect2(630, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d0fi"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhe42"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crr2q"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar2wu"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcr1k"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1pe4"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pojf"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cnhq"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1tvkj"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyvdd"] +atlas = ExtResource("1_x2875") +region = Rect2(504, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwao8"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qunp"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v0u4"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0h73"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yxax"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_738be"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hgxq"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfmkn"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pgnv"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrace"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iymlb"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37fbo"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aemov"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ejlg"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2ip1"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwmck"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcq0s"] +atlas = ExtResource("1_x2875") +region = Rect2(252, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl4r1"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_het4j"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_650x0"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgw0k"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85rxm"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y12n5"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imq6p"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhyrw"] +atlas = ExtResource("1_x2875") +region = Rect2(126, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chiv2"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usqbk"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4dv7"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu8xh"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8meg8"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okymc"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hifab"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sa4ao"] +atlas = ExtResource("1_x2875") +region = Rect2(0, 0, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1uaq"] +atlas = ExtResource("1_x2875") +region = Rect2(378, 882, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmxrb"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 756, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01l4o"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 630, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfy53"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 504, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cugjv"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 378, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n7d6"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 252, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4l4y"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 126, 125, 125) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51k8e"] +atlas = ExtResource("1_x2875") +region = Rect2(882, 0, 125, 125) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_loe6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktaem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcpk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfdnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ne8r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm5l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw5pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kisf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ke0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpcsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt4ms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mw3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4be1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfxw6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6u55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52fof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up3wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vqt5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d0fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhe42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crr2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar2wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcr1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1pe4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pojf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cnhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1tvkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyvdd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwao8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qunp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v0u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0h73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yxax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_738be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hgxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfmkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pgnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrace") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iymlb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37fbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aemov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ejlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2ip1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwmck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcq0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl4r1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_het4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_650x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgw0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85rxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y12n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imq6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhyrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chiv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usqbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4dv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu8xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8meg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okymc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hifab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sa4ao") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1uaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmxrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01l4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfy53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cugjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n7d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4l4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51k8e") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_paddo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_paddo.tres new file mode 100644 index 0000000..303cc3c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_paddo.tres @@ -0,0 +1,722 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://buxu2knvg42mv"] + +[ext_resource type="Texture2D" uid="uid://yt85otvj27yl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png" id="1_rwf15"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbx58"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_425c5"] +atlas = ExtResource("1_rwf15") +region = Rect2(1809, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp0x3"] +atlas = ExtResource("1_rwf15") +region = Rect2(1809, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r2hm"] +atlas = ExtResource("1_rwf15") +region = Rect2(1809, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bmap"] +atlas = ExtResource("1_rwf15") +region = Rect2(1809, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jrgg"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv6gm"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7ewm"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o20ir"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67rue"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v14ol"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvipj"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksv4x"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65rpx"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2728"] +atlas = ExtResource("1_rwf15") +region = Rect2(1608, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca4y3"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aya17"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln0x7"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gef1v"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td205"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmuao"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpip5"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj2g8"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmpkx"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s81oc"] +atlas = ExtResource("1_rwf15") +region = Rect2(1407, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5vks"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4n8e"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i4b3"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ujjj"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouseh"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnrnr"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtqge"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sbui"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvb16"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8nof"] +atlas = ExtResource("1_rwf15") +region = Rect2(1206, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7qgu"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmox5"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy70n"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp755"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tvlh"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4kwc"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21fvh"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apa0s"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnesj"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4myl"] +atlas = ExtResource("1_rwf15") +region = Rect2(1005, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tvmp"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n3ia"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80fe6"] +atlas = ExtResource("1_rwf15") +region = Rect2(1809, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ingcy"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqxjh"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47nh0"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ynn"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mei4"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dsok0"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv671"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssuxv"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly1xb"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rouux"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scvd7"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbwt2"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abq2r"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udkw7"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mo2j"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tmgr"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45qkp"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uycbo"] +atlas = ExtResource("1_rwf15") +region = Rect2(603, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l665q"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp0dd"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c64t"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sogc8"] +atlas = ExtResource("1_rwf15") +region = Rect2(804, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8jb4"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbwpw"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7gc3"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3i3v"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdxss"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37737"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laq2l"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7sj4"] +atlas = ExtResource("1_rwf15") +region = Rect2(402, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d17co"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvv8o"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2gsn"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8btm"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8t6qp"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53bpt"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1u2o"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0khq"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eumep"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufjxp"] +atlas = ExtResource("1_rwf15") +region = Rect2(201, 0, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1773"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 1809, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agc2e"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 1608, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myvk6"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 1407, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bott"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 1206, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ggg"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 1005, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulx6b"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 804, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71y64"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 603, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bib66"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 402, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4stl"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 201, 200, 200) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4170h"] +atlas = ExtResource("1_rwf15") +region = Rect2(0, 0, 200, 200) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbx58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_425c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp0x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r2hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bmap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jrgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv6gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7ewm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o20ir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67rue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v14ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvipj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksv4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65rpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2728") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca4y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aya17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln0x7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gef1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td205") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmuao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpip5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj2g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmpkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s81oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5vks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4n8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i4b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ujjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouseh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnrnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtqge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sbui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvb16") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8nof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7qgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmox5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy70n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp755") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tvlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4kwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21fvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apa0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnesj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4myl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tvmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n3ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80fe6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ingcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqxjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47nh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ynn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mei4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dsok0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv671") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssuxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly1xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rouux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scvd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbwt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abq2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udkw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mo2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tmgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45qkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uycbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l665q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp0dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c64t") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sogc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8jb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbwpw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7gc3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3i3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdxss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37737") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laq2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7sj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d17co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvv8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2gsn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8btm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8t6qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53bpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1u2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0khq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eumep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufjxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1773") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agc2e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_myvk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bott") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ggg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulx6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71y64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bib66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4stl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4170h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandora.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandora.tres new file mode 100644 index 0000000..6fc1a5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandora.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://3fioqwuk2vhc"] + +[ext_resource type="Texture2D" uid="uid://cbhufwkuc6me" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png" id="1_lnjfl"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bb8g"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dag7t"] +atlas = ExtResource("1_lnjfl") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc3en"] +atlas = ExtResource("1_lnjfl") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m431j"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxhm6"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvii8"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjc4q"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_323gn"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kwq7"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1aodk"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glhu0"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guylj"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrskv"] +atlas = ExtResource("1_lnjfl") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0n7c"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w1vg"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep67e"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1e7l"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chje4"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxijk"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvgk2"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edxke"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tu1o"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2ryt"] +atlas = ExtResource("1_lnjfl") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77cqj"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdoas"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfhae"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsbya"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35y1b"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1k3n"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaujm"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygh5j"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehmh4"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tunkf"] +atlas = ExtResource("1_lnjfl") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep58w"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16f6m"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bklid"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj5fr"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3kkw"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sopsl"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvlg6"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxqg7"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qshfl"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu5hj"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfoqm"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bno6k"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc1tu"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aioso"] +atlas = ExtResource("1_lnjfl") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8css"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjcww"] +atlas = ExtResource("1_lnjfl") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4f60"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_848bt"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2pb0"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k33th"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn4nr"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnf1p"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8871"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alkuo"] +atlas = ExtResource("1_lnjfl") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gre6c"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xigr6"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewduk"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1udhc"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8eww"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy5p4"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1va81"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rhua"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b27de"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vkbk"] +atlas = ExtResource("1_lnjfl") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bb8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dag7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc3en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m431j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxhm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvii8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjc4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_323gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kwq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1aodk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glhu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guylj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrskv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0n7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w1vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep67e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1e7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chje4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxijk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvgk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edxke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tu1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2ryt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77cqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdoas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfhae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsbya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35y1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1k3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaujm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygh5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehmh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tunkf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep58w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16f6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bklid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj5fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3kkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sopsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvlg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxqg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qshfl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu5hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfoqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bno6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc1tu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aioso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8css") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjcww") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4f60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_848bt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2pb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k33th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn4nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnf1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8871") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alkuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gre6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xigr6") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewduk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1udhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8eww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy5p4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1va81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rhua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b27de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vkbk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminioncelerity.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminioncelerity.tres new file mode 100644 index 0000000..f33d91f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminioncelerity.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://dr76wwo6pmisj"] + +[ext_resource type="Texture2D" uid="uid://81i7q7kt6hin" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png" id="1_wau38"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7qy1"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qanql"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2md8"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deaqv"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmxp8"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm6rg"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2c5d"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf5hu"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdgal"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_417ln"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpopw"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsfnm"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeaqk"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80k3a"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o4af"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1wxw"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xdkj"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqxc0"] +atlas = ExtResource("1_wau38") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivwy8"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g8mf"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohipf"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdt2f"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onfpg"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6um64"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fh50"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p7kr"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfutq"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vusp3"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bg4f1"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvbon"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yyxm"] +atlas = ExtResource("1_wau38") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyecp"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frdlc"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcl6c"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbp2f"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjdr0"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aibbb"] +atlas = ExtResource("1_wau38") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erq44"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dcn2"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0egr"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pd2s"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psvpq"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md3i7"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1ewf"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6luws"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umyqj"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0hjv"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj67r"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22emf"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3fie"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jnnr"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnjvq"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_knkd0"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rf7yr"] +atlas = ExtResource("1_wau38") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axk42"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrvx7"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20c8e"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xi266"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piptb"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2t7e"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8yca"] +atlas = ExtResource("1_wau38") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gawyb"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar8gm"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqyn4"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37577"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlk2b"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy7gl"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_praqs"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqdme"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7bv2"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lada"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2bst"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_472bd"] +atlas = ExtResource("1_wau38") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7qy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qanql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2md8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deaqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmxp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm6rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2c5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf5hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdgal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_417ln") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpopw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsfnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeaqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80k3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o4af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1wxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xdkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqxc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivwy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g8mf") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohipf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdt2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onfpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6um64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fh50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p7kr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfutq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vusp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bg4f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvbon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yyxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyecp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frdlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcl6c") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbp2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjdr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aibbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erq44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dcn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0egr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pd2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psvpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md3i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1ewf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6luws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umyqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0hjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj67r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22emf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3fie") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jnnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnjvq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_knkd0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rf7yr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axk42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrvx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20c8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xi266") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piptb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2t7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8yca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gawyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar8gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqyn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37577") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlk2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy7gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_praqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqdme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7bv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lada") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2bst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_472bd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfly.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfly.tres new file mode 100644 index 0000000..6818000 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfly.tres @@ -0,0 +1,533 @@ +[gd_resource type="SpriteFrames" load_steps=73 format=3 uid="uid://bcseyw05nywso"] + +[ext_resource type="Texture2D" uid="uid://gvhuour4857p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png" id="1_6fq04"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p6rj"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7350"] +atlas = ExtResource("1_6fq04") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7py3h"] +atlas = ExtResource("1_6fq04") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e36pe"] +atlas = ExtResource("1_6fq04") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ubl8"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i41ny"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaa6m"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_470lq"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unb2m"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fs24n"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7saas"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdshm"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su7ly"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j10t"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnkf2"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onjlj"] +atlas = ExtResource("1_6fq04") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dqi4h"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny282"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uakj7"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1usrk"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7male"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amn3i"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8o2d"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ex0ko"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqscn"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71dke"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v0wi"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_172b6"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03mx3"] +atlas = ExtResource("1_6fq04") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtiq1"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrex3"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpjvc"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esepm"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcicp"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1den7"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7hyf"] +atlas = ExtResource("1_6fq04") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2be6"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwv8h"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ufcm"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48agc"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2bfg"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huucj"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfdaj"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_banjq"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da76w"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekb2p"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqemi"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkqy8"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyxfw"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otkdx"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xuitr"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wsmp"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtuhq"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6m05"] +atlas = ExtResource("1_6fq04") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvpdm"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyrei"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvx24"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkbss"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rejma"] +atlas = ExtResource("1_6fq04") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0nlx"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fcx7"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmavt"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32l8j"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mh5do"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpkm7"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdtdt"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujix2"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2cnc"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk1ik"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbl17"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6o5q"] +atlas = ExtResource("1_6fq04") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p6rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7350") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7py3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e36pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ubl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i41ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaa6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_470lq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unb2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fs24n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7saas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdshm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su7ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j10t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnkf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onjlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dqi4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny282") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uakj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1usrk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7male") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amn3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8o2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ex0ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqscn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71dke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v0wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_172b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03mx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtiq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrex3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpjvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esepm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcicp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1den7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7hyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2be6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwv8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ufcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48agc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2bfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huucj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfdaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_banjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da76w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekb2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqemi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkqy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyxfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otkdx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xuitr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wsmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtuhq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6m05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvpdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyrei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvx24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkbss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rejma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0nlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fcx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmavt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32l8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mh5do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpkm7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdtdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujix2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2cnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk1ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbl17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6o5q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfrenzy.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfrenzy.tres new file mode 100644 index 0000000..2cc8c85 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionfrenzy.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://1bp68j8u48co"] + +[ext_resource type="Texture2D" uid="uid://d37ua4dmn6vrh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png" id="1_142hv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmgd7"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruxci"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3p1r"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmwtd"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhgng"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvpon"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv36u"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tj35g"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6o11"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm004"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jylso"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp6n4"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yuep3"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmd3c"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_611fq"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d17cd"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7a6r"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq247"] +atlas = ExtResource("1_142hv") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i3bf"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdwgx"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppcow"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk4rw"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctk2y"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbr0d"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36ci3"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkeba"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6spts"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0t8w"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wght0"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuqbe"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwqua"] +atlas = ExtResource("1_142hv") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5osh1"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8oj7"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71vkp"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46nag"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skvbp"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u1i4"] +atlas = ExtResource("1_142hv") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7rur"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvs00"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1chy"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5af4c"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6guqn"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2usx"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hhjc"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwray"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a25ks"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vyhu"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fxcp"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcray"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq8di"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk3t4"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwiwr"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31yip"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n0pk"] +atlas = ExtResource("1_142hv") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwokh"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx7ow"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gejd1"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oowfn"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r54d"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nutx2"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3idod"] +atlas = ExtResource("1_142hv") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5pa3"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ju1f"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sdw6"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60m26"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6f6q"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hetn"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ehxh"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jebfw"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gupb8"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f314"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpde8"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otu6i"] +atlas = ExtResource("1_142hv") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmgd7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruxci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3p1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmwtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhgng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvpon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv36u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tj35g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6o11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm004") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jylso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp6n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yuep3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmd3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_611fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d17cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7a6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq247") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i3bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdwgx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppcow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk4rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctk2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbr0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36ci3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkeba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6spts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0t8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wght0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuqbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwqua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5osh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8oj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71vkp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_46nag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skvbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u1i4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7rur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvs00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1chy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5af4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6guqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2usx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hhjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwray") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a25ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vyhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fxcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcray") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq8di") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk3t4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwiwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31yip") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n0pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwokh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx7ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gejd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oowfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r54d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nutx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3idod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5pa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ju1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sdw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60m26") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6f6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hetn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ehxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jebfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gupb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f314") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpde8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otu6i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionprovoke.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionprovoke.tres new file mode 100644 index 0000000..971e4df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionprovoke.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://bgjq5l6so4gx"] + +[ext_resource type="Texture2D" uid="uid://ce0xcx22kcc6k" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png" id="1_jb57i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mivmn"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhphp"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3gjg"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awphv"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_728r6"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u064m"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh8us"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su5rv"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh0aw"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyqn3"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctapg"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbv54"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i53hr"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rk6x"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qx2t1"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03kl0"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsiu1"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q00t6"] +atlas = ExtResource("1_jb57i") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iciy3"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j5hu"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn4w5"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb24f"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chm0w"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy6xt"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngtoh"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcv5x"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0odpi"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgoel"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uskxu"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0567k"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmauw"] +atlas = ExtResource("1_jb57i") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfcob"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dyrf"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbsnv"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cngw"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dnor"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu1d6"] +atlas = ExtResource("1_jb57i") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmwbo"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow08f"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiut5"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0qcb"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gv32"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbexc"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hg0g"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50fnl"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whrp3"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl5c0"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3syde"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spj6o"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31g6d"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dvbq"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23lu7"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexad"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7qpk"] +atlas = ExtResource("1_jb57i") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2rbg"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5p2y"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnpjk"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bedu0"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mhrd"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0103a"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvwvj"] +atlas = ExtResource("1_jb57i") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc2b5"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qshmt"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nee32"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wti5j"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfmo6"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxkdq"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfmah"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6uw87"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkygr"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxk88"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fewxr"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yvtf"] +atlas = ExtResource("1_jb57i") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mivmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhphp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3gjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awphv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_728r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u064m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh8us") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su5rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh0aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyqn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctapg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbv54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i53hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rk6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qx2t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03kl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsiu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q00t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iciy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j5hu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn4w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb24f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chm0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy6xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngtoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcv5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0odpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgoel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uskxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0567k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmauw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfcob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dyrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbsnv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cngw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dnor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu1d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmwbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow08f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiut5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0qcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gv32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbexc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hg0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50fnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whrp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl5c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3syde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spj6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31g6d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dvbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23lu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexad") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7qpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2rbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5p2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnpjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bedu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mhrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0103a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvwvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc2b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qshmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nee32") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wti5j") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfmo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxkdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfmah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6uw87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkygr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxk88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fewxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yvtf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionrush.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionrush.tres new file mode 100644 index 0000000..8eb707e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pandoraminionrush.tres @@ -0,0 +1,547 @@ +[gd_resource type="SpriteFrames" load_steps=75 format=3 uid="uid://cr2vfe4yvuxyu"] + +[ext_resource type="Texture2D" uid="uid://cw0kuvny550b6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png" id="1_qktlx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dev36"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hep4x"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixyxb"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brcpr"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfy7j"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey46j"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvcid"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ika1f"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbw2k"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ncac"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4lai"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl4df"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gwwg"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w3ug"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5mtp"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryfuf"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gthmx"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6wyy"] +atlas = ExtResource("1_qktlx") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cv0hu"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riiuk"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71yfa"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8qhc"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iowne"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exqxe"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pkey"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acwie"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7e5n"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm4gp"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r2v5"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cr70"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22bsa"] +atlas = ExtResource("1_qktlx") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5ife"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbwvi"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnxmx"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_larp3"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgft3"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe6uw"] +atlas = ExtResource("1_qktlx") +region = Rect2(405, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psyvt"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uss31"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krq1u"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvd81"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tguoc"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gcu3"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r607p"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_078gi"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4e4m6"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bcsx"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24e88"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5ogb"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbtyu"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77l76"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0cek"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x244h"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcoct"] +atlas = ExtResource("1_qktlx") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02eyx"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_piafe"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik3jw"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olog8"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxsdt"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvns8"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjn4d"] +atlas = ExtResource("1_qktlx") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf3t5"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xo31v"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gyvn"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qiw6b"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgebk"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfe64"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc6cl"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydff1"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fk12s"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elytu"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yh4b"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tngtn"] +atlas = ExtResource("1_qktlx") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dev36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hep4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixyxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brcpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfy7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey46j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvcid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ika1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbw2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ncac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4lai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl4df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gwwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w3ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5mtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryfuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gthmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6wyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cv0hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riiuk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_71yfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8qhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iowne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exqxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pkey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acwie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7e5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm4gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r2v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cr70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22bsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5ife") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbwvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnxmx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_larp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgft3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe6uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psyvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uss31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krq1u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvd81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tguoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gcu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r607p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_078gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4e4m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bcsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24e88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5ogb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbtyu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77l76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0cek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x244h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcoct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02eyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_piafe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik3jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olog8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxsdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvns8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjn4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf3t5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xo31v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gyvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qiw6b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgebk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfe64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc6cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydff1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fk12s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elytu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yh4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tngtn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_partyelf.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_partyelf.tres new file mode 100644 index 0000000..d624537 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_partyelf.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://36qjhtgcc3my"] + +[ext_resource type="Texture2D" uid="uid://bd4sitva03ba3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png" id="1_lnr7o"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aumx"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6oys"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grj08"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj3it"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n3bg"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng7uc"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf47v"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlrx"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o56h"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icpmq"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ib8c"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypsgc"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go4wg"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76k6n"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sn06g"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mynuc"] +atlas = ExtResource("1_lnr7o") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj5jo"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ytwj"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmi8j"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow06k"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g604m"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dxjj"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p077c"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aem55"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrwew"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brv3h"] +atlas = ExtResource("1_lnr7o") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spdgq"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1o2t"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycd2y"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l87tq"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5hgv"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kx3e"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q54iu"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b80hx"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3nfy"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73g2p"] +atlas = ExtResource("1_lnr7o") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idgag"] +atlas = ExtResource("1_lnr7o") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo6r6"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkxny"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okafi"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36b34"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f6c"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqfvn"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwu3i"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3hbf"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7hte"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8nht"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g57ju"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h26gb"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nwdk"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xncsv"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2n86"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeuvl"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naksf"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8ajg"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkk6k"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pupvm"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gd0s"] +atlas = ExtResource("1_lnr7o") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6844"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ias4g"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1187b"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j68yr"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffcj3"] +atlas = ExtResource("1_lnr7o") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1g15"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gm1r"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frkmj"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qelme"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3ujo"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc5di"] +atlas = ExtResource("1_lnr7o") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u1by"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vlu4"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eau3p"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0jgk"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68xsk"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igjjt"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_punyo"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hnjp"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dx4jh"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j062r"] +atlas = ExtResource("1_lnr7o") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n23nk"] +atlas = ExtResource("1_lnr7o") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_betpp"] +atlas = ExtResource("1_lnr7o") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kmme"] +atlas = ExtResource("1_lnr7o") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw60u"] +atlas = ExtResource("1_lnr7o") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rieau"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkmek"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erejo"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fnpoq"] +atlas = ExtResource("1_lnr7o") +region = Rect2(707, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aumx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6oys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grj08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj3it") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n3bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng7uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf47v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvlrx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o56h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icpmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ib8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypsgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go4wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76k6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sn06g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mynuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj5jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ytwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmi8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow06k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g604m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dxjj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p077c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aem55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrwew") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_brv3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spdgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1o2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycd2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l87tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5hgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kx3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q54iu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b80hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3nfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73g2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idgag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo6r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkxny") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_okafi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36b34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74f6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqfvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwu3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3hbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7hte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8nht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g57ju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h26gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nwdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xncsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2n86") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeuvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naksf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8ajg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkk6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pupvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gd0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6844") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ias4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1187b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j68yr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffcj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1g15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gm1r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_frkmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qelme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3ujo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc5di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u1by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vlu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eau3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0jgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68xsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igjjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_punyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hnjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dx4jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j062r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n23nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_betpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kmme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw60u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rieau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkmek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erejo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fnpoq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade01.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade01.tres new file mode 100644 index 0000000..a742a52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade01.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://y4w8mj3ilwiu"] + +[ext_resource type="Texture2D" uid="uid://cdgj0hhns52ad" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png" id="1_m8rpk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7macl"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifkcp"] +atlas = ExtResource("1_m8rpk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i2x4"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w5bo"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vevp"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8jwj"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idmo0"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7b8n0"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qc8ns"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l133i"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17byq"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3047d"] +atlas = ExtResource("1_m8rpk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvfy"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oisl"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13akp"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csbwo"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wetix"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs1u8"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcrb4"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a638t"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_745up"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x06qp"] +atlas = ExtResource("1_m8rpk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hi3u"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76qgg"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f18ol"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gji3h"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la783"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4mib"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eldgh"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a7cd"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w22td"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p268"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu1in"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqvip"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppj7m"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5v7v"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfj4y"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4w2i"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhu1l"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgwri"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1qtb"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pyjs"] +atlas = ExtResource("1_m8rpk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xk7k"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlby5"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc1nv"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdxop"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ow25t"] +atlas = ExtResource("1_m8rpk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2t0sy"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3siy8"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f0jve"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e6qi"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50j24"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq8fv"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xriuf"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trljp"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nh4g"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me6rv"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i8wdn"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mytti"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fle5e"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7g8v"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou21r"] +atlas = ExtResource("1_m8rpk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heveh"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrl4n"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i6r4"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2r5d"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i02dx"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbeux"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7hgq"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wv6jr"] +atlas = ExtResource("1_m8rpk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyi08"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dkby"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dko2g"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdxcc"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hdud"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ara0g"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfx7c"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhbpl"] +atlas = ExtResource("1_m8rpk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okc6v"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xab1"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caobx"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co1r5"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ejq"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qxv1"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6g3j"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrv87"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvf2k"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayrkn"] +atlas = ExtResource("1_m8rpk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7macl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifkcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i2x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w5bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vevp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8jwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idmo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7b8n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qc8ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l133i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17byq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3047d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oisl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13akp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csbwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wetix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs1u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcrb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a638t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_745up") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x06qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hi3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76qgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f18ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gji3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la783") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4mib") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eldgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a7cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w22td") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p268") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu1in") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqvip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppj7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5v7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfj4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4w2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhu1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgwri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1qtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pyjs") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xk7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlby5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc1nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdxop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ow25t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2t0sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3siy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f0jve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e6qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50j24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq8fv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xriuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trljp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nh4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me6rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i8wdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mytti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fle5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7g8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou21r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heveh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrl4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i6r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2r5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i02dx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbeux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7hgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wv6jr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyi08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dkby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dko2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdxcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hdud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ara0g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfx7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhbpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okc6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xab1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_caobx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co1r5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ejq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qxv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6g3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrv87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvf2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayrkn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade02.tres new file mode 100644 index 0000000..3b9cb37 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade02.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://b5qox6q1g6l2a"] + +[ext_resource type="Texture2D" uid="uid://e0f774p4gk5m" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png" id="1_pxqqb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wiyg8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcuqo"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnoe8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jb1m0"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50bl0"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abqbd"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uj3qm"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss266"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nnfp"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36yts"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0wra"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seonl"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl80l"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2tww"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xhh1"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hc4n"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxfhb"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74iog"] +atlas = ExtResource("1_pxqqb") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxikp"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glypc"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj80y"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqtor"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltdu8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gb8y"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjhp6"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdni8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soho2"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwn0o"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs7sb"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm0y2"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyn6k"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnl7c"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0kyy"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2jiu"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elknn"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieoac"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o42r"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg62o"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrb3i"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfwfm"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4wv4"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwmwl"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dngxe"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iks0m"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n5kb"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2gu7"] +atlas = ExtResource("1_pxqqb") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nkxs"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7d3s"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56csq"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66l5a"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2h44"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeb3j"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgeo4"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aia2"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt5yt"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34311"] +atlas = ExtResource("1_pxqqb") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qahlg"] +atlas = ExtResource("1_pxqqb") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h73qd"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob1uw"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0qo8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q30qs"] +atlas = ExtResource("1_pxqqb") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqlkf"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27377"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbre6"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p07gl"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8um72"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woi7i"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyvxt"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wdr6"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbep6"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwgh7"] +atlas = ExtResource("1_pxqqb") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elxpg"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hg7ep"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naue1"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vghp3"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwioh"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77mv3"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5y1c"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bocq8"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6f27"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihlug"] +atlas = ExtResource("1_pxqqb") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wiyg8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcuqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnoe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jb1m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50bl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abqbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uj3qm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss266") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nnfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36yts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0wra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seonl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl80l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2tww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xhh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hc4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxfhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74iog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxikp") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_glypc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj80y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqtor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltdu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gb8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjhp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdni8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soho2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwn0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs7sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm0y2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyn6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnl7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0kyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2jiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elknn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieoac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o42r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg62o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrb3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfwfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4wv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwmwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dngxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iks0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n5kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2gu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nkxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7d3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56csq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66l5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2h44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeb3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgeo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aia2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt5yt") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_34311") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qahlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h73qd") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob1uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0qo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q30qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqlkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27377") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbre6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p07gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8um72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woi7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyvxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wdr6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbep6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwgh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elxpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hg7ep") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_naue1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vghp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwioh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77mv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5y1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bocq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6f27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihlug") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade03.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade03.tres new file mode 100644 index 0000000..f0820b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade03.tres @@ -0,0 +1,827 @@ +[gd_resource type="SpriteFrames" load_steps=115 format=3 uid="uid://cokybmp7ladh4"] + +[ext_resource type="Texture2D" uid="uid://b5p3gvnidxsfd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png" id="1_bw27h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxd0m"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mygfp"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is0qu"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lied2"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n37yi"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udu7t"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7sfo0"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5btj"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0b7rl"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikyyc"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss3i8"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36kiv"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg444"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqap4"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo0dv"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of7tj"] +atlas = ExtResource("1_bw27h") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58ufc"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nj3j"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_404ej"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j35qy"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du1jx"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj86l"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05l74"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1mxk"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2yj3"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcxk4"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmpcj"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcsjg"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7kcb"] +atlas = ExtResource("1_bw27h") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6kbf"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cntbh"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kerx"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl74v"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujo44"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq24o"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2xg3"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wb1m6"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkyqb"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rv2tl"] +atlas = ExtResource("1_bw27h") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8h1s"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhop5"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6io8a"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfdfh"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anhff"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ad17k"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1gle"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f1m7"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15avv"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmcxq"] +atlas = ExtResource("1_bw27h") +region = Rect2(1010, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58ej4"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhwrt"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dbd0"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8888d"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pulh"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vncgu"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptg7q"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bpif"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wn8yw"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7gxv"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03o1n"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bda0u"] +atlas = ExtResource("1_bw27h") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhtk5"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7qul"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrk6m"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2atfp"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_reno5"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esaw1"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7b47"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx4os"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_427jy"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf4wv"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ckul"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7d2r"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xfta"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vm2te"] +atlas = ExtResource("1_bw27h") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gt56j"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y85d8"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7yrp"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntahh"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh7i3"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15u4w"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl0je"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j56y1"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixsgv"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soprf"] +atlas = ExtResource("1_bw27h") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeo7q"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrkr7"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcga0"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3etw"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uq5p"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkp12"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpt5o"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ak03"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckhdd"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1env"] +atlas = ExtResource("1_bw27h") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh14g"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghurb"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejefw"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7d3p"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gh74"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb6qr"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tx6v1"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hejlk"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d62nv"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1msxg"] +atlas = ExtResource("1_bw27h") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwfh5"] +atlas = ExtResource("1_bw27h") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb6gf"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5yog"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmsqs"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5p6ct"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hp4x5"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryn0w"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qb3w"] +atlas = ExtResource("1_bw27h") +region = Rect2(505, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxd0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mygfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is0qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lied2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n37yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udu7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7sfo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5btj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0b7rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikyyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss3i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36kiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg444") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqap4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo0dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of7tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58ufc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nj3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_404ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j35qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du1jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj86l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05l74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1mxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2yj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcxk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmpcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcsjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7kcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6kbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cntbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kerx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl74v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujo44") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq24o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2xg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wb1m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkyqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rv2tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8h1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhop5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6io8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfdfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anhff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ad17k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1gle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f1m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15avv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmcxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58ej4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dbd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8888d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pulh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vncgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptg7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bpif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wn8yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7gxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03o1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bda0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhtk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7qul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrk6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2atfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_reno5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_esaw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7b47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx4os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_427jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf4wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ckul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7d2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xfta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vm2te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gt56j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y85d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7yrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntahh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh7i3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_15u4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl0je") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j56y1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixsgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soprf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeo7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrkr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcga0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3etw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uq5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkp12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpt5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ak03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckhdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1env") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh14g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghurb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejefw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7d3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gh74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb6qr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tx6v1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hejlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d62nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1msxg") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwfh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb6gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5yog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmsqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5p6ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hp4x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryn0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qb3w") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade04.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade04.tres new file mode 100644 index 0000000..0abe778 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_pennyarcade04.tres @@ -0,0 +1,680 @@ +[gd_resource type="SpriteFrames" load_steps=94 format=3 uid="uid://xyvnr7kt1q7u"] + +[ext_resource type="Texture2D" uid="uid://bahjgft0mlg7w" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png" id="1_pcidr"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv6uv"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y2d1"] +atlas = ExtResource("1_pcidr") +region = Rect2(1551, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj5io"] +atlas = ExtResource("1_pcidr") +region = Rect2(1551, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2eap"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw2tk"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb0nu"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njuyr"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i80fi"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3prhq"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh462"] +atlas = ExtResource("1_pcidr") +region = Rect2(1410, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afwm5"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coaep"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ks2"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ocks"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6wvt"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk8xb"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foxrw"] +atlas = ExtResource("1_pcidr") +region = Rect2(1269, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osr6a"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugk5r"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv8h3"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4lh4"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbw1b"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0u8g"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0jc8"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cougk"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32tf8"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvwft"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3m7v"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7s41"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kqvy"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhwjp"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4jfv"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hf2j2"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn2aq"] +atlas = ExtResource("1_pcidr") +region = Rect2(1128, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iry6i"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71u2w"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcsfh"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eid3q"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j75bf"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7utf0"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbjme"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1auqm"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xypvj"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjlr3"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27hu6"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te5qd"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ego"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kjmv"] +atlas = ExtResource("1_pcidr") +region = Rect2(846, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmlvm"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smq11"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fs52"] +atlas = ExtResource("1_pcidr") +region = Rect2(1551, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk5u5"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an1ot"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opmbr"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6emnk"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh3vn"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rap2"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc3po"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m2xb"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wxjy"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxh80"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcgls"] +atlas = ExtResource("1_pcidr") +region = Rect2(564, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxe5o"] +atlas = ExtResource("1_pcidr") +region = Rect2(987, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwcew"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xeky0"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xt2r8"] +atlas = ExtResource("1_pcidr") +region = Rect2(705, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m56o"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdtjq"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujh84"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufoc7"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx1bn"] +atlas = ExtResource("1_pcidr") +region = Rect2(423, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21wvn"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyqju"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p78hc"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl3um"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxa4k"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xnc3p"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h06ha"] +atlas = ExtResource("1_pcidr") +region = Rect2(282, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p4lc"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quss6"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3cmi"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xigsa"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkytl"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o85yq"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7weu"] +atlas = ExtResource("1_pcidr") +region = Rect2(141, 0, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmxbr"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 846, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jckww"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 705, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o5sw"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 564, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7vsp"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 423, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7kcl"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 282, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly1x0"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 141, 140, 140) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1noek"] +atlas = ExtResource("1_pcidr") +region = Rect2(0, 0, 140, 140) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv6uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y2d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj5io") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2eap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw2tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb0nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njuyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i80fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3prhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh462") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afwm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coaep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ks2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ocks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6wvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk8xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foxrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osr6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugk5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv8h3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4lh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbw1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0u8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0jc8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cougk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32tf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvwft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3m7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7s41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kqvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhwjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4jfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hf2j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn2aq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iry6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71u2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcsfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eid3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j75bf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7utf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbjme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1auqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xypvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjlr3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27hu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te5qd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ego") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kjmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmlvm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smq11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fs52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk5u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an1ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opmbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6emnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh3vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rap2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc3po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m2xb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wxjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxh80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcgls") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxe5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwcew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xeky0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xt2r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m56o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdtjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujh84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufoc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx1bn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21wvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyqju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p78hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl3um") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxa4k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xnc3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h06ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p4lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quss6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3cmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xigsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkytl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o85yq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7weu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmxbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jckww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o5sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7vsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7kcl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly1x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1noek") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_primusshieldmaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_primusshieldmaster.tres new file mode 100644 index 0000000..4765af7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_primusshieldmaster.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://b8asvlpca3uaj"] + +[ext_resource type="Texture2D" uid="uid://bibxiwwdn278f" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png" id="1_uqdpf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx7pq"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7u5w"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flb1f"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qehkk"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l1f4"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e8cy"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urmxo"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l23c5"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st88p"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn6wd"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyaim"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22nu8"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w8ys"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnewn"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd346"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdnkx"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stqxb"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ric"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45jpd"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jddf1"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcbj2"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oy70"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_846cj"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvbp3"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni70l"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srql1"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udgne"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwcpr"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l71u"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qqyh"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrwwv"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru4ei"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iy3b4"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh5dv"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nclpp"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykxjv"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6mr7"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stj0e"] +atlas = ExtResource("1_uqdpf") +region = Rect2(162, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxha6"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6jor"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1svl8"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrkxc"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsjak"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw2fo"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqvdy"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m6qf"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la41w"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vep77"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vl6at"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n5h5"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhk5j"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wepyq"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1944, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s14sc"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxo3s"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3o42"] +atlas = ExtResource("1_uqdpf") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdy2a"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1863, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5l8a"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1782, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rtlo"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1701, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53g2u"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1620, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlkdv"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1539, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh70g"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1458, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp7n0"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1377, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_618oc"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1296, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf0am"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1215, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8myji"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1134, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udxg5"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 1053, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7ks5"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 972, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbctv"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2a8fn"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1ylj"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8c7g"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bhq7"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgmda"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cecn7"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6on7a"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p146"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1dng"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlbjb"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20yo5"] +atlas = ExtResource("1_uqdpf") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx7pq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7u5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flb1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qehkk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l1f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e8cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urmxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l23c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st88p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn6wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyaim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22nu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w8ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnewn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd346") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdnkx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stqxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ric") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_45jpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jddf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcbj2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oy70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_846cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvbp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni70l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srql1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udgne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwcpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l71u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qqyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrwwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru4ei") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iy3b4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh5dv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nclpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykxjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6mr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stj0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxha6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6jor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1svl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrkxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsjak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw2fo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqvdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m6qf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la41w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vep77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vl6at") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n5h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhk5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wepyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s14sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxo3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3o42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdy2a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5l8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rtlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53g2u") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlkdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh70g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp7n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_618oc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf0am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8myji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udxg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7ks5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbctv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2a8fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1ylj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8c7g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bhq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgmda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cecn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6on7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p146") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1dng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlbjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20yo5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionist.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionist.tres new file mode 100644 index 0000000..926cde5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionist.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://d26tqbhu4ebii"] + +[ext_resource type="Texture2D" uid="uid://digyimvfwnsnh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png" id="1_1vjce"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bharh"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2cve"] +atlas = ExtResource("1_1vjce") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itl46"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx57f"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xu4p"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7raok"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fetg"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc0hf"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hki04"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylg13"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_232hl"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0npd"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi4ra"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxtgo"] +atlas = ExtResource("1_1vjce") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25qsq"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5sdk"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krp08"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2ys2"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ndjn"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvyk"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xmj3"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpnch"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k31jc"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33iws"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w1ta"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x4hn"] +atlas = ExtResource("1_1vjce") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77yeu"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4srrl"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o50d6"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l407"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cpcq"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bogx"] +atlas = ExtResource("1_1vjce") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ofho"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ocm"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yadex"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbefi"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ta1s"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52xni"] +atlas = ExtResource("1_1vjce") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql1bb"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mraam"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yd73i"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypwlf"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhi41"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wds6v"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7fhq"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6c04"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gdlr"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1iw6"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bseyy"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gyux"] +atlas = ExtResource("1_1vjce") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5l8b"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_884g1"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sqcw"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vubhc"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he3cf"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o31ne"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjasg"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h28nk"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r43w"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ykl8"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0t6aj"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pc1d4"] +atlas = ExtResource("1_1vjce") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bharh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2cve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itl46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx57f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xu4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7raok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fetg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc0hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hki04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylg13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_232hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0npd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi4ra") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxtgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25qsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5sdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krp08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2ys2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ndjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xmj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpnch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k31jc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33iws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w1ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x4hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77yeu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4srrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o50d6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l407") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cpcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bogx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ofho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ocm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yadex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbefi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ta1s") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_52xni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql1bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mraam") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yd73i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypwlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhi41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wds6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7fhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6c04") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gdlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1iw6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bseyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gyux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5l8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_884g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sqcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vubhc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_he3cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o31ne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjasg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h28nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r43w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ykl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0t6aj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pc1d4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionistminion.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionistminion.tres new file mode 100644 index 0000000..4d11dc3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prismaticillusionistminion.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://ccjg8d1jyu07l"] + +[ext_resource type="Texture2D" uid="uid://bw2qtu73mwt5l" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png" id="1_beg8a"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kflo"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysw8c"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbdqc"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfwy2"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqnep"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcq1e"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohde"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_102gp"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t203o"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3ixp"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61fvr"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vyh7"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ysr"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3hjm"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2opf2"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1jsm"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1jv5"] +atlas = ExtResource("1_beg8a") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seea4"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciedh"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ed8r"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t86lk"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acgxc"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74ghu"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymbnk"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72f8a"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enwyk"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldtxe"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8i02"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_122lk"] +atlas = ExtResource("1_beg8a") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tn8a3"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p55q"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fh8lw"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7qn5"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6057b"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c066"] +atlas = ExtResource("1_beg8a") +region = Rect2(405, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvol3"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnfie"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8q2g"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5tjs"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtspe"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e2ba"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2u4eg"] +atlas = ExtResource("1_beg8a") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8kk1"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etj83"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xy82i"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f47fq"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr1gh"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otkqn"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xljps"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4n8nm"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4yfg"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mib0"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3uah"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1hv7"] +atlas = ExtResource("1_beg8a") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u8pd5"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6u28w"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vv2t"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvanj"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g0gs"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_723l8"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dje7l"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2oxg"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gouma"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx6cd"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksffa"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5mp2"] +atlas = ExtResource("1_beg8a") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kflo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysw8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbdqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfwy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqnep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcq1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_102gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t203o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3ixp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61fvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vyh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ysr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3hjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2opf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1jsm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1jv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seea4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciedh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ed8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t86lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acgxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74ghu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymbnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72f8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enwyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldtxe") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8i02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_122lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tn8a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p55q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fh8lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7qn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6057b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c066") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvol3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnfie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8q2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5tjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtspe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e2ba") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2u4eg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8kk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etj83") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xy82i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f47fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr1gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otkqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xljps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4n8nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4yfg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mib0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3uah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1hv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u8pd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6u28w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vv2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvanj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g0gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_723l8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dje7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2oxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gouma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx6cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksffa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5mp2") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prongbok.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prongbok.tres new file mode 100644 index 0000000..dbea259 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prongbok.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://br6b5st7bkvs7"] + +[ext_resource type="Texture2D" uid="uid://naauvhhd58u1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png" id="1_bvdvt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e57i"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ol1"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whca5"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fip7g"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l07fl"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsjwo"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swm5g"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppyhl"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kupu"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xohtx"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xumjs"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq7hj"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivm1i"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5riik"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcc2l"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is6v3"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8f40"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bqha"] +atlas = ExtResource("1_bvdvt") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40jxj"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kenqt"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i54g4"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nip16"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nswuk"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpifh"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db8fq"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpdxl"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcmrh"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w40rb"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbl10"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dfmv"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v062"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jra1q"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkttl"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85o6f"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4075j"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4cpx"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ka03"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpdtl"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr0ey"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e1qp"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7133l"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsiqv"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hmy1"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmw72"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwwfj"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehp7b"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqqqs"] +atlas = ExtResource("1_bvdvt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1xpn"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgnuc"] +atlas = ExtResource("1_bvdvt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi6tg"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2mm1"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxfq6"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flbn3"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qre3v"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stm8r"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exlme"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njchw"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sl4t"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe42k"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2evt"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0hf7"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7emre"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrkfx"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyknd"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvn2f"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0njhq"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odl0p"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73lyq"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj4k5"] +atlas = ExtResource("1_bvdvt") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhcep"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2er38"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulxdr"] +atlas = ExtResource("1_bvdvt") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvac"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf5rh"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsqkf"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqlpx"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsmn1"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvqda"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od4aw"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmvsx"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc37f"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpqhc"] +atlas = ExtResource("1_bvdvt") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e57i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ol1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whca5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fip7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l07fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsjwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swm5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppyhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kupu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xohtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xumjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq7hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivm1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5riik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcc2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is6v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8f40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bqha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40jxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kenqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i54g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nip16") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nswuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpifh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db8fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpdxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcmrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w40rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbl10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dfmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v062") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jra1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkttl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85o6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4075j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4cpx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ka03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpdtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr0ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e1qp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7133l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsiqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hmy1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmw72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwwfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehp7b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqqqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1xpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgnuc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi6tg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2mm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxfq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flbn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qre3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stm8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exlme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njchw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sl4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe42k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2evt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0hf7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7emre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrkfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyknd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvn2f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0njhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odl0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73lyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj4k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhcep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2er38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulxdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pvac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf5rh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsqkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqlpx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsmn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvqda") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od4aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmvsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc37f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpqhc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prophetwhitepalm.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prophetwhitepalm.tres new file mode 100644 index 0000000..e0a70dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_prophetwhitepalm.tres @@ -0,0 +1,708 @@ +[gd_resource type="SpriteFrames" load_steps=98 format=3 uid="uid://cidimqvwtf4v6"] + +[ext_resource type="Texture2D" uid="uid://c7h7pnf1c2clv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png" id="1_saka7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhqvt"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al7po"] +atlas = ExtResource("1_saka7") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u51kg"] +atlas = ExtResource("1_saka7") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0in8"] +atlas = ExtResource("1_saka7") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkkbh"] +atlas = ExtResource("1_saka7") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ry3u"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca84w"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nr7ag"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3b5m"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tdhs"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbinl"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceigo"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcvrl"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3u8t0"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ce2c"] +atlas = ExtResource("1_saka7") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbvti"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkqdf"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4rgv"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0nrs"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqyh2"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncfs4"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6to64"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiksn"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdyxr"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j3bbh"] +atlas = ExtResource("1_saka7") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orkvl"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83s23"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf4rl"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ky3u"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el8ft"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwl1k"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k74q"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir31f"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kci5b"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03me6"] +atlas = ExtResource("1_saka7") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gian1"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8khti"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itcke"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra2vj"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikt5w"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5f17"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6otxh"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wk4ch"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tm72q"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uv7r"] +atlas = ExtResource("1_saka7") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clbwq"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nso2"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cexgr"] +atlas = ExtResource("1_saka7") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt3bo"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_020dl"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lbpk"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqqp1"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvnvi"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s1nm"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaq64"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s65hi"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_341uv"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ny52n"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fos8"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfox4"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahmlr"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noasl"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ey34"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7jxg"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5o13"] +atlas = ExtResource("1_saka7") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flyhx"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyptd"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kleoq"] +atlas = ExtResource("1_saka7") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76qiy"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3dhj"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dfw1"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtjrj"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46ni5"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnwbh"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mleqj"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85neq"] +atlas = ExtResource("1_saka7") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xblw"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seqcs"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55pcq"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwb0a"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7bjn"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgg2a"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgidp"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02usd"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sldag"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3vww"] +atlas = ExtResource("1_saka7") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhbgy"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3pkq"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm0bg"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmaeb"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4w8hu"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22prh"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72dr4"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6tr7"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdcar"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqox3"] +atlas = ExtResource("1_saka7") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhqvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al7po") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u51kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0in8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkkbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ry3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca84w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nr7ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3b5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tdhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbinl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceigo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcvrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3u8t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ce2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbvti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkqdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4rgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0nrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqyh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncfs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6to64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiksn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdyxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j3bbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orkvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83s23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf4rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ky3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el8ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwl1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k74q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir31f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kci5b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_03me6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gian1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8khti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itcke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra2vj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikt5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5f17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6otxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wk4ch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tm72q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uv7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clbwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nso2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cexgr") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt3bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_020dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lbpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqqp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvnvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s1nm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaq64") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s65hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_341uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ny52n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fos8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfox4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahmlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noasl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ey34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7jxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5o13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flyhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyptd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kleoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76qiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3dhj") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dfw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtjrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46ni5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnwbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mleqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85neq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xblw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seqcs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55pcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwb0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7bjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgg2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgidp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02usd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sldag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3vww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhbgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3pkq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm0bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmaeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4w8hu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22prh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72dr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6tr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdcar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqox3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_purgatos.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_purgatos.tres new file mode 100644 index 0000000..1617943 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_purgatos.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bws11r46p3vho"] + +[ext_resource type="Texture2D" uid="uid://8na3itaurty5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png" id="1_3ls4r"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy34r"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ddq6"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw8u4"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rghfb"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgvlr"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0wg1"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_douq2"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bsb6g"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hcp7"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xrkw"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iwni"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8thh6"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnldw"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x5ha"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndwlx"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjnwf"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aes1r"] +atlas = ExtResource("1_3ls4r") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo3s5"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvrkg"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31uoi"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efic4"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxlo6"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwl45"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnkyg"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiume"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teqbq"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4e5r"] +atlas = ExtResource("1_3ls4r") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkh83"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wowu6"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qmbf"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l0o8"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hd8qy"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nmng"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx8k6"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3enw4"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daxog"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lh0l"] +atlas = ExtResource("1_3ls4r") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvtga"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g110v"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ee52w"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2gbl"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pphdc"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5w5dt"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nioi3"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ni2"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0nvb"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_423gd"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wa5wo"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc1gj"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v05w2"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgmu0"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvet7"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5y0j"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urvv2"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erwf7"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ggxxt"] +atlas = ExtResource("1_3ls4r") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5751"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ykq"] +atlas = ExtResource("1_3ls4r") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8vdl"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbum5"] +atlas = ExtResource("1_3ls4r") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtvs3"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob4o2"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffntt"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yf7e"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjm5c"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_evqin"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3dft"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vksdy"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcuqx"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djl4w"] +atlas = ExtResource("1_3ls4r") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wqsp"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyfov"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek3ff"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3tyl"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtae8"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cghap"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ng1y"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bh4w"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n64pp"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdk7l"] +atlas = ExtResource("1_3ls4r") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy34r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ddq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw8u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rghfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgvlr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0wg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_douq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bsb6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hcp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xrkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iwni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8thh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnldw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x5ha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndwlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjnwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aes1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo3s5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvrkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31uoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efic4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxlo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwl45") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnkyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiume") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teqbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4e5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkh83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wowu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qmbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l0o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hd8qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nmng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx8k6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3enw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daxog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lh0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvtga") +}], +"loop": true, +"name": &"breathe", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g110v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ee52w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2gbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pphdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5w5dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nioi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0nvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_423gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wa5wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc1gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v05w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgmu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvet7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5y0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urvv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erwf7") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ggxxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5751") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ykq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8vdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbum5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtvs3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob4o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffntt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yf7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjm5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_evqin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3dft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vksdy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcuqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djl4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wqsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyfov") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek3ff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3tyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtae8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cghap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ng1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bh4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n64pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdk7l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quahog.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quahog.tres new file mode 100644 index 0000000..3ad242d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quahog.tres @@ -0,0 +1,540 @@ +[gd_resource type="SpriteFrames" load_steps=74 format=3 uid="uid://b4eawygyxie0h"] + +[ext_resource type="Texture2D" uid="uid://b0htjb0yp700p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png" id="1_d0wip"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8pcq"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntjbd"] +atlas = ExtResource("1_d0wip") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq574"] +atlas = ExtResource("1_d0wip") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hehwb"] +atlas = ExtResource("1_d0wip") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs1eq"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqnbx"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t57mv"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6o15"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6e4i"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5mjf"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7p1w"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43c10"] +atlas = ExtResource("1_d0wip") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3lcp"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7n73"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myela"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fruh"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve0au"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfg6p"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5prt8"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdd2l"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ca0gm"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxgjq"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb1qb"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2jfe"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_org77"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whkuf"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo4ti"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n0mn"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx1om"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cej7o"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iakwi"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8njf6"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q1t1v"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6udth"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grxe7"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik6oq"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4eq6k"] +atlas = ExtResource("1_d0wip") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbn0w"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m2cf"] +atlas = ExtResource("1_d0wip") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpci2"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tsgk"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyta6"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dprq1"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3xbo"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oa6sa"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgria"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i150h"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i416g"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqrdv"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6mxt"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vce8q"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xs3qh"] +atlas = ExtResource("1_d0wip") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8lae"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ethhi"] +atlas = ExtResource("1_d0wip") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgfrv"] +atlas = ExtResource("1_d0wip") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhwsb"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojtfs"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkxjk"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d05sn"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl8q2"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxwq4"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glfib"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cfo6p"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8xu76"] +atlas = ExtResource("1_d0wip") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7vqv"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkmny"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3euv8"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jx5f"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm8lk"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1fei"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmtcu"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arthw"] +atlas = ExtResource("1_d0wip") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8pcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntjbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq574") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hehwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs1eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqnbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t57mv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6o15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6e4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5mjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7p1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43c10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3lcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7n73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myela") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fruh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve0au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfg6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5prt8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdd2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ca0gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxgjq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb1qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2jfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_org77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whkuf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo4ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n0mn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx1om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cej7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iakwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8njf6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q1t1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6udth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grxe7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik6oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4eq6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbn0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m2cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpci2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tsgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyta6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dprq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3xbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oa6sa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgria") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i150h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i416g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqrdv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6mxt") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vce8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xs3qh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8lae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ethhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgfrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhwsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojtfs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkxjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d05sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl8q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxwq4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glfib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cfo6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8xu76") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7vqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkmny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3euv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jx5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm8lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1fei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmtcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arthw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quartermastergauj.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quartermastergauj.tres new file mode 100644 index 0000000..84df09e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_quartermastergauj.tres @@ -0,0 +1,624 @@ +[gd_resource type="SpriteFrames" load_steps=86 format=3 uid="uid://d382m4x2thpt5"] + +[ext_resource type="Texture2D" uid="uid://oyiwt61r8ksd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png" id="1_0cj4p"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q62o2"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ecig"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pie70"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o58d"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giq6h"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhnlt"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wybpd"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgcq0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0rcj"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j25hr"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbsri"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_775q5"] +atlas = ExtResource("1_0cj4p") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj04c"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsxxs"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t31p1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0k6uk"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jm0w3"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7njpe"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poeu0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_625ul"] +atlas = ExtResource("1_0cj4p") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nauf1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyrv3"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5yg7"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kw4b2"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4tp1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nw7e"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_canaa"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leqiu"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms73i"] +atlas = ExtResource("1_0cj4p") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sut6f"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmx1f"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10ikn"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sr7f"] +atlas = ExtResource("1_0cj4p") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unjvf"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45g3b"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anhma"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt5w1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go2t8"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okvs0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8xwp"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1wg1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntoko"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmt2v"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oxcw"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d07vr"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btd0k"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8an8"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obcwg"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7djmr"] +atlas = ExtResource("1_0cj4p") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kki80"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5ud"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w4i5k"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6oxu"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmmyw"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebfnt"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lecyd"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au7wv"] +atlas = ExtResource("1_0cj4p") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yenc4"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qefke"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp3s3"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7tpl"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xr528"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijges"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0o05"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbkbv"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp24c"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvsb3"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssnjr"] +atlas = ExtResource("1_0cj4p") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pck3e"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_543js"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhai0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mxg1"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe24b"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf67m"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbcv0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mptf"] +atlas = ExtResource("1_0cj4p") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xlvpy"] +atlas = ExtResource("1_0cj4p") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0sm0"] +atlas = ExtResource("1_0cj4p") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_novqa"] +atlas = ExtResource("1_0cj4p") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gee7n"] +atlas = ExtResource("1_0cj4p") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njoxf"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5p8s"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuqd2"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4gc6"] +atlas = ExtResource("1_0cj4p") +region = Rect2(968, 484, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q62o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ecig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pie70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o58d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giq6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhnlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wybpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgcq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0rcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j25hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbsri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_775q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj04c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsxxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t31p1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0k6uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jm0w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7njpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poeu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_625ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nauf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyrv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5yg7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kw4b2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4tp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nw7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_canaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leqiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms73i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sut6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmx1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10ikn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sr7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unjvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45g3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anhma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt5w1") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_go2t8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okvs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8xwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1wg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntoko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmt2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oxcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d07vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btd0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8an8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obcwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7djmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kki80") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5ud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w4i5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6oxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmmyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebfnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lecyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au7wv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yenc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qefke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp3s3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7tpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xr528") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijges") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0o05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbkbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp24c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvsb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssnjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pck3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_543js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhai0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mxg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe24b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf67m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbcv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mptf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xlvpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0sm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_novqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gee7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njoxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5p8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuqd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4gc6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rawr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rawr.tres new file mode 100644 index 0000000..c3951c4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rawr.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://c2h4wne3uyksc"] + +[ext_resource type="Texture2D" uid="uid://dk3bcebi7ky7j" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png" id="1_c7tyk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_22o8d"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw6aa"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac1c0"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocu8g"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mm8sx"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1tup"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7gws"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ponqa"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iajrl"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l34g"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejd7r"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae3x8"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kb2l"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plluj"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ua031"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhe70"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5r1vs"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk6fq"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipq8d"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mo7c5"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te1xu"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbyi2"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6cmx"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys0kf"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_forc1"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_os1i2"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_158q7"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khts2"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6t75v"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu0hn"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnih6"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyvaj"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d704u"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk3k7"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wog5h"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlpu7"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndeoc"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hix7p"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqvkn"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1y78u"] +atlas = ExtResource("1_c7tyk") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcqqt"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kt5k"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfk28"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xamm"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tped7"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndm0y"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gqxs"] +atlas = ExtResource("1_c7tyk") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oho1"] +atlas = ExtResource("1_c7tyk") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfv0k"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_how12"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ctok"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7i0y"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nrpa"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm8a4"] +atlas = ExtResource("1_c7tyk") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci4ua"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh7sd"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk8cp"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt5g1"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgnqq"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oefte"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv2f1"] +atlas = ExtResource("1_c7tyk") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25qlj"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c3ub"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vpfb"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya1de"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yng1s"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmxsf"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bfvuy"] +atlas = ExtResource("1_c7tyk") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttti2"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afy2a"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7ppr"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ot8ng"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0lfy"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3gsr"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otsag"] +atlas = ExtResource("1_c7tyk") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oau84"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pv88"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8e11"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f6vw"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqx4t"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b68be"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08k1m"] +atlas = ExtResource("1_c7tyk") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk0wo"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2ul8"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_146pg"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noks5"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_157qn"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0pjl"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1urxy"] +atlas = ExtResource("1_c7tyk") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_22o8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw6aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac1c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocu8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mm8sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1tup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7gws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ponqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iajrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l34g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejd7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae3x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kb2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plluj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ua031") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhe70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5r1vs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk6fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipq8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mo7c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te1xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbyi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6cmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys0kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_forc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_os1i2") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_158q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khts2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6t75v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu0hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnih6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyvaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d704u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk3k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wog5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlpu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndeoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hix7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqvkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1y78u") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcqqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kt5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfk28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xamm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tped7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndm0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gqxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oho1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfv0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_how12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ctok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7i0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nrpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm8a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci4ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh7sd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk8cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt5g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgnqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oefte") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv2f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25qlj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c3ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vpfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya1de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yng1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmxsf") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bfvuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttti2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afy2a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7ppr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ot8ng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0lfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3gsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otsag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oau84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pv88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8e11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f6vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqx4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b68be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08k1m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk0wo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2ul8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_146pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noks5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_157qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0pjl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1urxy") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_razorcraggolem.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_razorcraggolem.tres new file mode 100644 index 0000000..cefa612 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_razorcraggolem.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://d0pyrtthbu1m0"] + +[ext_resource type="Texture2D" uid="uid://b3h3ivna2wtg3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png" id="1_v1464"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q22ei"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4gp6"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpshh"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xylal"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu30n"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ha8w3"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs8ux"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyrn4"] +atlas = ExtResource("1_v1464") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krptn"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s5sx"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g04ac"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nd6q3"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37lsu"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx0y7"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuuld"] +atlas = ExtResource("1_v1464") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56oo8"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sg58"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfyni"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xdwg"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6i8g"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qu1e"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gc67"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4b8p"] +atlas = ExtResource("1_v1464") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d50rf"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6bvh"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llxd1"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d40ei"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74p5r"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v774l"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4ml4"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb6nr"] +atlas = ExtResource("1_v1464") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srydo"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cwfx"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7ufv"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skmea"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh4fd"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0v71r"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yopp"] +atlas = ExtResource("1_v1464") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clkej"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3w37u"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77dls"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss2g7"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc4u5"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_firm0"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jprpr"] +atlas = ExtResource("1_v1464") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlndc"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_do0i1"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a103i"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oltn2"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go5rv"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_057k7"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_id015"] +atlas = ExtResource("1_v1464") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc6rx"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dog0u"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcoqh"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrcoy"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kl73l"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbjxj"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owisu"] +atlas = ExtResource("1_v1464") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2ags"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ddh3"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8vw2"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvipu"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlejs"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltfv3"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibr3c"] +atlas = ExtResource("1_v1464") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g03y3"] +atlas = ExtResource("1_v1464") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7878"] +atlas = ExtResource("1_v1464") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ross6"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1xv6"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_excue"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3ght"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w3wg"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anxeb"] +atlas = ExtResource("1_v1464") +region = Rect2(1179, 131, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q22ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4gp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpshh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xylal") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu30n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ha8w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs8ux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyrn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krptn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s5sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g04ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nd6q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37lsu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx0y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuuld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56oo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sg58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfyni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xdwg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6i8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qu1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gc67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4b8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d50rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6bvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llxd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d40ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74p5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v774l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4ml4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb6nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srydo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cwfx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7ufv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skmea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh4fd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0v71r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yopp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clkej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3w37u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77dls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss2g7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc4u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_firm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jprpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlndc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_do0i1") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a103i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oltn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go5rv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_057k7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_id015") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc6rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dog0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcoqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrcoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kl73l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbjxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owisu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2ags") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ddh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8vw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvipu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlejs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltfv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibr3c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g03y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7878") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ross6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1xv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_excue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3ght") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w3wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anxeb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rejuvenator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rejuvenator.tres new file mode 100644 index 0000000..6c78fdb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rejuvenator.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://dpt8o8bm1ou5y"] + +[ext_resource type="Texture2D" uid="uid://cncjhopwj2jy1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png" id="1_y8sea"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hywox"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghj4g"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahpt6"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2n2w"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m3i8"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r47u1"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4gcj"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xj0e"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oqojb"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p57n2"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vprwj"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etsu5"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3ooc"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6s1qy"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wuat"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwdpu"] +atlas = ExtResource("1_y8sea") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyo2u"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7uxa"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m06bl"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd01x"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c08u"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj1wp"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucc15"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6trr7"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g4w8"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ru66d"] +atlas = ExtResource("1_y8sea") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cob63"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxlns"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uasx2"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut23d"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kstoq"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nwi03"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n4hl"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53r24"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jrtq"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dm6y"] +atlas = ExtResource("1_y8sea") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66gmu"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t33tx"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyocm"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4lpy"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyygt"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfrcg"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2nfu"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip52v"] +atlas = ExtResource("1_y8sea") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogwf4"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2in6l"] +atlas = ExtResource("1_y8sea") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cfgx"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7la2"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwphk"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb4od"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjmtg"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h207g"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t2u1"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6ntk"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1eai"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6itl"] +atlas = ExtResource("1_y8sea") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcbp3"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvodj"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7no82"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4elw"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iuic4"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nbre"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73jbr"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tck3h"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch55j"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eye7k"] +atlas = ExtResource("1_y8sea") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2t8y"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdf8u"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_annvr"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjafe"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhoaf"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kptx2"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rmvf"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia6bg"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31n4u"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc7m3"] +atlas = ExtResource("1_y8sea") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v46kv"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6eth"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3olfr"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mxr2"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avnr0"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si6m0"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqpq1"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chxj4"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22h2u"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6o4ix"] +atlas = ExtResource("1_y8sea") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hywox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghj4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahpt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2n2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m3i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r47u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4gcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xj0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oqojb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p57n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vprwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etsu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3ooc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6s1qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wuat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwdpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyo2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7uxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m06bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd01x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c08u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj1wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucc15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6trr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g4w8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ru66d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cob63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxlns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uasx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut23d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kstoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nwi03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n4hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53r24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jrtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dm6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66gmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t33tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyocm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4lpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyygt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfrcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2nfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip52v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogwf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2in6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cfgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7la2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwphk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb4od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjmtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h207g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t2u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6ntk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1eai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6itl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcbp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvodj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7no82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4elw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iuic4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nbre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73jbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tck3h") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch55j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eye7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2t8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdf8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_annvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjafe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhoaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kptx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rmvf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia6bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31n4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc7m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v46kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6eth") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3olfr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mxr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avnr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si6m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqpq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chxj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22h2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6o4ix") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_replicator.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_replicator.tres new file mode 100644 index 0000000..6b503ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_replicator.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://e5g0oubup6wg"] + +[ext_resource type="Texture2D" uid="uid://7o58y1tlihqt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png" id="1_maa2k"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxpuh"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlofl"] +atlas = ExtResource("1_maa2k") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p228"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22g3j"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amhcp"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8ib7"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dprn"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fakyn"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxlu6"] +atlas = ExtResource("1_maa2k") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou3ss"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjx0l"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltqyk"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6f1h"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rek6t"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trjd2"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i3py"] +atlas = ExtResource("1_maa2k") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq505"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohg5j"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al653"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al7o3"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8yf6"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx2ka"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty2av"] +atlas = ExtResource("1_maa2k") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3ndr"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okv1d"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihl7s"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ljtu"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mg37"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxlgl"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q4ob"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_445jm"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8qnc"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bepcd"] +atlas = ExtResource("1_maa2k") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ggfo"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckgbc"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk3aa"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n63oh"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeeux"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5132b"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou05t"] +atlas = ExtResource("1_maa2k") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2rmf"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s7te"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovqwv"] +atlas = ExtResource("1_maa2k") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n860q"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2nav"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjfkb"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj6de"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6yxx"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pop7h"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gudej"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmi7x"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_averf"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4dy5"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu683"] +atlas = ExtResource("1_maa2k") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dy5a1"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2652r"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8ef4"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m31gy"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y07y4"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qaih"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu6sv"] +atlas = ExtResource("1_maa2k") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxt6j"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjxtk"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imc6i"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6li1"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm1o1"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g10ng"] +atlas = ExtResource("1_maa2k") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2256"] +atlas = ExtResource("1_maa2k") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxef8"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxj7k"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grksa"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_irx07"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljulb"] +atlas = ExtResource("1_maa2k") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s2ck2"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeh6j"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ulii"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so7v7"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2x6h"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jky0l"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kulf2"] +atlas = ExtResource("1_maa2k") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nt4km"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4agj"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgbm8"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csewc"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc5pk"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_foa50"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2ao7"] +atlas = ExtResource("1_maa2k") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxpuh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlofl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p228") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22g3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amhcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8ib7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dprn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fakyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxlu6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou3ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjx0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltqyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6f1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rek6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trjd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i3py") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq505") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohg5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al653") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_al7o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8yf6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx2ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty2av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3ndr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okv1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihl7s") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ljtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mg37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxlgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q4ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_445jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8qnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bepcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ggfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckgbc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk3aa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n63oh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeeux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5132b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou05t") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2rmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s7te") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovqwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n860q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2nav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjfkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj6de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6yxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pop7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gudej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmi7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_averf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4dy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu683") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dy5a1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2652r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8ef4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m31gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y07y4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qaih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu6sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxt6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjxtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imc6i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6li1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm1o1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g10ng") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2256") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxef8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxj7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grksa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_irx07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljulb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s2ck2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeh6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ulii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so7v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2x6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jky0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kulf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nt4km") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4agj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgbm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csewc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc5pk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_foa50") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2ao7") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rok.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rok.tres new file mode 100644 index 0000000..13ad9b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rok.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://jrr5cp05c3rw"] + +[ext_resource type="Texture2D" uid="uid://bhtaxwnqr7rgb" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png" id="1_tswwa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl3uw"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_god8d"] +atlas = ExtResource("1_tswwa") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pq135"] +atlas = ExtResource("1_tswwa") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_df663"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oou15"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqahn"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl56n"] +atlas = ExtResource("1_tswwa") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1i4ph"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_val7o"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpcso"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dpa"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mywo7"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjp1r"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr0dg"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_662nq"] +atlas = ExtResource("1_tswwa") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i60cr"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4oy4f"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu2uw"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss710"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lo06v"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n176k"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6jc2"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb0xy"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rwi2"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_np66u"] +atlas = ExtResource("1_tswwa") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dewkr"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6whyu"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjk4u"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcgjy"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg6wa"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd551"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yemls"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukmv4"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_687pe"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2luim"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lm0f"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktbby"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dkbt"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yeff"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lop0o"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wqaq"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ley2p"] +atlas = ExtResource("1_tswwa") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k7q0"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxt4q"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocwtl"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6250p"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uksr"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lq34"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgg3t"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hccu"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftj1c"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksm65"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nip16"] +atlas = ExtResource("1_tswwa") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4ygr"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3085m"] +atlas = ExtResource("1_tswwa") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1e8n"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrvfm"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqf8s"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_plgah"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iey7b"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4t3i"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov3gk"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ed57p"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uu0j5"] +atlas = ExtResource("1_tswwa") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpf8o"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16bbe"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pmdc"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws4tq"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1f8m"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtf1k"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ar5b"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux5i5"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v61vf"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8akqr"] +atlas = ExtResource("1_tswwa") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl3uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_god8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pq135") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_df663") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oou15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl56n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1i4ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_val7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpcso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mywo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjp1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr0dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_662nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i60cr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4oy4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu2uw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss710") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lo06v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n176k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6jc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb0xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rwi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_np66u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dewkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6whyu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjk4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcgjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg6wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd551") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yemls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukmv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_687pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2luim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lm0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktbby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dkbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yeff") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lop0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wqaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ley2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k7q0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxt4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocwtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6250p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uksr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lq34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgg3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hccu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftj1c") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksm65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nip16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4ygr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3085m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1e8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrvfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqf8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_plgah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iey7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4t3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov3gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ed57p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uu0j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpf8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16bbe") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pmdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws4tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1f8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtf1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ar5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux5i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v61vf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8akqr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rook.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rook.tres new file mode 100644 index 0000000..a692784 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rook.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://dv02pfk7qg63o"] + +[ext_resource type="Texture2D" uid="uid://bfl2vl4cqseds" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png" id="1_bwsnp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1jif"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2a4t"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hrl5"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnfaa"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_io6x2"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqssp"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7ac7"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g84qc"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_135gw"] +atlas = ExtResource("1_bwsnp") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmglt"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s7eq"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r753"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfxsg"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xifhy"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q43xu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt08k"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08jiy"] +atlas = ExtResource("1_bwsnp") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1o84"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkcpe"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8qvy"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thy0m"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txj1y"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfqbx"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vvmt"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s1c6"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emudx"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8083"] +atlas = ExtResource("1_bwsnp") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6jr4"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ir725"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7o3c"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dhqu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdn37"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8whcc"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0qcu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urkp6"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldc4f"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eh827"] +atlas = ExtResource("1_bwsnp") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3fyr8"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky2pm"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq22n"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0wu28"] +atlas = ExtResource("1_bwsnp") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8ofe"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sj26t"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypbeu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osuac"] +atlas = ExtResource("1_bwsnp") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ra46m"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxrtu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tx4u"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r44c"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnf7k"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf2j2"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2575i"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07crk"] +atlas = ExtResource("1_bwsnp") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx523"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agmr2"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cvri"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1mq1"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyobi"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n2ko"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ncb6"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlrax"] +atlas = ExtResource("1_bwsnp") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpysk"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2b2dq"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pelgj"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ryf1"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r02hy"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1c3lb"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdqs5"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3srt"] +atlas = ExtResource("1_bwsnp") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjmfx"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt102"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36wpm"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg5c0"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4a5b"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f0nu"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwj7m"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1mfs"] +atlas = ExtResource("1_bwsnp") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1jif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2a4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hrl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnfaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_io6x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqssp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7ac7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g84qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_135gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmglt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s7eq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r753") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfxsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xifhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q43xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt08k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08jiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1o84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkcpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8qvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thy0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txj1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfqbx") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vvmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s1c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emudx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8083") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6jr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ir725") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7o3c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dhqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdn37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8whcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0qcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urkp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldc4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eh827") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3fyr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky2pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq22n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0wu28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8ofe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sj26t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypbeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osuac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ra46m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxrtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tx4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r44c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnf7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf2j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2575i") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_07crk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx523") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agmr2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cvri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1mq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyobi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n2ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ncb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlrax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpysk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2b2dq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pelgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ryf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r02hy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1c3lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdqs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3srt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjmfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt102") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36wpm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg5c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4a5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f0nu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwj7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1mfs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rubyrifter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rubyrifter.tres new file mode 100644 index 0000000..8ce04d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_rubyrifter.tres @@ -0,0 +1,645 @@ +[gd_resource type="SpriteFrames" load_steps=89 format=3 uid="uid://hunnj8j1fgpd"] + +[ext_resource type="Texture2D" uid="uid://bs5xspkrpr6hl" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png" id="1_ya0fb"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxmaw"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksxby"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g28a7"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ufu"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybx0m"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt1tw"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgwwx"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugor4"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ch8m"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6egy"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7itd"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi6ja"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ochhw"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve8qt"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_is1h1"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qicdo"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j4wm"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3ewi"] +atlas = ExtResource("1_ya0fb") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p34pe"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt6j8"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa3pe"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsid2"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7dor"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jau2"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2tu1"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m2by"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iblx7"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jenju"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhju6"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o31c7"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w27t6"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_taxmy"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjq1q"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5qnr"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo6ht"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qan6"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axt5e"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trd13"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwf6e"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od0hp"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv2by"] +atlas = ExtResource("1_ya0fb") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxly4"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2pik"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpf7g"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kma7h"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbifg"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh3hf"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvr2o"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84ym0"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqty4"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtoxa"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cygos"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_png5i"] +atlas = ExtResource("1_ya0fb") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky3x3"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rygfn"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls6cf"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qb6a"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7kog"] +atlas = ExtResource("1_ya0fb") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yh8k"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fssuj"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w50i5"] +atlas = ExtResource("1_ya0fb") +region = Rect2(0, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ijnk"] +atlas = ExtResource("1_ya0fb") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtxaq"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n6w6"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8ytj"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3whu"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmrj8"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry1b1"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87v6d"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flwfk"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co70f"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0ryg"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_augmo"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5skpp"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rp4c"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5g45"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuiv5"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4prja"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dyiwm"] +atlas = ExtResource("1_ya0fb") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0npg1"] +atlas = ExtResource("1_ya0fb") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3nqe"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yo2l"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftccj"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfo5i"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aecmy"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p66i"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxiu3"] +atlas = ExtResource("1_ya0fb") +region = Rect2(524, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxmaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksxby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g28a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ufu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybx0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt1tw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgwwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugor4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ch8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6egy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7itd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi6ja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ochhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve8qt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_is1h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qicdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j4wm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3ewi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p34pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt6j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa3pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsid2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7dor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jau2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2tu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m2by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iblx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jenju") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhju6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o31c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w27t6") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_taxmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjq1q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5qnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo6ht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qan6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axt5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trd13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwf6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od0hp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv2by") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxly4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2pik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpf7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kma7h") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbifg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh3hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvr2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84ym0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqty4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtoxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cygos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_png5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky3x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rygfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls6cf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qb6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7kog") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yh8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fssuj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w50i5") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ijnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtxaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n6w6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8ytj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3whu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmrj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry1b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87v6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flwfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_co70f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0ryg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_augmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5skpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rp4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5g45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuiv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4prja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dyiwm") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0npg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3nqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yo2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftccj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfo5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aecmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p66i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxiu3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_saberspinemk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_saberspinemk2.tres new file mode 100644 index 0000000..358f219 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_saberspinemk2.tres @@ -0,0 +1,379 @@ +[gd_resource type="SpriteFrames" load_steps=51 format=3 uid="uid://dikn7064boffq"] + +[ext_resource type="Texture2D" uid="uid://c4qa1r67op08o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png" id="1_8akau"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0f3b"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxqvl"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7u0h"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3581"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwbpy"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g71w1"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ym7yh"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k58j0"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o8xh"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xwry"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsspy"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lshsh"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1y1w"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvcyr"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yg51g"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to220"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rep6u"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qljl5"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujdnj"] +atlas = ExtResource("1_8akau") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1sy0"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yf4a8"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvybt"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cc68"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gj5x0"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m52ko"] +atlas = ExtResource("1_8akau") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0acog"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jv1p"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnbya"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xjajk"] +atlas = ExtResource("1_8akau") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxifk"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58uyw"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k0go"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og1vc"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sot7y"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1nnyy"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf7d8"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkfav"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxg07"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uno85"] +atlas = ExtResource("1_8akau") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn4ic"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oftk7"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02mto"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcsft"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsl3t"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp8df"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0aot"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_557t3"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8km6s"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar5nx"] +atlas = ExtResource("1_8akau") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0f3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxqvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7u0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3581") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwbpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g71w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ym7yh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k58j0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o8xh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xwry") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsspy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lshsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1y1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvcyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yg51g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to220") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rep6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qljl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujdnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1sy0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yf4a8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvybt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cc68") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gj5x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m52ko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0acog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jv1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnbya") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xjajk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxifk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58uyw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k0go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og1vc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sot7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1nnyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf7d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkfav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxg07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uno85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn4ic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oftk7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_02mto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcsft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsl3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp8df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0aot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_557t3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8km6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar5nx") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sai.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sai.tres new file mode 100644 index 0000000..43766d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sai.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://dpoy5k4ts2xqg"] + +[ext_resource type="Texture2D" uid="uid://dndbogh782r7n" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png" id="1_qy1w5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3h5c"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bgfh"] +atlas = ExtResource("1_qy1w5") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iammq"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvcdg"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0ac0"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y16f4"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2f6y"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixbt"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ftrt"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ulo"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ltb7"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dm4b"] +atlas = ExtResource("1_qy1w5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nmnl"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s403k"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7fwb"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6vjb"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50qjk"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5jxnl"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7w0lc"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hse4s"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk8ov"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr5d3"] +atlas = ExtResource("1_qy1w5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrq6w"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbnfh"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwxlf"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf1ub"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hvjr"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shpnr"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fuhdh"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wopbm"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej832"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u1x8"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5s6fj"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr0ev"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf0an"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xgn1"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vb8b"] +atlas = ExtResource("1_qy1w5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv1pk"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apmgr"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71yno"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwu8y"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhnme"] +atlas = ExtResource("1_qy1w5") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyx36"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky1ej"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exna7"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pshkd"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5scos"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2if6o"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibmvj"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_216v5"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0eoc"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcjdd"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g77k4"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks7su"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8ajc"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53h2n"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lshli"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isu8c"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc5hr"] +atlas = ExtResource("1_qy1w5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqob6"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01sxt"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eucwp"] +atlas = ExtResource("1_qy1w5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blbrd"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e0bu"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_po567"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb4en"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ted12"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxdcg"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p45e"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lmw"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo75s"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnla0"] +atlas = ExtResource("1_qy1w5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3b8w"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpl2u"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5pr4"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujkgl"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6rx8"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_na6ri"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e24ml"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppibi"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ib5ui"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvq2q"] +atlas = ExtResource("1_qy1w5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3h5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bgfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iammq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvcdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0ac0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y16f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2f6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ixbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ftrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ulo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ltb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dm4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nmnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s403k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7fwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6vjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50qjk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5jxnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7w0lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hse4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk8ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr5d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrq6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbnfh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwxlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf1ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hvjr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shpnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fuhdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wopbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej832") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u1x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5s6fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr0ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf0an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xgn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vb8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv1pk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_apmgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71yno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwu8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhnme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyx36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky1ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exna7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pshkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5scos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2if6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibmvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_216v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0eoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcjdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g77k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks7su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8ajc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53h2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lshli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isu8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc5hr") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqob6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01sxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eucwp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_blbrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e0bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_po567") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb4en") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ted12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxdcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p45e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo75s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnla0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3b8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpl2u") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5pr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujkgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6rx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_na6ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e24ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppibi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ib5ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvq2q") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sapphireseer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sapphireseer.tres new file mode 100644 index 0000000..f9db968 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sapphireseer.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://bkhbkjq15rwt2"] + +[ext_resource type="Texture2D" uid="uid://cnx8b3jou3e42" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png" id="1_6m1wg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcwcw"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhxdh"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp624"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3faqv"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inubf"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvoow"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7a8n"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7h23"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q1fb"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ijke"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7epoi"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8kro"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45oeq"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dobek"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx4ka"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71n57"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q6yw"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jildy"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2nyt"] +atlas = ExtResource("1_6m1wg") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bycke"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk2rc"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdohe"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8nax"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bk424"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssh7k"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn0vd"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csnge"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlvv0"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwrue"] +atlas = ExtResource("1_6m1wg") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wd28p"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sbi6"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y0es"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvxid"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxmmh"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0u56"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgf4l"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctdhj"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwbe6"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e25te"] +atlas = ExtResource("1_6m1wg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkuuk"] +atlas = ExtResource("1_6m1wg") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1g5o"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q118g"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ffol"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpp3d"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rptiq"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tms6c"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v37kf"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goaqn"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpw2t"] +atlas = ExtResource("1_6m1wg") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tar3v"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvrkc"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0p35"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nyoxh"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v6ol"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feopu"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x528y"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eatid"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0clu"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhmat"] +atlas = ExtResource("1_6m1wg") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q68ob"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wf65e"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11kae"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k3xc"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly5ea"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76nkq"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_le2tm"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lsrk"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3myo"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2by2"] +atlas = ExtResource("1_6m1wg") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okmyl"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cie6q"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6j7y"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sc5c"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4i5sy"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imvik"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6etv"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2oxb"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4heo"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jd0vj"] +atlas = ExtResource("1_6m1wg") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcwcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhxdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp624") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3faqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_inubf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvoow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7a8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7h23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q1fb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ijke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7epoi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8kro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45oeq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dobek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx4ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71n57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q6yw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jildy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2nyt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bycke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk2rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdohe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8nax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bk424") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssh7k") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn0vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csnge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlvv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwrue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wd28p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sbi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y0es") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvxid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxmmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0u56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgf4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctdhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwbe6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e25te") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkuuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1g5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q118g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ffol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpp3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rptiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tms6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v37kf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goaqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpw2t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tar3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvrkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0p35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nyoxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v6ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feopu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x528y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eatid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0clu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhmat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q68ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wf65e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_11kae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k3xc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly5ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76nkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_le2tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lsrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3myo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2by2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okmyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cie6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6j7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sc5c") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4i5sy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imvik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6etv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2oxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4heo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jd0vj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sarlacmk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sarlacmk2.tres new file mode 100644 index 0000000..f202216 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sarlacmk2.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://b3jgosyuccply"] + +[ext_resource type="Texture2D" uid="uid://bbk3sip3521yq" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png" id="1_8sju3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_c08v5"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2donn"] +atlas = ExtResource("1_8sju3") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p5tb"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sevms"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6htn1"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rk6do"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e3q5"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e435l"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kolv1"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iajr7"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0dn0"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vf05r"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u60ea"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ok4fc"] +atlas = ExtResource("1_8sju3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnrmu"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xood"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_af147"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owc2w"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xenmu"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmeny"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aucd3"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oday1"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prld6"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjt8u"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihkr4"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syuif"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b4os"] +atlas = ExtResource("1_8sju3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quijl"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8ryp"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scbfk"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmfll"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aprh6"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltxx5"] +atlas = ExtResource("1_8sju3") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_us12f"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvum4"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l60tm"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfmng"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1mxs"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ekit"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfqnl"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_775sb"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5svk"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjnfc"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3adb"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27uha"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6oov"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60fan"] +atlas = ExtResource("1_8sju3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4qu4"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt6gm"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6qox"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sgjhq"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxaxo"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kxwo"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huu1w"] +atlas = ExtResource("1_8sju3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sepil"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdie4"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6usrd"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0u24"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qu1c2"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48lcy"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnq12"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vkxlm"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjlcw"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgvjv"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pms5v"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q42m"] +atlas = ExtResource("1_8sju3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_c08v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2donn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p5tb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sevms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6htn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rk6do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e3q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e435l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kolv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iajr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0dn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vf05r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u60ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ok4fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnrmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xood") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_af147") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owc2w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xenmu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmeny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aucd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oday1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prld6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjt8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihkr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syuif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b4os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quijl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8ryp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scbfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmfll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aprh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltxx5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_us12f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvum4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l60tm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfmng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1mxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ekit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfqnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_775sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5svk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjnfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3adb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27uha") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6oov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60fan") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4qu4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt6gm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6qox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sgjhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxaxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kxwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huu1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sepil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdie4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6usrd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0u24") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qu1c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48lcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnq12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vkxlm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjlcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgvjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pms5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q42m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_scarzig.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_scarzig.tres new file mode 100644 index 0000000..a6e7713 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_scarzig.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://d326uen1k2m7d"] + +[ext_resource type="Texture2D" uid="uid://de40hmjytmvgk" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png" id="1_7bjns"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntq8c"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bou8"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vafgv"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kxon"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ho6ci"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svr0n"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxhdk"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qfuc"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syx2i"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnkou"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmeqk"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3we07"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clufj"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxf6l"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyc3q"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvhnr"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cihqi"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0tktf"] +atlas = ExtResource("1_7bjns") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oanh1"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qqwn"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hi5hl"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7chx"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dos3"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cm6ma"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj3l3"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jn4ub"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x38gy"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uij0h"] +atlas = ExtResource("1_7bjns") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvxjs"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km83q"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xnnh"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgjf0"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkhi4"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke6of"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jujtu"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix2om"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gj4p"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lv448"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h74sw"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo24j"] +atlas = ExtResource("1_7bjns") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgwla"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tymr5"] +atlas = ExtResource("1_7bjns") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdc6x"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rj0r"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1odp0"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oye5"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adruk"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxms4"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u15pe"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yfkrj"] +atlas = ExtResource("1_7bjns") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxir6"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htrx1"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jsm7"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cj5i3"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxk8x"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ud2"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0setk"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38xrp"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nb6mh"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iahgy"] +atlas = ExtResource("1_7bjns") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whquq"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxfdf"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6qmy"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8c8v"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_juat0"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2s70"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m17vu"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01we8"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6jm8"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xh7n"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l44jr"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el33u"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r63vq"] +atlas = ExtResource("1_7bjns") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwrr0"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3jsr"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mrcvw"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1m7t"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3ddt"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp0qw"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac4l0"] +atlas = ExtResource("1_7bjns") +region = Rect2(0, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntq8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bou8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vafgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kxon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ho6ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svr0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxhdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qfuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syx2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnkou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmeqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3we07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clufj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxf6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyc3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvhnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cihqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0tktf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oanh1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qqwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hi5hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7chx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dos3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cm6ma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj3l3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jn4ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x38gy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uij0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvxjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km83q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xnnh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgjf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkhi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke6of") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jujtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix2om") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gj4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lv448") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h74sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo24j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgwla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tymr5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdc6x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rj0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1odp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oye5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adruk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxms4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u15pe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yfkrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxir6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htrx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jsm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cj5i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxk8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ud2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0setk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38xrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nb6mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iahgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whquq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxfdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6qmy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8c8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_juat0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2s70") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m17vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01we8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6jm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xh7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l44jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el33u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r63vq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwrr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3jsr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mrcvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1m7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3ddt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp0qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac4l0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_serpenti.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_serpenti.tres new file mode 100644 index 0000000..7869cb5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_serpenti.tres @@ -0,0 +1,575 @@ +[gd_resource type="SpriteFrames" load_steps=79 format=3 uid="uid://bm2cuoyx8m2vx"] + +[ext_resource type="Texture2D" uid="uid://df04nfdtimeh6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png" id="1_7tej6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oknk2"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbpic"] +atlas = ExtResource("1_7tej6") +region = Rect2(405, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uiv2d"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uuhph"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16dm5"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nloy"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qhyk"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_riwvv"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty5dc"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw7ra"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c38tv"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4ea3"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nog1"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohyj7"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge1ce"] +atlas = ExtResource("1_7tej6") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw7am"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmdj4"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30u8i"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p10sn"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx6kk"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwve6"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a5kj"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q23xg"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ea6k"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2vvt"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bpai"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eixq"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl6xn"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfeqt"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me7lu"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y42m"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qpr2"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e23ig"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4c35q"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l02g"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbfno"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcctc"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrrcj"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4qk3"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upaov"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1yhb"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0urj6"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj1m3"] +atlas = ExtResource("1_7tej6") +region = Rect2(405, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ce3s"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l47kx"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_odmiv"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06lvd"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxh56"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rcbm"] +atlas = ExtResource("1_7tej6") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3h2q2"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5wmc"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga2s1"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehktk"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1kgc"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d14y"] +atlas = ExtResource("1_7tej6") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyhbf"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_di6j8"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s64of"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogied"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nudct"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c03f0"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6ol6"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kajun"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7iwx1"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijx7k"] +atlas = ExtResource("1_7tej6") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7n5w"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jnx8"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py1wl"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt80g"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fi5la"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e55d7"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qo28"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6wq2"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqhsa"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8dmgl"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o2ow"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdxkr"] +atlas = ExtResource("1_7tej6") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oknk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbpic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uiv2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uuhph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16dm5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nloy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qhyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_riwvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty5dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw7ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c38tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4ea3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nog1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohyj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge1ce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw7am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmdj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30u8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p10sn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx6kk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwve6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a5kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q23xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ea6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2vvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bpai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eixq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl6xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfeqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me7lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y42m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qpr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e23ig") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4c35q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l02g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbfno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcctc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrrcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4qk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upaov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1yhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0urj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj1m3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ce3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l47kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_odmiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06lvd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxh56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rcbm") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3h2q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5wmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga2s1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehktk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1kgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d14y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyhbf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_di6j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s64of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogied") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nudct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c03f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6ol6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kajun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7iwx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijx7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7n5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jnx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py1wl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt80g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fi5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e55d7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qo28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6wq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqhsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8dmgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o2ow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdxkr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow1.tres new file mode 100644 index 0000000..c203d10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow1.tres @@ -0,0 +1,386 @@ +[gd_resource type="SpriteFrames" load_steps=52 format=3 uid="uid://i5o4n6gljjvi"] + +[ext_resource type="Texture2D" uid="uid://b50odf6uvi0r6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png" id="1_r3ex4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ajb0"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_voorf"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8dtk"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73d8s"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dma7"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwwiy"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soyx0"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7nch"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkqrc"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wr58"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss5m5"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdej4"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noj3j"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gourv"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47v7e"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5dme"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iodni"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb82r"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1v4s"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fipyy"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gq75e"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06ajv"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kti1r"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2kefm"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h08bt"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxahv"] +atlas = ExtResource("1_r3ex4") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_705xr"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnqq5"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_785ar"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6h7rl"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubgbp"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g66c6"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bxbd"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxcvb"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvjlo"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qif2r"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mva2g"] +atlas = ExtResource("1_r3ex4") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tr8p"] +atlas = ExtResource("1_r3ex4") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glerv"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usdec"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kypso"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmtbb"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gers"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yim4e"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ce7tt"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_032p6"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wulg"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6hje"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qooh3"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6mvfs"] +atlas = ExtResource("1_r3ex4") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ajb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_voorf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8dtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73d8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dma7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwwiy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soyx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7nch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkqrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wr58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss5m5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdej4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noj3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gourv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47v7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5dme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iodni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb82r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1v4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fipyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gq75e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06ajv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kti1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2kefm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h08bt") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxahv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_705xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnqq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_785ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6h7rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubgbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g66c6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bxbd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxcvb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvjlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qif2r") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mva2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tr8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glerv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usdec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kypso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmtbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gers") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yim4e") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ce7tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_032p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wulg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6hje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qooh3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6mvfs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow2.tres new file mode 100644 index 0000000..c836fc1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow2.tres @@ -0,0 +1,407 @@ +[gd_resource type="SpriteFrames" load_steps=55 format=3 uid="uid://crygdag3ewiux"] + +[ext_resource type="Texture2D" uid="uid://d3eocjxmyo8x7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png" id="1_2yhhm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v30t6"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn75m"] +atlas = ExtResource("1_2yhhm") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moetf"] +atlas = ExtResource("1_2yhhm") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgp0q"] +atlas = ExtResource("1_2yhhm") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6ol6"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3ax4"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w13be"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr0xl"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu04e"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u334b"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsl76"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ygqif"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w18hb"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypfqv"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtt5j"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vp7i5"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8w7i7"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bb1p"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu8fl"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rscgs"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntv6l"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_likyl"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tddi8"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkklo"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieldj"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqoxm"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_babql"] +atlas = ExtResource("1_2yhhm") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr1pf"] +atlas = ExtResource("1_2yhhm") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq1ev"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10l7f"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsdeg"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifa1y"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thboc"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nie5i"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbvy0"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62dvu"] +atlas = ExtResource("1_2yhhm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbcwo"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_raj0k"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s12fj"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjqft"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nsrbo"] +atlas = ExtResource("1_2yhhm") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olcy5"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmsld"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1f58o"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr0lf"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cc4ur"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adlnt"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cooou"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldoj3"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rspm"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otin5"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtjk4"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdsvv"] +atlas = ExtResource("1_2yhhm") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v30t6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn75m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moetf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgp0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6ol6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3ax4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w13be") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr0xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu04e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u334b") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsl76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ygqif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w18hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypfqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtt5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vp7i5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8w7i7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bb1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu8fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rscgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntv6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_likyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tddi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkklo") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqoxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_babql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr1pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq1ev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10l7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsdeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifa1y") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_thboc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nie5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbvy0") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62dvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbcwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_raj0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s12fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjqft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nsrbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olcy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmsld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1f58o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr0lf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cc4ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adlnt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cooou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldoj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rspm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otin5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtjk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdsvv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow3.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow3.tres new file mode 100644 index 0000000..6356427 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadow3.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://ba5kifouvqrho"] + +[ext_resource type="Texture2D" uid="uid://de7ffjp2c2jde" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png" id="1_kr0o3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2yra"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw8gs"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58xcq"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1oar"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o6cd"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gghf5"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61vf2"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6n85"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0l0si"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6ol8"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e64k"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chpj1"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnko4"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0c1s"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owmyd"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_au3q1"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eekx7"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwg3q"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfdxu"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw0p0"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aar0d"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxliu"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7k8r0"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5drq"] +atlas = ExtResource("1_kr0o3") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f41h3"] +atlas = ExtResource("1_kr0o3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyg8s"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjp34"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc36b"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbdst"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yo8vo"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs1lu"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjlyh"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0ov3"] +atlas = ExtResource("1_kr0o3") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d77ok"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcmpl"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_inyds"] +atlas = ExtResource("1_kr0o3") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2iht"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyu1f"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sskoa"] +atlas = ExtResource("1_kr0o3") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uv4h"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me1qi"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei2f1"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymx4p"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mosie"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iybrq"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibqml"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72hbb"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcjd2"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl0p8"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60k0a"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yclkp"] +atlas = ExtResource("1_kr0o3") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2yra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw8gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58xcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1oar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o6cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gghf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61vf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6n85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0l0si") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6ol8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e64k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_chpj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnko4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0c1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owmyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_au3q1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eekx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwg3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfdxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw0p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aar0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxliu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7k8r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5drq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f41h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyg8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjp34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc36b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbdst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yo8vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs1lu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjlyh") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0ov3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d77ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcmpl") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_inyds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2iht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyu1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sskoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uv4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me1qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei2f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymx4p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mosie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iybrq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibqml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72hbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcjd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl0p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60k0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yclkp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowcaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowcaster.tres new file mode 100644 index 0000000..86ef033 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowcaster.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://cb873y7krqh7"] + +[ext_resource type="Texture2D" uid="uid://dtru8w5exolgt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png" id="1_r2072"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_oouof"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbm7q"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_selik"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an6se"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agkkw"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n27sl"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jb6m"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hai16"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrort"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jgnm"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnpsp"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5t4g"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nd6o"] +atlas = ExtResource("1_r2072") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wr3hl"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpfcq"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d3qb"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2a5q"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58t6t"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpyej"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hhkn"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwjdq"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4l14"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbjr2"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciuio"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry7af"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoovq"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rughv"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cob7b"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gx2o8"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3g2kd"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7mu0"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u58ss"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o54dk"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k12v"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlf5r"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0oip"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elsvu"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urrop"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vxgxv"] +atlas = ExtResource("1_r2072") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x383v"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0gii"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpy4i"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7vhq"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_237ov"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcyyo"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8off7"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ehm1"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v0n6"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3omvi"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4g2d"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8v3gn"] +atlas = ExtResource("1_r2072") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6i16c"] +atlas = ExtResource("1_r2072") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xr3o"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l88e1"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4r0h"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vigbm"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xney8"] +atlas = ExtResource("1_r2072") +region = Rect2(324, 243, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oouof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbm7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_selik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an6se") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agkkw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n27sl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jb6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hai16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrort") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jgnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnpsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5t4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nd6o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wr3hl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpfcq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d3qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2a5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58t6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpyej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hhkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwjdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4l14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbjr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciuio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry7af") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoovq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rughv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cob7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gx2o8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3g2kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7mu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u58ss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o54dk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k12v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlf5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0oip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elsvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urrop") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vxgxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x383v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0gii") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpy4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7vhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_237ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcyyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8off7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ehm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v0n6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3omvi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4g2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8v3gn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6i16c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xr3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l88e1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4r0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vigbm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xney8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowranged.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowranged.tres new file mode 100644 index 0000000..5c0d049 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shadowranged.tres @@ -0,0 +1,470 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://bidopcf5xclyv"] + +[ext_resource type="Texture2D" uid="uid://6ku62vw5nnad" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png" id="1_7yaax"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nkxge"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7d0b"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43vay"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajf4i"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_712j3"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l218m"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hjtpn"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mk31t"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw3xn"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gic7"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5bsc"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbmqy"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7vsb"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq8ft"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyhu7"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ui5ph"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jglk6"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw82h"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rvjv"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scfnw"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o3f2"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6oyty"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tiqgq"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh7v8"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hda2h"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8ohx"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icio4"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d6mr"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_edfhk"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j430p"] +atlas = ExtResource("1_7yaax") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwo15"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jueic"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw1bj"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pltp"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61plv"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrrmy"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyu53"] +atlas = ExtResource("1_7yaax") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sghv"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tyfwi"] +atlas = ExtResource("1_7yaax") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oprqe"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4sr4"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4skrn"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7p37r"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ac77p"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58e5q"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eh6c"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qsho"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ugaas"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_148ur"] +atlas = ExtResource("1_7yaax") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28v08"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3lx1"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3v5p"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0s6v"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln24v"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yl5ll"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4myr8"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63krq"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llgq1"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxjnd"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eah27"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jth0w"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on1uq"] +atlas = ExtResource("1_7yaax") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nkxge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7d0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43vay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajf4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_712j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l218m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hjtpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mk31t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw3xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gic7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5bsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbmqy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7vsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq8ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyhu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ui5ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jglk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw82h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rvjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scfnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o3f2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6oyty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tiqgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh7v8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hda2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8ohx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_icio4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d6mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_edfhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j430p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwo15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jueic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw1bj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pltp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61plv") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrrmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyu53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sghv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tyfwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oprqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4sr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4skrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7p37r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ac77p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58e5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eh6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qsho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ugaas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_148ur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28v08") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3lx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3v5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0s6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln24v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yl5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4myr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63krq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llgq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxjnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eah27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jth0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on1uq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shirodogdragon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shirodogdragon.tres new file mode 100644 index 0000000..2a333a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shirodogdragon.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://b36si24vlc0vw"] + +[ext_resource type="Texture2D" uid="uid://4hxon70kbutf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png" id="1_ef02b"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6q17"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8qom"] +atlas = ExtResource("1_ef02b") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtk5y"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ly0n"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf2ac"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wltyy"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bnrc"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysxxo"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a8ey"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g3sn"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro5tp"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gp488"] +atlas = ExtResource("1_ef02b") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c4p8"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jspek"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjlug"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57hg0"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37rws"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elpbo"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdchj"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyri2"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km43i"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfcle"] +atlas = ExtResource("1_ef02b") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd7f0"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l82d"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xomej"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j380"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ya1a3"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xqfc"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re2qb"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvoax"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqcd3"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4suu5"] +atlas = ExtResource("1_ef02b") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4exxl"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydddw"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ckkd"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcw6d"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35ax5"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iivm0"] +atlas = ExtResource("1_ef02b") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijg3m"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v27e"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mjll"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmjic"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijvk1"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2adc"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g38l7"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sttyl"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vjjc"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5d4u"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8asd"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhv17"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7fon"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p032o"] +atlas = ExtResource("1_ef02b") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw5hw"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtgsv"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5sxn"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl7he"] +atlas = ExtResource("1_ef02b") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krfou"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxpue"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11lkc"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghvi4"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nec1y"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yal10"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_marvn"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trbfe"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u25g4"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgv2a"] +atlas = ExtResource("1_ef02b") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7o2yj"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orx0a"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihx11"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thsb6"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nint5"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y6u3g"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0lk3"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vcxmv"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nxom"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fdxs"] +atlas = ExtResource("1_ef02b") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6q17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8qom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtk5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ly0n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf2ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wltyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bnrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysxxo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a8ey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g3sn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro5tp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gp488") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c4p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jspek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjlug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57hg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37rws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elpbo") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdchj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyri2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km43i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfcle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd7f0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l82d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xomej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j380") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ya1a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xqfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re2qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvoax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqcd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4suu5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4exxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydddw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ckkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcw6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35ax5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iivm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijg3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v27e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mjll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmjic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijvk1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2adc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g38l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sttyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vjjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5d4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8asd") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhv17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7fon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p032o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw5hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtgsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5sxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl7he") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krfou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxpue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11lkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghvi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nec1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yal10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_marvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trbfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u25g4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgv2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7o2yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orx0a") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihx11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thsb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nint5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y6u3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0lk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vcxmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nxom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fdxs") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shuffler.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shuffler.tres new file mode 100644 index 0000000..0010c7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_shuffler.tres @@ -0,0 +1,813 @@ +[gd_resource type="SpriteFrames" load_steps=113 format=3 uid="uid://12spmml60d3o"] + +[ext_resource type="Texture2D" uid="uid://rx17ouk2po8c" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png" id="1_v5kvw"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep5e4"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3375"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1331, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71mko"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1331, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulx8v"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1331, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4jaf"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1331, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rngyy"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4ihn"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_seaap"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g63ex"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nf4w2"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypq8v"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kidv2"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpxyc"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w45bs"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oi86k"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7epd"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ec61"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gh45x"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxxn6"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ljn"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljsru"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy6ei"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rf1b"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvwnt"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew5pd"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_turyc"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2qdom"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x0kv"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2y7vy"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgvbv"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7814"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkmmk"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acksa"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1105"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sn06"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lbv5"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70240"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eo6kb"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64wri"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tc677"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_og53y"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g57ot"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgi07"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64m78"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlm8c"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uliet"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oojfb"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c8ns"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7q8a"] +atlas = ExtResource("1_v5kvw") +region = Rect2(1331, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w00ky"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_km2lh"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y46y6"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e1av"] +atlas = ExtResource("1_v5kvw") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg6sf"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_605hx"] +atlas = ExtResource("1_v5kvw") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qntfu"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjxra"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqg6r"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8wid"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjwcp"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jquhg"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qy42n"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ixuq"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpnuk"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hadhf"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htdvj"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uooh0"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amlcm"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhn6e"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xooj5"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03qrf"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d1as"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh8iv"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jibpv"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnosb"] +atlas = ExtResource("1_v5kvw") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uyks"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3bk3"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cg24k"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vg8wy"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ulrv1"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdvlv"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iglfo"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qtnk"] +atlas = ExtResource("1_v5kvw") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qslf1"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6st4"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wqsqi"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyukw"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1g7b"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnfje"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r5ok"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wavc"] +atlas = ExtResource("1_v5kvw") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qxby"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h63r"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d0ag"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0al6e"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jd0d"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8u58"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5oy6"] +atlas = ExtResource("1_v5kvw") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btsco"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3vki"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcepq"] +atlas = ExtResource("1_v5kvw") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywuhc"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avx01"] +atlas = ExtResource("1_v5kvw") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyh01"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fkk6"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bttd5"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2a6j"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5swb"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aprkt"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr3n0"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h20jk"] +atlas = ExtResource("1_v5kvw") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep5e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3375") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71mko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulx8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4jaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rngyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4ihn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_seaap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g63ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nf4w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypq8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kidv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpxyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w45bs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oi86k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7epd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ec61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gh45x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxxn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ljn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljsru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy6ei") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rf1b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvwnt") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew5pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_turyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2qdom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x0kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2y7vy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgvbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7814") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkmmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acksa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1105") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sn06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lbv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70240") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eo6kb") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_64wri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tc677") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_og53y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g57ot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgi07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64m78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlm8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uliet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oojfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c8ns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7q8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w00ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_km2lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y46y6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e1av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg6sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_605hx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qntfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjxra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqg6r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8wid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjwcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jquhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qy42n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ixuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpnuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hadhf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htdvj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uooh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amlcm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhn6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xooj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03qrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d1as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh8iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jibpv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnosb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uyks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3bk3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cg24k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vg8wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ulrv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdvlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iglfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qtnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qslf1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6st4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wqsqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyukw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1g7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnfje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r5ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wavc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qxby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h63r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d0ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0al6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jd0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8u58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5oy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btsco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3vki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcepq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywuhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avx01") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyh01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fkk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bttd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2a6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5swb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aprkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr3n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h20jk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silhouettetracer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silhouettetracer.tres new file mode 100644 index 0000000..322c0e1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silhouettetracer.tres @@ -0,0 +1,456 @@ +[gd_resource type="SpriteFrames" load_steps=62 format=3 uid="uid://dqhynhb353j5a"] + +[ext_resource type="Texture2D" uid="uid://bcqqcubjg6ov8" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png" id="1_8ueon"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_t42xm"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sf1fj"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fcwk"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llgj8"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vn1vg"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h5aag"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvqpg"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhwko"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kltsx"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kff33"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0ahn"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1npdr"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whkch"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kau5"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyayc"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_en0ae"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m261v"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp40i"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6txr"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqh01"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnn0b"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs3ph"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmpvk"] +atlas = ExtResource("1_8ueon") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe1gf"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avnic"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a82rv"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6tx0"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1b52"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_chsjg"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhekk"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd1md"] +atlas = ExtResource("1_8ueon") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bla3l"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eb1p0"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35aqw"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yoav8"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t1hx"] +atlas = ExtResource("1_8ueon") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jwam"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bdly"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebmoc"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtblp"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utjw7"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mt15m"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d581e"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erjp6"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ud5rt"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27twb"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r8xu"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_265qv"] +atlas = ExtResource("1_8ueon") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rm61k"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqhqm"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7uafj"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwiju"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtk4h"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0mfx"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1s0r"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vljg7"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exprk"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqcdp"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jyqn"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fsro5"] +atlas = ExtResource("1_8ueon") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t42xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sf1fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fcwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llgj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vn1vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h5aag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvqpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhwko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kltsx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kff33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0ahn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1npdr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whkch") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kau5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyayc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_en0ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m261v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp40i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6txr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqh01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnn0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs3ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmpvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe1gf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avnic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a82rv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6tx0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1b52") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_chsjg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhekk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd1md") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bla3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eb1p0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35aqw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yoav8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t1hx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jwam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bdly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebmoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtblp") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_utjw7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mt15m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d581e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_erjp6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ud5rt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27twb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r8xu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_265qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rm61k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqhqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7uafj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwiju") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtk4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0mfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1s0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vljg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exprk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqcdp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jyqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fsro5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silverbeak.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silverbeak.tres new file mode 100644 index 0000000..967164a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silverbeak.tres @@ -0,0 +1,582 @@ +[gd_resource type="SpriteFrames" load_steps=80 format=3 uid="uid://u8cajgpm3ugr"] + +[ext_resource type="Texture2D" uid="uid://ddox838a37ir0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png" id="1_8w8ht"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoccu"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ehx25"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh21h"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov05g"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pgbo"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drm0t"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv62l"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly6r0"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q7wr"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1hne"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn8iq"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucr01"] +atlas = ExtResource("1_8w8ht") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e2kp"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3ews"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55jpn"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3swo"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_retkj"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0n41"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qffys"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3yrfb"] +atlas = ExtResource("1_8w8ht") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csuag"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl4s2"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnb74"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxts8"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u74ra"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkga2"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0av0"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lftap"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dmx1"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ksde5"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp3u8"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxjc4"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sexdi"] +atlas = ExtResource("1_8w8ht") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y33uc"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3hta"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hooor"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ecwu"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kldef"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la3x8"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mps5f"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmsr7"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obh0h"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd2ml"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovsli"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vc05w"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48bhd"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_833an"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fylqq"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45r63"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ermh"] +atlas = ExtResource("1_8w8ht") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mf3d"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3y3q"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3obsi"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbjlp"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p30tj"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yn3t4"] +atlas = ExtResource("1_8w8ht") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lskb5"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_js3sf"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgq53"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et1ji"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0ig0"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nug67"] +atlas = ExtResource("1_8w8ht") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mvjo"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lt3t"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrpld"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq2fj"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubh63"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yld1d"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvl54"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nv3pk"] +atlas = ExtResource("1_8w8ht") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljsgt"] +atlas = ExtResource("1_8w8ht") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5nku"] +atlas = ExtResource("1_8w8ht") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3s2if"] +atlas = ExtResource("1_8w8ht") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dlqul"] +atlas = ExtResource("1_8w8ht") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7dsi"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7kcw"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ge5"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aloj8"] +atlas = ExtResource("1_8w8ht") +region = Rect2(847, 484, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoccu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ehx25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh21h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov05g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pgbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drm0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv62l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly6r0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q7wr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1hne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn8iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucr01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e2kp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3ews") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55jpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3swo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_retkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0n41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qffys") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3yrfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csuag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl4s2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnb74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxts8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u74ra") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkga2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0av0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lftap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dmx1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ksde5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp3u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxjc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sexdi") +}], +"loop": true, +"name": &"breathe", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y33uc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3hta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hooor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ecwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kldef") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la3x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mps5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmsr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obh0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd2ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovsli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vc05w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48bhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_833an") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fylqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45r63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ermh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mf3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3y3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3obsi") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbjlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p30tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yn3t4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lskb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_js3sf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgq53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et1ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0ig0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nug67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mvjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lt3t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrpld") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq2fj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubh63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yld1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvl54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nv3pk") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljsgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5nku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3s2if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dlqul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7dsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7kcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ge5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aloj8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silvermech.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silvermech.tres new file mode 100644 index 0000000..d7e4e11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_silvermech.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://qgue6wrcneyb"] + +[ext_resource type="Texture2D" uid="uid://b6ddrncgdqay2" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png" id="1_4imws"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_prsxe"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrqel"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myngv"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxndv"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxfev"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wegnj"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1gif"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jb8l"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20jgg"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ww748"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5clh"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl223"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tc0o"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iofwt"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jk44t"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nm3d3"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexv6"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_arrwe"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mht5"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gimqr"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jptnn"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jv5hk"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut0n1"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mena"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1pvc"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gkt8"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3dht"] +atlas = ExtResource("1_4imws") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3rp3p"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81gn4"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2ck5"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o4hc"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukx3p"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4qg0"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq864"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0yx6v"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daivf"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pckn6"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21fp3"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_028ah"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqmdk"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84wau"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr836"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5hyb"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7x7w"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85ghv"] +atlas = ExtResource("1_4imws") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvpsu"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxm0b"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgcec"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hcub"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k2ri"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2dy0"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xucp1"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnamt"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkh3m"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwrc6"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c7u0"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7elto"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72vq1"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_217rq"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwcxg"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6vv8"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7qsj"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13cgk"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6kh5f"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b45e3"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36uwb"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lybu"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ggti"] +atlas = ExtResource("1_4imws") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frv5y"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5rft"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fm4m"] +atlas = ExtResource("1_4imws") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap33j"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek6m6"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqlgy"] +atlas = ExtResource("1_4imws") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvqd1"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ncft"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fwtv4"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4m8hi"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q4rj6"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfg8k"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q67ky"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olexj"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouvec"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um444"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m5sq"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vxyo"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4k1i1"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcnh7"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_205fq"] +atlas = ExtResource("1_4imws") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qwd5"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jomlt"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jddbx"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u34n"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro71b"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsxhs"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bdla"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ky1u"] +atlas = ExtResource("1_4imws") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_prsxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrqel") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myngv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxndv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxfev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wegnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1gif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jb8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20jgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ww748") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5clh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl223") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tc0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iofwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jk44t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nm3d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_arrwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mht5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gimqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jptnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jv5hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut0n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mena") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1pvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gkt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3dht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3rp3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81gn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2ck5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o4hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukx3p") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4qg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq864") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0yx6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daivf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pckn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21fp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_028ah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqmdk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84wau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr836") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5hyb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7x7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85ghv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvpsu") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxm0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgcec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hcub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k2ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2dy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xucp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnamt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkh3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwrc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c7u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7elto") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_72vq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_217rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwcxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6vv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7qsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13cgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6kh5f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b45e3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36uwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lybu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ggti") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_frv5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5rft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fm4m") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap33j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek6m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqlgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvqd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ncft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fwtv4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4m8hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q4rj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfg8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q67ky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olexj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouvec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um444") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m5sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vxyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4k1i1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcnh7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_205fq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qwd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jomlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jddbx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u34n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro71b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsxhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bdla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ky1u") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_singletonmythron.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_singletonmythron.tres new file mode 100644 index 0000000..5292516 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_singletonmythron.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bpy76fes4m5r6"] + +[ext_resource type="Texture2D" uid="uid://dr6bqwc6blebe" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png" id="1_afr1i"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f8mf"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_myoy4"] +atlas = ExtResource("1_afr1i") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkpq7"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vioxk"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr8xn"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhpe1"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1ueo"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6t6f"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofbht"] +atlas = ExtResource("1_afr1i") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bcrb0"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrc5b"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38oi6"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuehr"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ba3yx"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uowxl"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg6jo"] +atlas = ExtResource("1_afr1i") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5ksu"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjra8"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grhqy"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snlun"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qessj"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0csfe"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6be8r"] +atlas = ExtResource("1_afr1i") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcgph"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6utb"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33q1f"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ln13s"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7nhe"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd4lb"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7cg31"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwkk4"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t6blk"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stqb2"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l4w3"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlhnf"] +atlas = ExtResource("1_afr1i") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lram"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwjrr"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpj3h"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5qta"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvdey"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6jv6"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pt4t"] +atlas = ExtResource("1_afr1i") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0tdi"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4exa"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_man7n"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv5j2"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo7qy"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vs4l"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ws1v"] +atlas = ExtResource("1_afr1i") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0d4ib"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4tbb"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n7ny"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76pfo"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekyfa"] +atlas = ExtResource("1_afr1i") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iv5dr"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r2gv"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70q6t"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_035ii"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4db7t"] +atlas = ExtResource("1_afr1i") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6j56"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r3ua"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tx5t"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ogm2"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh8mb"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25xak"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfdsg"] +atlas = ExtResource("1_afr1i") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcn5l"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvgdw"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3aqg7"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbecr"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmbof"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qyun"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10ygl"] +atlas = ExtResource("1_afr1i") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8aaa"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4syp"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtqsq"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwgai"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rxpa"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfgon"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faklp"] +atlas = ExtResource("1_afr1i") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f8mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_myoy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkpq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vioxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr8xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhpe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1ueo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6t6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofbht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bcrb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrc5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38oi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuehr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ba3yx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uowxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg6jo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5ksu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjra8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grhqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snlun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qessj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0csfe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6be8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcgph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6utb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_33q1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ln13s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7nhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd4lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7cg31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwkk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t6blk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stqb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l4w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlhnf") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lram") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwjrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpj3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5qta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvdey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6jv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pt4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0tdi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4exa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_man7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv5j2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo7qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vs4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ws1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0d4ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4tbb") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n7ny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76pfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekyfa") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iv5dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r2gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70q6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_035ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4db7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6j56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r3ua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tx5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ogm2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh8mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25xak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfdsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcn5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvgdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3aqg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbecr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmbof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qyun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10ygl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8aaa") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4syp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtqsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwgai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rxpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfgon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faklp") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sinistersilhouette.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sinistersilhouette.tres new file mode 100644 index 0000000..fe09c72 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sinistersilhouette.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://ctbetjhqwdvsh"] + +[ext_resource type="Texture2D" uid="uid://cjonybdqvg4yc" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png" id="1_rrm6x"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd258"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vsqf"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a738p"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2trlv"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtiwb"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ijgmu"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_357pg"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqrhy"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kv0d"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yiyy"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5sub"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8oiv"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1nsl"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hpp8"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5qy4"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bloyy"] +atlas = ExtResource("1_rrm6x") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6177"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5q5m"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g87sm"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fe4e4"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gyns2"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x78q"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8fas"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su28t"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gpfv3"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rujnk"] +atlas = ExtResource("1_rrm6x") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coyor"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oteiy"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ro73w"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jsjm"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pufep"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15bn1"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5d28"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5xd"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ximpq"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beu2e"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fsul"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3j8kg"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhye7"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfc8m"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiwyu"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fgw0"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbnje"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afhit"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x073f"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t83di"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh17i"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sovp"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_antdo"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yolx"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr6da"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anq2k"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8v35"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg3q2"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avmlk"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdpy6"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrju3"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfp4p"] +atlas = ExtResource("1_rrm6x") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_al32r"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p7bu"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukhr2"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg72c"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s76ys"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4bjt"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6gtp"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlyvk"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6wlt"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6leay"] +atlas = ExtResource("1_rrm6x") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tvweh"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhfi1"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_630no"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0bwe"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ootwj"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjtxv"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_726pf"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iycre"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if8k4"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jr5ga"] +atlas = ExtResource("1_rrm6x") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d51h"] +atlas = ExtResource("1_rrm6x") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x58ba"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4f60"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2xft"] +atlas = ExtResource("1_rrm6x") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5pxn"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdii3"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcryi"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o8bhj"] +atlas = ExtResource("1_rrm6x") +region = Rect2(606, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd258") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vsqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a738p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2trlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtiwb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ijgmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_357pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqrhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kv0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yiyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5sub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8oiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1nsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hpp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5qy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bloyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6177") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5q5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g87sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fe4e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gyns2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x78q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8fas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su28t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gpfv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rujnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coyor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oteiy") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ro73w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jsjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pufep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15bn1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5d28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ximpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beu2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fsul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3j8kg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhye7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfc8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiwyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fgw0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbnje") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afhit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x073f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t83di") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh17i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sovp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_antdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yolx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr6da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anq2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8v35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg3q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avmlk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdpy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrju3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfp4p") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_al32r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p7bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukhr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg72c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s76ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4bjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6gtp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlyvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6wlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6leay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tvweh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhfi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_630no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0bwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ootwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjtxv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_726pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iycre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if8k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jr5ga") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d51h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x58ba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4f60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2xft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5pxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdii3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcryi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o8bhj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sister.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sister.tres new file mode 100644 index 0000000..b126882 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sister.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://grgvtjbtfxel"] + +[ext_resource type="Texture2D" uid="uid://lf3oqk46uetd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png" id="1_uopln"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_e50bq"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4itys"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ab8on"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ektr8"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuwhy"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urpxp"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r87ly"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtx5a"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7pav"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdehm"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_646ov"] +atlas = ExtResource("1_uopln") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsoam"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csrui"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f02bp"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bvfv"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0uxbg"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dmisf"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bhfy"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gi2ov"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyhqc"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jljnv"] +atlas = ExtResource("1_uopln") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77xtf"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ef70o"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smk3k"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opok5"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnnd6"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0jpb"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4432"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jw6a"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nm7o"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ahk6"] +atlas = ExtResource("1_uopln") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybes6"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6p361"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieu3a"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2x1d"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6llxa"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvepj"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2f2hj"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81k47"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hn708"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iybfm"] +atlas = ExtResource("1_uopln") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5cwc"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6qlg"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_834y1"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_361u8"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psvd6"] +atlas = ExtResource("1_uopln") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo3lg"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1yadb"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdban"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk5lh"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r72dj"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxwa0"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6ob6"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eibwx"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d67l"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3wlp"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5f4qw"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fg8au"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu5gl"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvkfw"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpdjv"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vnjc"] +atlas = ExtResource("1_uopln") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcb2m"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p02j3"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epexe"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfs01"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4gwk"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3mo4"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hk2ov"] +atlas = ExtResource("1_uopln") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u2xl"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftpib"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5tof"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68i78"] +atlas = ExtResource("1_uopln") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ob0u"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7ro7"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfnre"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nua2d"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7m0s"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgas"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_427b6"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvlfj"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqijk"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekm1e"] +atlas = ExtResource("1_uopln") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6svc5"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pfdov"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1lxrm"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d53d3"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgo6l"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e04wy"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f253s"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe88i"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63usm"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18ia0"] +atlas = ExtResource("1_uopln") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e50bq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4itys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ab8on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ektr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuwhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urpxp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r87ly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtx5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7pav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdehm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_646ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsoam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csrui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f02bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bvfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0uxbg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dmisf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bhfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gi2ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyhqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jljnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77xtf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ef70o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smk3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opok5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnnd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0jpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4432") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jw6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nm7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ahk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybes6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6p361") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieu3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2x1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6llxa") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvepj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2f2hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81k47") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hn708") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iybfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5cwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6qlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_834y1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_361u8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psvd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo3lg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1yadb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdban") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk5lh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r72dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxwa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6ob6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eibwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d67l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3wlp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5f4qw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fg8au") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu5gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvkfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpdjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vnjc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcb2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p02j3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epexe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfs01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4gwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3mo4") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hk2ov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u2xl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftpib") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5tof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68i78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ob0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7ro7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfnre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nua2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7m0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_427b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvlfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqijk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekm1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6svc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pfdov") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1lxrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d53d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgo6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e04wy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f253s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe88i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63usm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18ia0") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_skywing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_skywing.tres new file mode 100644 index 0000000..9a78612 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_skywing.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://2k1oumscdat5"] + +[ext_resource type="Texture2D" uid="uid://bsmayog8dyna0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png" id="1_o1bxy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_62avx"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efq5v"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sk8wc"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqqi7"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em3dp"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n6v7"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eg63g"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v8f1"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iodsb"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kttjb"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5xdt"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pj7re"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7wd5"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03mpl"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48rc2"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vhus"] +atlas = ExtResource("1_o1bxy") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t5dr"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njl8m"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4luqa"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j7u1"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vytbl"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn56c"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2pgw"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8sjij"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvph7"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3p8pt"] +atlas = ExtResource("1_o1bxy") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmxp0"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7leug"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_252ni"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y330q"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5qup"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hj4gi"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkbtm"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rties"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjpi8"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_750vh"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fd7as"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_apggx"] +atlas = ExtResource("1_o1bxy") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdgek"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wy0mo"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gssga"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kx3h"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0emoe"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rah37"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sfco"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sbfu"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8fci"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hy6e2"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtn7t"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgpkb"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo7ul"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l8h1"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa1vw"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prq88"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku6gt"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbxsw"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub62w"] +atlas = ExtResource("1_o1bxy") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2suf"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1nnb"] +atlas = ExtResource("1_o1bxy") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdq4e"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cui17"] +atlas = ExtResource("1_o1bxy") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fed78"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlpph"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rak0c"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7lai"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3i2iy"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwg24"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5mtb"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yc1i0"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dchtc"] +atlas = ExtResource("1_o1bxy") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms6h7"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0jyu"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4n1m"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fyea"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwun0"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m1js"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oiub3"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m205d"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybbel"] +atlas = ExtResource("1_o1bxy") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62avx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efq5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sk8wc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqqi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em3dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n6v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eg63g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v8f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iodsb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kttjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5xdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pj7re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7wd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03mpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48rc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vhus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t5dr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njl8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4luqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j7u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vytbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn56c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2pgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8sjij") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvph7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3p8pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmxp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7leug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_252ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y330q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5qup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hj4gi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkbtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rties") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjpi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_750vh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fd7as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_apggx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdgek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wy0mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gssga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kx3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0emoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rah37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sfco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sbfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8fci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hy6e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtn7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgpkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo7ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l8h1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa1vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prq88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku6gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbxsw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub62w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2suf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1nnb") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdq4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cui17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fed78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlpph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rak0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7lai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3i2iy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwg24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5mtb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yc1i0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dchtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms6h7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0jyu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4n1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fyea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwun0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m1js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oiub3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m205d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybbel") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_soboro.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_soboro.tres new file mode 100644 index 0000000..317a5cc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_soboro.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://cx6aditsn5ct4"] + +[ext_resource type="Texture2D" uid="uid://b5rw343xdlfou" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png" id="1_7mvih"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7bmde"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j65ii"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iehui"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhl7k"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyt8y"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8qwo"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7yd0"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ig7ue"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv0r6"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm8rn"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gil0f"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vphb2"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8s8rk"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4qau"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhobu"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ihjy"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leq2p"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1wpj"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7buwg"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8u4n"] +atlas = ExtResource("1_7mvih") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty28y"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmwxg"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn2hk"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jg7cy"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c8yd"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr6em"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmisu"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wypnb"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skatq"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4mv71"] +atlas = ExtResource("1_7mvih") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jddus"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihu0m"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i86cv"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62m0w"] +atlas = ExtResource("1_7mvih") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wg6cl"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_typ0k"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ppk"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awl5i"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_db57y"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bf0dj"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imvsq"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itgh6"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ogaae"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6y70"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4afts"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o88"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kawgr"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u2bg"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6u0b"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erefn"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_723o3"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6uxk"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_effqe"] +atlas = ExtResource("1_7mvih") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fi28"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7845"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ulqi"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1ojd"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1rx24"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwvgy"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cw2r"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y4fqp"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enl5a"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sfb2"] +atlas = ExtResource("1_7mvih") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyd1h"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8yqu"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2tne"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oja7"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glaak"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i54k"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x08av"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wikp4"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_topxt"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pn7aq"] +atlas = ExtResource("1_7mvih") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jkf5"] +atlas = ExtResource("1_7mvih") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpvfc"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81jq8"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsrj8"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jksoy"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yerfp"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a68n2"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfdr6"] +atlas = ExtResource("1_7mvih") +region = Rect2(707, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7bmde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j65ii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iehui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhl7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyt8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8qwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7yd0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ig7ue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv0r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm8rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gil0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vphb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8s8rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4qau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhobu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ihjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leq2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1wpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7buwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8u4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty28y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmwxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn2hk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jg7cy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c8yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr6em") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmisu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wypnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skatq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4mv71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jddus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihu0m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i86cv") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_62m0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wg6cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_typ0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ppk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awl5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_db57y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bf0dj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imvsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itgh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ogaae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6y70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4afts") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kawgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u2bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6u0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erefn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_723o3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6uxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_effqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fi28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7845") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ulqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1ojd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1rx24") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwvgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cw2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y4fqp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_enl5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sfb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyd1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8yqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2tne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oja7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glaak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i54k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x08av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wikp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_topxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pn7aq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jkf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpvfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81jq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsrj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jksoy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yerfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a68n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfdr6") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sol.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sol.tres new file mode 100644 index 0000000..789fc61 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sol.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://ddab6fj04iioy"] + +[ext_resource type="Texture2D" uid="uid://tdky7riarox3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png" id="1_3cm0n"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa3yl"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3au4v"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykx5l"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dnpm6"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtfob"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grs77"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qr8u5"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb6bc"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbl2x"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soqhd"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0xq3"] +atlas = ExtResource("1_3cm0n") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_okkro"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5kxg"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aaq43"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_donxr"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfl8h"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5iegs"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e3aec"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rutks"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_554e8"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pp70r"] +atlas = ExtResource("1_3cm0n") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ncj4e"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7hv8o"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0p5p"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vcs1"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ofyd"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_od7k3"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1sg3q"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1dsr"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ox7v0"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5a8v"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqfc6"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs5vn"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u2r3"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo7mq"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83p4h"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwh6h"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3c7u"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcov2"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77emf"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ahmk"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eedn"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ia347"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v675"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsh1v"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smemi"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7ln5"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y88cd"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvsj6"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bi4i"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5cgs"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0urph"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp41d"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5vd6"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i6yeb"] +atlas = ExtResource("1_3cm0n") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omd35"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei2jh"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wyt41"] +atlas = ExtResource("1_3cm0n") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7jsr"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58fa5"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_merpq"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tr174"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrmmp"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux38x"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0gk0"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txh3s"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q87ib"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aeyee"] +atlas = ExtResource("1_3cm0n") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spd0j"] +atlas = ExtResource("1_3cm0n") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjqnv"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81odj"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drf7m"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds2gh"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r0bb"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngexv"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54fra"] +atlas = ExtResource("1_3cm0n") +region = Rect2(606, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa3yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3au4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykx5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dnpm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtfob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grs77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qr8u5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb6bc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbl2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soqhd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0xq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_okkro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5kxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aaq43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_donxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfl8h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5iegs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e3aec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rutks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_554e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pp70r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ncj4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7hv8o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0p5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vcs1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ofyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_od7k3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1sg3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1dsr") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ox7v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5a8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqfc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs5vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u2r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo7mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83p4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwh6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3c7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcov2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77emf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ahmk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eedn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ia347") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v675") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsh1v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smemi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7ln5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y88cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvsj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bi4i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5cgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0urph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp41d") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5vd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i6yeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omd35") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei2jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wyt41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7jsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58fa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_merpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tr174") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrmmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux38x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0gk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txh3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q87ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aeyee") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spd0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjqnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81odj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drf7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds2gh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r0bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngexv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54fra") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spelljammer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spelljammer.tres new file mode 100644 index 0000000..de3d161 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spelljammer.tres @@ -0,0 +1,484 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://dypqhi726rkiq"] + +[ext_resource type="Texture2D" uid="uid://csvxldike73t5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png" id="1_1j1qg"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtg5x"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mua7d"] +atlas = ExtResource("1_1j1qg") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6olru"] +atlas = ExtResource("1_1j1qg") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd534"] +atlas = ExtResource("1_1j1qg") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kj5y"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlkep"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4wgf"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u14fl"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r0mb"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ow6"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt0x5"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtv1j"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgyhv"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwlq2"] +atlas = ExtResource("1_1j1qg") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae2as"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ahae"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hsspm"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5idq"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bpsg"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ygo5"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfxvh"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5fhj"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj0bd"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xam1n"] +atlas = ExtResource("1_1j1qg") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5cwk"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2cc03"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4xm8"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fg5m"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhgki"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo4or"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh80h"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fq6y7"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqgyw"] +atlas = ExtResource("1_1j1qg") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_daqgl"] +atlas = ExtResource("1_1j1qg") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l75sx"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w22ru"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjndo"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytrot"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq78e"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8d4ta"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl5x0"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ah2n"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1d3mm"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q110e"] +atlas = ExtResource("1_1j1qg") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaqn3"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttseb"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sw70"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yk7x"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wh427"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqgbq"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eytr1"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34jdl"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfcck"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgpwv"] +atlas = ExtResource("1_1j1qg") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs2hb"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vq5cf"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4uqft"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77pap"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhb21"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrohr"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2n2r"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae6fc"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n8un"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gkwuk"] +atlas = ExtResource("1_1j1qg") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtg5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mua7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6olru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd534") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kj5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlkep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4wgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u14fl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r0mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ow6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt0x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtv1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgyhv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwlq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae2as") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ahae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hsspm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5idq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bpsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ygo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfxvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5fhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj0bd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xam1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5cwk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2cc03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4xm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fg5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhgki") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo4or") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh80h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fq6y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqgyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_daqgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l75sx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w22ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjndo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytrot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq78e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8d4ta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl5x0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ah2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1d3mm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q110e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaqn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttseb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sw70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yk7x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wh427") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqgbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eytr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34jdl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfcck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgpwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs2hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vq5cf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4uqft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77pap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhb21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrohr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2n2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae6fc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n8un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gkwuk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellsammermk2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellsammermk2.tres new file mode 100644 index 0000000..11012e6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellsammermk2.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://bot4bcxrgkd4m"] + +[ext_resource type="Texture2D" uid="uid://dh6ikhcixp1rj" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png" id="1_poivs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_spqdh"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etqdu"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iqhb"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12x0j"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hhp12"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_21uxf"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrisp"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bgaa"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbiep"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qul7l"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycn6q"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04xck"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_73dki"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxldf"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6qd67"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bgctp"] +atlas = ExtResource("1_poivs") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74cx5"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8a4ox"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ec10"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xml5l"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70y82"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr7l0"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikeox"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0eol"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pw42"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7j01"] +atlas = ExtResource("1_poivs") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrhob"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owjdn"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_extn3"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vehvc"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35xhv"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iox26"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1ik6"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_at2ie"] +atlas = ExtResource("1_poivs") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_livgg"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swsur"] +atlas = ExtResource("1_poivs") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dg2s"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku56l"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgp0j"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb0pp"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjs42"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndra2"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prhr6"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy60i"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dya0w"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg5iv"] +atlas = ExtResource("1_poivs") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tq8a"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2dg0a"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jip3g"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tni61"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq8pi"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w872d"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvl4s"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ccq"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4kd2c"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glglk"] +atlas = ExtResource("1_poivs") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2631"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipujx"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cla8c"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0p4hv"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vshpy"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejq2n"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v15lw"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ttbh2"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jw8oj"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nem8"] +atlas = ExtResource("1_poivs") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_spqdh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etqdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iqhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12x0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hhp12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_21uxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrisp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bgaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbiep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qul7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycn6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04xck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_73dki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxldf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6qd67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bgctp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74cx5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8a4ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ec10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xml5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70y82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr7l0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikeox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0eol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pw42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7j01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrhob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owjdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_extn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vehvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35xhv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iox26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1ik6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_at2ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_livgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swsur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dg2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku56l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgp0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb0pp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjs42") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndra2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prhr6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy60i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dya0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg5iv") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tq8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2dg0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jip3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tni61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq8pi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w872d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvl4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ccq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4kd2c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glglk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2631") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipujx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cla8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0p4hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vshpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejq2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v15lw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ttbh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jw8oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nem8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellspark.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellspark.tres new file mode 100644 index 0000000..b9c052d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spellspark.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://ba6rkvi2kf0u4"] + +[ext_resource type="Texture2D" uid="uid://dj3ntyv8xnnrs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png" id="1_jfsd6"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wemss"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_skggx"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i40dx"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opw0r"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82res"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4t3v"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80n1w"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv4t1"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obp4u"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn77i"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tigg0"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1oeo"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wlb2x"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_648k0"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1mnp"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ku10o"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0fcd"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nexs4"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjfuv"] +atlas = ExtResource("1_jfsd6") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpkx7"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rir7r"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ihed"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p17yy"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3njac"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxisi"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2htyy"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syin8"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cetvp"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7g1yd"] +atlas = ExtResource("1_jfsd6") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djdnd"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrx13"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4365"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imgp4"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bcjt"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqn27"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqyyp"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gr80d"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ws0b"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ceeb"] +atlas = ExtResource("1_jfsd6") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r54im"] +atlas = ExtResource("1_jfsd6") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pydi"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5u6t"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ayxs"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r4hwj"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsllc"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36pds"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f84g2"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x6bo"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdo1t"] +atlas = ExtResource("1_jfsd6") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6y3r"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6cm0"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxdax"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhjbq"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01qj7"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7roqn"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il2tw"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x1su"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ndx4"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55g1g"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxq82"] +atlas = ExtResource("1_jfsd6") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbyy6"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3567k"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyp4r"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2vbs"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7tksg"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wsl1"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on1u6"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lx7ti"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4pib"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il1sw"] +atlas = ExtResource("1_jfsd6") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_775yi"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uihus"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyugq"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_856on"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flops"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uq6n5"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0la61"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y0y6w"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwuf8"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moqow"] +atlas = ExtResource("1_jfsd6") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wemss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_skggx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i40dx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opw0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82res") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4t3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80n1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv4t1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obp4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn77i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tigg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1oeo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wlb2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_648k0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1mnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ku10o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0fcd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nexs4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjfuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpkx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rir7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ihed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p17yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3njac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxisi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2htyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syin8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cetvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7g1yd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djdnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrx13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4365") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imgp4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bcjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqn27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqyyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gr80d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ws0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ceeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r54im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pydi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5u6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ayxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r4hwj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsllc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36pds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f84g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x6bo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdo1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6y3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6cm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxdax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhjbq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_01qj7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7roqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il2tw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x1su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ndx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55g1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxq82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbyy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3567k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyp4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2vbs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7tksg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wsl1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on1u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lx7ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4pib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il1sw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_775yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uihus") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyugq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_856on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flops") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uq6n5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0la61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y0y6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwuf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_moqow") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spiritscribe.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spiritscribe.tres new file mode 100644 index 0000000..a5fdf12 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_spiritscribe.tres @@ -0,0 +1,561 @@ +[gd_resource type="SpriteFrames" load_steps=77 format=3 uid="uid://chd40tr3rhyyu"] + +[ext_resource type="Texture2D" uid="uid://bkhk6iutjn0t5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png" id="1_26bfv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fdxd"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8d2r"] +atlas = ExtResource("1_26bfv") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohphy"] +atlas = ExtResource("1_26bfv") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5nt6"] +atlas = ExtResource("1_26bfv") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d757r"] +atlas = ExtResource("1_26bfv") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kix2"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifp2g"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvwj5"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jh0yq"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0q3b6"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi7rj"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0fom1"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxfmg"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnhn3"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcbpa"] +atlas = ExtResource("1_26bfv") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jtre"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fp16"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7exp"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8fcm"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qj1dc"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1q0c"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghprd"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_825qe"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7ccv"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk1of"] +atlas = ExtResource("1_26bfv") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2a6c"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2j8e"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qqhw"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t05ry"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rtf46"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrwu3"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vh26t"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ns03q"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_185ut"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3d2hb"] +atlas = ExtResource("1_26bfv") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6r38y"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ub7ob"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ixj"] +atlas = ExtResource("1_26bfv") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37yme"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rntc"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2ipl"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c46wd"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ghjx"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j75l5"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14afr"] +atlas = ExtResource("1_26bfv") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0c82g"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbmm6"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yauck"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kke61"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mwkcs"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pet4"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ybv0"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1uqp"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffbcp"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmaiq"] +atlas = ExtResource("1_26bfv") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1evgr"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4iy3"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d7asx"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lewkh"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwblj"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oum6s"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2ddg"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gedi4"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vj6e8"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppm7u"] +atlas = ExtResource("1_26bfv") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6rko"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd8l4"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6q0a"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjpsh"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7y1f"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1epdf"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2yj5"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oy8ia"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sbwj6"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1eg5"] +atlas = ExtResource("1_26bfv") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fdxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8d2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohphy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5nt6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d757r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kix2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifp2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvwj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jh0yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0q3b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi7rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0fom1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxfmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnhn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcbpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jtre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fp16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7exp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8fcm") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qj1dc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1q0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghprd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_825qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7ccv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk1of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2a6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2j8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qqhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t05ry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rtf46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrwu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vh26t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ns03q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_185ut") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3d2hb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6r38y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ub7ob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ixj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37yme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rntc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2ipl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c46wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ghjx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j75l5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14afr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0c82g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbmm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yauck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kke61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mwkcs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pet4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ybv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1uqp") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffbcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmaiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1evgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4iy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d7asx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lewkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwblj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oum6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2ddg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gedi4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vj6e8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppm7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6rko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd8l4") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6q0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjpsh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7y1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1epdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2yj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oy8ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sbwj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1eg5") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunelemental.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunelemental.tres new file mode 100644 index 0000000..a273683 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunelemental.tres @@ -0,0 +1,729 @@ +[gd_resource type="SpriteFrames" load_steps=101 format=3 uid="uid://de06npqab6x8n"] + +[ext_resource type="Texture2D" uid="uid://7ommvjmasnlu" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png" id="1_i5yns"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_v724v"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t4rth"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qldc"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1beoe"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x80w3"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q33mu"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qhppm"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6snw3"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nst5"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdew3"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t5hen"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uklie"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfnma"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5hxm"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu6bm"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nx4bb"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hel84"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48fkd"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7fayr"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6oq7"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q1r4"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdoo7"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol5dy"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kppko"] +atlas = ExtResource("1_i5yns") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xk5n"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7phf"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfbai"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7va33"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jhmg"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m28ol"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bf1i"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a53vk"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_648yg"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghr5x"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev5h4"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqndx"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llgie"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkmm8"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4520"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45tm1"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ob6u4"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_our5y"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8h35"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlyqr"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfryo"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llv5d"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mufv2"] +atlas = ExtResource("1_i5yns") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsd65"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o4s4"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mecuv"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7kl8"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muwgb"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx3la"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4g5c"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sy1wg"] +atlas = ExtResource("1_i5yns") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jr3f"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl1qc"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1648"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prepk"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afd0u"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1r1m"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miacj"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1ti2"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ar77x"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sofhc"] +atlas = ExtResource("1_i5yns") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f27fn"] +atlas = ExtResource("1_i5yns") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20gwl"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6suvx"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gqx2"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0aah"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3eun0"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0oq1"] +atlas = ExtResource("1_i5yns") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ysr4"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcory"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usggp"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2ro4"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75k44"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfs3f"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sm2gq"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7a4ie"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dpy8"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spita"] +atlas = ExtResource("1_i5yns") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as802"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tnu5m"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfibu"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p821g"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2jtr"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shqjp"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6skgb"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3h0c"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wxg5"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_akbio"] +atlas = ExtResource("1_i5yns") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un1js"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ev3v0"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpqiw"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1m03"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c72kx"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yugt1"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66je3"] +atlas = ExtResource("1_i5yns") +region = Rect2(505, 303, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v724v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t4rth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qldc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1beoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x80w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q33mu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qhppm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6snw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nst5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdew3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t5hen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uklie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfnma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5hxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu6bm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nx4bb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hel84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48fkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7fayr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6oq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q1r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdoo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol5dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kppko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xk5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7phf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfbai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7va33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jhmg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m28ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bf1i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a53vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_648yg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghr5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev5h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqndx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llgie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkmm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4520") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45tm1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ob6u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_our5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8h35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlyqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfryo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llv5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mufv2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsd65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o4s4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mecuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7kl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muwgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx3la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4g5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sy1wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jr3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl1qc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1648") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prepk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afd0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1r1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miacj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1ti2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ar77x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sofhc") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_f27fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20gwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6suvx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gqx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0aah") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3eun0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0oq1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ysr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcory") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usggp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2ro4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75k44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfs3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sm2gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7a4ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dpy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spita") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as802") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tnu5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfibu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p821g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2jtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shqjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6skgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3h0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wxg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_akbio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un1js") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ev3v0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpqiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1m03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c72kx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yugt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66je3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsetparagon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsetparagon.tres new file mode 100644 index 0000000..923bcaf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsetparagon.tres @@ -0,0 +1,631 @@ +[gd_resource type="SpriteFrames" load_steps=87 format=3 uid="uid://b7nmel2mu5mu4"] + +[ext_resource type="Texture2D" uid="uid://ba2fucvqj3fjh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png" id="1_hr1u3"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvouy"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdq74"] +atlas = ExtResource("1_hr1u3") +region = Rect2(999, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rnavv"] +atlas = ExtResource("1_hr1u3") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pey58"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7aw54"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywvrr"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37lmb"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msb35"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6j0m0"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nm4t"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p5b0u"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xxjyf"] +atlas = ExtResource("1_hr1u3") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejunj"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6hem"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swmgr"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uraa4"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xkwr"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvvgp"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gdvhw"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y372i"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gyeu"] +atlas = ExtResource("1_hr1u3") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4d8k"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hndsg"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5c0xg"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_500li"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kw4r"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6awrm"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wu416"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oh4v4"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doqx6"] +atlas = ExtResource("1_hr1u3") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mt6m"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s658f"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mpc5"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30vg7"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovt1k"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmi2x"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no1rf"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsp6m"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qisp5"] +atlas = ExtResource("1_hr1u3") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d2jg"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx747"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpn22"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvwg0"] +atlas = ExtResource("1_hr1u3") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngrd5"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqe21"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75jwo"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rd7b"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jvy0o"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y81sq"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15uml"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s3tev"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_miuhs"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b6j1"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m1t43"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4buqo"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kocwi"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4dmb"] +atlas = ExtResource("1_hr1u3") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eij0b"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w53of"] +atlas = ExtResource("1_hr1u3") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7tbr"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwtkf"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u2lqo"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qrnm"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v70of"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll7so"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wntp"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovyun"] +atlas = ExtResource("1_hr1u3") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2o74"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6t24"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00y66"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v176g"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfwfx"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk8uv"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey3hq"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqrls"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgneq"] +atlas = ExtResource("1_hr1u3") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrn7g"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n56n"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5l1ph"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm1xn"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pvxr"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rs8pd"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blc02"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxy6c"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmywb"] +atlas = ExtResource("1_hr1u3") +region = Rect2(0, 0, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvouy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdq74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rnavv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pey58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7aw54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywvrr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37lmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msb35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6j0m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nm4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p5b0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xxjyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejunj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6hem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swmgr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uraa4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xkwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvvgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gdvhw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y372i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gyeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4d8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hndsg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5c0xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_500li") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kw4r") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6awrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wu416") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oh4v4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doqx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mt6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s658f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mpc5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30vg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovt1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmi2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no1rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsp6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qisp5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d2jg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx747") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpn22") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvwg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngrd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqe21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75jwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rd7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jvy0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y81sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15uml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s3tev") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_miuhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b6j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m1t43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4buqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kocwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4dmb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eij0b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w53of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7tbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwtkf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u2lqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qrnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v70of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll7so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wntp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovyun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2o74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6t24") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00y66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v176g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfwfx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk8uv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey3hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqrls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgneq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrn7g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n56n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5l1ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm1xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pvxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rs8pd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blc02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxy6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmywb") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsteeldefender.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsteeldefender.tres new file mode 100644 index 0000000..6eca67c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_sunsteeldefender.tres @@ -0,0 +1,806 @@ +[gd_resource type="SpriteFrames" load_steps=112 format=3 uid="uid://dj7chnpcgk4hn"] + +[ext_resource type="Texture2D" uid="uid://dxjnqfyyhl37o" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png" id="1_6pcny"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpghq"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kca7"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r2f8"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gck2y"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ceh8m"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ja8x3"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uas1k"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mxgtl"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atbwn"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cslkm"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mhlfh"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbgbq"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8hmn"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brnhp"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg5mr"] +atlas = ExtResource("1_6pcny") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66vku"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p67ym"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_re5wi"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csqv1"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtkfi"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaj02"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqti1"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdjpk"] +atlas = ExtResource("1_6pcny") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ls3m"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6243d"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmsxl"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjxh6"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6epmx"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwfqs"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mowle"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnvxe"] +atlas = ExtResource("1_6pcny") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ivw7w"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxt3y"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2lueg"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxa27"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5yoq"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6kpk"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7fhb"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5epe"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htn25"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqom6"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vs6wj"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_auftm"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j25uh"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cukbh"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1lhj"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8n1nv"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pdhy"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18m1l"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1v4fs"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wohud"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c1n2e"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07vw1"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvm3h"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gb5m"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2oci"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usjax"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0r8u"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htd0o"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6jg6"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_clmu3"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8evj"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_socoj"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dckv1"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvt3n"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcwej"] +atlas = ExtResource("1_6pcny") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6item"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40akh"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pe7g6"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq7xd"] +atlas = ExtResource("1_6pcny") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_up3xt"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpxpf"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpfi1"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mr78a"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q0yk"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbk2j"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0ras"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bc51a"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hy60"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bppyr"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_227lj"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vin7c"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28ynq"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5np5g"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj5ll"] +atlas = ExtResource("1_6pcny") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebykh"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_of75k"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8o4y"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxjs8"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmlep"] +atlas = ExtResource("1_6pcny") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dtqpj"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coc4f"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlhge"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgapb"] +atlas = ExtResource("1_6pcny") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56otq"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw7g1"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2l8ig"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lkur"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxcnd"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2ucm"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj6cn"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pvsj"] +atlas = ExtResource("1_6pcny") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tib5j"] +atlas = ExtResource("1_6pcny") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drvkq"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vwau"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_481ac"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqcqv"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msd1s"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtgtj"] +atlas = ExtResource("1_6pcny") +region = Rect2(1331, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yujtm"] +atlas = ExtResource("1_6pcny") +region = Rect2(1210, 847, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpghq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kca7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r2f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gck2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ceh8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ja8x3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uas1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mxgtl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atbwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cslkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mhlfh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbgbq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8hmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brnhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg5mr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66vku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p67ym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_re5wi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csqv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtkfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaj02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqti1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdjpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ls3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6243d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmsxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjxh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6epmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwfqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mowle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnvxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ivw7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxt3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2lueg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxa27") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5yoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6kpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7fhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5epe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htn25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqom6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vs6wj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_auftm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j25uh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cukbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1lhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8n1nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pdhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18m1l") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1v4fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wohud") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c1n2e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07vw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvm3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gb5m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2oci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usjax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0r8u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htd0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6jg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_clmu3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8evj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_socoj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dckv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvt3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcwej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6item") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40akh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pe7g6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq7xd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_up3xt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpxpf") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpfi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mr78a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q0yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbk2j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0ras") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bc51a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hy60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bppyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_227lj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vin7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28ynq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5np5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj5ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebykh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_of75k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8o4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxjs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmlep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dtqpj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coc4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlhge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgapb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56otq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw7g1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2l8ig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lkur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxcnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2ucm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj6cn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pvsj") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tib5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drvkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vwau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_481ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqcqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msd1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtgtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yujtm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superdoxx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superdoxx.tres new file mode 100644 index 0000000..beaa32f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superdoxx.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://b52de31ubw4c"] + +[ext_resource type="Texture2D" uid="uid://1qq52st48bl5" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png" id="1_1m0uh"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5e0nt"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42evs"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go0fr"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14u4q"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o8k1"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o7g77"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsr4u"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x4cp1"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3fix"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e4uxm"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77fr7"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46xxi"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4fle"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3grym"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feme3"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pikxd"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wo1nk"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bburi"] +atlas = ExtResource("1_1m0uh") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h4kfm"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvr5h"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwv8r"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iob2n"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8ckf"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6x84"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66c13"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7vqy"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icwjy"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmn54"] +atlas = ExtResource("1_1m0uh") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_giaa7"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alqek"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e45xk"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ap37y"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8aluy"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp5la"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcn2x"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibupy"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ranoa"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kexxq"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyuyr"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6q7qy"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by66w"] +atlas = ExtResource("1_1m0uh") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5m6mw"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyj4t"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lptbo"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ly5nv"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bw45n"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sykdb"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cesjo"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1i2b"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o5o0"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdc0c"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pthtj"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nl3k"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77m33"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwqgu"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alkkm"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mielc"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3cch"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pydqm"] +atlas = ExtResource("1_1m0uh") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leo7v"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a24im"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssh43"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24vne"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmqsa"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koql3"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0smgq"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8451"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqldj"] +atlas = ExtResource("1_1m0uh") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m6ty4"] +atlas = ExtResource("1_1m0uh") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrvv2"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n1ui"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pf5gp"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8io8r"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxxp0"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uktyk"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ode3w"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yghqu"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3opoc"] +atlas = ExtResource("1_1m0uh") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ga23"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnl5i"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g361b"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fx3dx"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nvp0"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqp6n"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg5cv"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dnfj"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8ove"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es71c"] +atlas = ExtResource("1_1m0uh") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5e0nt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42evs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go0fr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14u4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o8k1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o7g77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsr4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x4cp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3fix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e4uxm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77fr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46xxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4fle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3grym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feme3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pikxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wo1nk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bburi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h4kfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvr5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwv8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iob2n") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8ckf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6x84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66c13") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7vqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icwjy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmn54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_giaa7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alqek") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e45xk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ap37y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8aluy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp5la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcn2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibupy") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ranoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kexxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyuyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6q7qy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by66w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5m6mw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyj4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lptbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ly5nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bw45n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sykdb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cesjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1i2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o5o0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdc0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pthtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nl3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_77m33") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwqgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alkkm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mielc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3cch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pydqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leo7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a24im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssh43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24vne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmqsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koql3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0smgq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8451") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqldj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m6ty4") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrvv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n1ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pf5gp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8io8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxxp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uktyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ode3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yghqu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3opoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ga23") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnl5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g361b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fx3dx") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nvp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqp6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg5cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dnfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8ove") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es71c") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superscarzig.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superscarzig.tres new file mode 100644 index 0000000..843c3b6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_superscarzig.tres @@ -0,0 +1,610 @@ +[gd_resource type="SpriteFrames" load_steps=84 format=3 uid="uid://djablj7snroug"] + +[ext_resource type="Texture2D" uid="uid://d57bwjarurqh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png" id="1_w1xhe"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2i2p6"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2moj"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03481"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_glvaw"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eaemd"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv4fq"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3sae"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j4dt"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkyod"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bovwy"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqxbv"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nlx3"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b2fs2"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ayvll"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70l8c"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cucjh"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sd3d"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xyntn"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nip6m"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywnpw"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soil8"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cp6d1"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fyth"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8abkt"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkgyr"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2pci"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oawqh"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqqf4"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otbqq"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs57t"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dr8oq"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5gpi"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15yib"] +atlas = ExtResource("1_w1xhe") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmh5k"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grcna"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s6v5"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4s7ae"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wvmy"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rb0os"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_13h0b"] +atlas = ExtResource("1_w1xhe") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjxyj"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wevtg"] +atlas = ExtResource("1_w1xhe") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bqo1"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7o8f"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hwhsf"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvkwu"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66xqx"] +atlas = ExtResource("1_w1xhe") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm0of"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2h2b"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsnis"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gildp"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysd30"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb4cs"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xvu5"] +atlas = ExtResource("1_w1xhe") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yadfo"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a26j8"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csaxd"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omiys"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3j8i"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7siol"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8etx"] +atlas = ExtResource("1_w1xhe") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m6p5"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uf4gw"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv2tt"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dosk"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyjrj"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8uhvy"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dn8r2"] +atlas = ExtResource("1_w1xhe") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtxg6"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57m62"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wjd3"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg43t"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpfmv"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4icl0"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng7vn"] +atlas = ExtResource("1_w1xhe") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43mdg"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8yeh"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y82lo"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk8ke"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjcdc"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5twpn"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrf8o"] +atlas = ExtResource("1_w1xhe") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2i2p6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2moj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03481") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_glvaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eaemd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv4fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3sae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j4dt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkyod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bovwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqxbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nlx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b2fs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ayvll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70l8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cucjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sd3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xyntn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nip6m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywnpw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soil8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cp6d1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fyth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8abkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkgyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2pci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oawqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqqf4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otbqq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs57t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dr8oq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5gpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15yib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmh5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grcna") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s6v5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4s7ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wvmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rb0os") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_13h0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjxyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wevtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bqo1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7o8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hwhsf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvkwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66xqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm0of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2h2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsnis") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gildp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysd30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb4cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xvu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yadfo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a26j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csaxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omiys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3j8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7siol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8etx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m6p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uf4gw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv2tt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dosk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyjrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8uhvy") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dn8r2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtxg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57m62") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wjd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg43t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpfmv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4icl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng7vn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43mdg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8yeh") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y82lo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk8ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjcdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5twpn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrf8o") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_swordofakrane.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_swordofakrane.tres new file mode 100644 index 0000000..c923850 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_swordofakrane.tres @@ -0,0 +1,701 @@ +[gd_resource type="SpriteFrames" load_steps=97 format=3 uid="uid://dlbfq8t1dsu81"] + +[ext_resource type="Texture2D" uid="uid://e15ym83hcbli" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png" id="1_rorco"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvq7f"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxhl8"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_veqoe"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4lx"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu5d8"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5x0i"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt02k"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec4h8"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7fxk"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0njxw"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tono8"] +atlas = ExtResource("1_rorco") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_11ygj"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b878t"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aya58"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wnlo"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upv6c"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt0bu"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcqg3"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3x5c7"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2hx3"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jywtk"] +atlas = ExtResource("1_rorco") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghnry"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu6ys"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3yuw"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qt57"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjgfc"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ee6q"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgrxd"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_273of"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dxwvv"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d85w3"] +atlas = ExtResource("1_rorco") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf7e2"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kuu14"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0ax3"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dxjm"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieykc"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kusuu"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmfru"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1h7u"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kmnd"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jfq5"] +atlas = ExtResource("1_rorco") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fpxwn"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c2oh0"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfx7o"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3y6l"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g230"] +atlas = ExtResource("1_rorco") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ildaa"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt46e"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8yo8n"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w357h"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr6ci"] +atlas = ExtResource("1_rorco") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vdx4q"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cu5xn"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6mr4"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hue4b"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5vl4q"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7l36"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ukkq"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7piq"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_577r1"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4col0"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ov2r"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yewor"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyl3y"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4wc0"] +atlas = ExtResource("1_rorco") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22t5e"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pk87r"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2bywg"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ivsn"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocgi1"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l84a4"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0ubq"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48wvo"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jtrd1"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxpeg"] +atlas = ExtResource("1_rorco") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xng0l"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0aoc"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4uwu"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2j2g"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uqlgf"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hmbka"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtsor"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7f8e"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1qi2"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5yka"] +atlas = ExtResource("1_rorco") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d2ui"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drgak"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r513"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ocw8m"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bj881"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1q0t"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssdhr"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n1fha"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc5xs"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vk2dd"] +atlas = ExtResource("1_rorco") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvq7f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxhl8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_veqoe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu5d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5x0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt02k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec4h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7fxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0njxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tono8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_11ygj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b878t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aya58") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wnlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upv6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt0bu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcqg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3x5c7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2hx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jywtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghnry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu6ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3yuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qt57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjgfc") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ee6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgrxd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_273of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dxwvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d85w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf7e2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kuu14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0ax3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dxjm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieykc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kusuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmfru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1h7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kmnd") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jfq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fpxwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c2oh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfx7o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3y6l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g230") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ildaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt46e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8yo8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w357h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr6ci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vdx4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cu5xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6mr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hue4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5vl4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7l36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ukkq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7piq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_577r1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4col0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ov2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yewor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyl3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4wc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22t5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pk87r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2bywg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ivsn") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocgi1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l84a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0ubq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_48wvo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jtrd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxpeg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xng0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0aoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4uwu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2j2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uqlgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hmbka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtsor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7f8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1qi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5yka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d2ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drgak") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r513") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ocw8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bj881") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1q0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssdhr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n1fha") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc5xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vk2dd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_syvrel.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_syvrel.tres new file mode 100644 index 0000000..7fa4412 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_syvrel.tres @@ -0,0 +1,727 @@ +[gd_resource type="SpriteFrames" load_steps=100 format=3 uid="uid://bqub3w04b0b2i"] + +[ext_resource type="Texture2D" uid="uid://xnyff5ik81xs" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png" id="1_3nivt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x85e"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvar6"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmao0"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpvvw"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8m6e"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16816"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3lod"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2q3pj"] +atlas = ExtResource("1_3nivt") +region = Rect2(717, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ae6sv"] +atlas = ExtResource("1_3nivt") +region = Rect2(717, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djn5n"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8v4h"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4jw53"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8li1n"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ll8h2"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_61ms6"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtea2"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnsmp"] +atlas = ExtResource("1_3nivt") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjiuk"] +atlas = ExtResource("1_3nivt") +region = Rect2(616, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sedmp"] +atlas = ExtResource("1_3nivt") +region = Rect2(616, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbst2"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it1wp"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20axp"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nbxjh"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jvhj"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56020"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32npn"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h7ll"] +atlas = ExtResource("1_3nivt") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfnv8"] +atlas = ExtResource("1_3nivt") +region = Rect2(515, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xowya"] +atlas = ExtResource("1_3nivt") +region = Rect2(515, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x01yu"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x5y7"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aen6j"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6unbh"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16srn"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyg6s"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43f44"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1rqk"] +atlas = ExtResource("1_3nivt") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6itm"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pqic6"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyoba"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgog1"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go7uq"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g3dn4"] +atlas = ExtResource("1_3nivt") +region = Rect2(414, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dqyv"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtdxy"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o20o7"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpf8t"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iabms"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dftpg"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mkkre"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rolh"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8yyl"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa4h2"] +atlas = ExtResource("1_3nivt") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbp7d"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnu6e"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6a83d"] +atlas = ExtResource("1_3nivt") +region = Rect2(313, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dp2x4"] +atlas = ExtResource("1_3nivt") +region = Rect2(313, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdm6i"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oigu0"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frhcy"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vy3f1"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1j8mi"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5pfv"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6l26"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg4j4"] +atlas = ExtResource("1_3nivt") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdcbv"] +atlas = ExtResource("1_3nivt") +region = Rect2(212, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tc5w"] +atlas = ExtResource("1_3nivt") +region = Rect2(212, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4d8d"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rx7k6"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_474q2"] +atlas = ExtResource("1_3nivt") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41si2"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vt5re"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5if0"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ke4b"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nutiw"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u3ix"] +atlas = ExtResource("1_3nivt") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0msw4"] +atlas = ExtResource("1_3nivt") +region = Rect2(111, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3c573"] +atlas = ExtResource("1_3nivt") +region = Rect2(111, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mnwap"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 911, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rmtj6"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 810, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g007a"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 709, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjypa"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 608, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofsrq"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 507, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56l0l"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 406, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ur001"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 305, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruf8v"] +atlas = ExtResource("1_3nivt") +region = Rect2(101, 204, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0m2ax"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 0, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flsbp"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 51, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g0ea"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 102, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v6qyw"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 153, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldbk6"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 507, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vckw"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 810, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvjv3"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 911, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj7al"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 204, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04l82"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 406, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lr4a"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 305, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lxa5"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 608, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dguqq"] +atlas = ExtResource("1_3nivt") +region = Rect2(0, 709, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x85e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvar6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmao0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpvvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8m6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16816") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3lod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2q3pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ae6sv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djn5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8v4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4jw53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8li1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ll8h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_61ms6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtea2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnsmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjiuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sedmp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbst2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it1wp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20axp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nbxjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jvhj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56020") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32npn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h7ll") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfnv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xowya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x01yu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x5y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aen6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6unbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16srn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyg6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43f44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1rqk") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6itm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pqic6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyoba") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgog1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go7uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g3dn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dqyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtdxy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o20o7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpf8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iabms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dftpg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mkkre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rolh") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8yyl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa4h2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbp7d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnu6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6a83d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dp2x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdm6i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oigu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frhcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vy3f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1j8mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5pfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6l26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg4j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdcbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tc5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4d8d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rx7k6") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_474q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41si2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vt5re") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5if0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ke4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nutiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u3ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0msw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3c573") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mnwap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rmtj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g007a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjypa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofsrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56l0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ur001") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruf8v") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0m2ax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flsbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g0ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v6qyw") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldbk6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vckw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvjv3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj7al") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04l82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lr4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lxa5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dguqq") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_taura.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_taura.tres new file mode 100644 index 0000000..a6be509 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_taura.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://bcvvgeus8u6w5"] + +[ext_resource type="Texture2D" uid="uid://6mrv4raur2ql" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png" id="1_c7cjv"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_a47yy"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grk0t"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1703, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7xmq"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1703, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_44vhh"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1703, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u47s3"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdgxn"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qpe1g"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqp01"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yfl4"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xy48"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5a0qi"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1572, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wbmy"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b38aq"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xpme0"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6wfl4"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4pnsw"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2rjam"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omvy0"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1441, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nl8ml"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxmg5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyj71"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ji2i"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ymbe8"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m064r"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6dcj"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krrn5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaoco"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvcuu"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8jpx"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ign8r"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rdu5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5816p"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0mpae"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qmxa"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddpxu"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuia2"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7w5t"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ch7f3"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4x6hh"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eld67"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_usnyw"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pom8"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drr6h"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qtq8"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o0f3e"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ujvkh"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_41ysd"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffqx5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1703, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3i57"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djqf5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmf1j"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptitc"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x64jp"] +atlas = ExtResource("1_c7cjv") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waoct"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyrns"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sw8ak"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_no8ul"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a1ods"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nmi6"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsgc4"] +atlas = ExtResource("1_c7cjv") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grnbn"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rdic"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhotj"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kahrq"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ph1j"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2wp3"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdshs"] +atlas = ExtResource("1_c7cjv") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7xp4"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s61b5"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft4lx"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtvor"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmh56"] +atlas = ExtResource("1_c7cjv") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlh7i"] +atlas = ExtResource("1_c7cjv") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3q6rh"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mteej"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n00f"] +atlas = ExtResource("1_c7cjv") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8i6c"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5wnn"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dh6np"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwnjs"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_242tk"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txk7v"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0u56"] +atlas = ExtResource("1_c7cjv") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2tf3o"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rw1t7"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1pp4"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ax41c"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bry20"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bni72"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dvgv"] +atlas = ExtResource("1_c7cjv") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg4bw"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4aswk"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_woav7"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqnq3"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_watak"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sngc"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6c6rg"] +atlas = ExtResource("1_c7cjv") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a47yy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grk0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7xmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_44vhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u47s3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdgxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qpe1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqp01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yfl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xy48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5a0qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wbmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b38aq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xpme0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6wfl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4pnsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2rjam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omvy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nl8ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxmg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyj71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ji2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ymbe8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m064r") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6dcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krrn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaoco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvcuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8jpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ign8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rdu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5816p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0mpae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qmxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddpxu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuia2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7w5t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ch7f3") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4x6hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eld67") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_usnyw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pom8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drr6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qtq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o0f3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ujvkh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_41ysd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffqx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3i57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djqf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmf1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptitc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x64jp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waoct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyrns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sw8ak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_no8ul") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a1ods") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nmi6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsgc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grnbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rdic") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhotj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kahrq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ph1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2wp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdshs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7xp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s61b5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft4lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtvor") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmh56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlh7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3q6rh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mteej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n00f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8i6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5wnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dh6np") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwnjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_242tk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txk7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0u56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2tf3o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rw1t7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1pp4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ax41c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bry20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bni72") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dvgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg4bw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4aswk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_woav7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqnq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_watak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sngc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6c6rg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tethermancer.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tethermancer.tres new file mode 100644 index 0000000..6a74982 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tethermancer.tres @@ -0,0 +1,652 @@ +[gd_resource type="SpriteFrames" load_steps=90 format=3 uid="uid://rgwjspluuc5u"] + +[ext_resource type="Texture2D" uid="uid://durqluaj0mub" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png" id="1_n2a4l"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlwbt"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbya8"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38t8s"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8o60"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyof0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23jgt"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywvfy"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjfj4"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdgo4"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kweyr"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onlv1"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iif4t"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_es5cb"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_63dir"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nahrw"] +atlas = ExtResource("1_n2a4l") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40i2m"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqn38"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1ibp"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2ty0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3od7"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gtox"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7krg5"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydbsq"] +atlas = ExtResource("1_n2a4l") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2eb2n"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qglvn"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jceg3"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nhvl"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljce3"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcka5"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nulj0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1eu6n"] +atlas = ExtResource("1_n2a4l") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qof5w"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aw645"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0blxb"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42mq7"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cq571"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v28m0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fhbhh"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtl7g"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gr1o"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynsrk"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tda0k"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6662p"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2pkt"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76qo5"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubgad"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xumnk"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7spk"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bstnc"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvbmk"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxvbw"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_acar7"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56mih"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvlhs"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbvm4"] +atlas = ExtResource("1_n2a4l") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_epl6e"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_243da"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gaww3"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_300u7"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjnw3"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sosc"] +atlas = ExtResource("1_n2a4l") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4v2v7"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hif1"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdfsa"] +atlas = ExtResource("1_n2a4l") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jk1s"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylk83"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_if8tx"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwqgw"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uy1t0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etccw"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqeo4"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axj8l"] +atlas = ExtResource("1_n2a4l") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ka5v0"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ujnm"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bfa3"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2nax"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v2qn"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c56qs"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbira"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dpqoy"] +atlas = ExtResource("1_n2a4l") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qtc6o"] +atlas = ExtResource("1_n2a4l") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5rnb"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su6dy"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rrn4y"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0211n"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1gr2"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx1dl"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1210, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mg0t4"] +atlas = ExtResource("1_n2a4l") +region = Rect2(1089, 847, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlwbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbya8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38t8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8o60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyof0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23jgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywvfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjfj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdgo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kweyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onlv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iif4t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_es5cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_63dir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nahrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40i2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqn38") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1ibp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2ty0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3od7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gtox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7krg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydbsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2eb2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qglvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jceg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nhvl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljce3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcka5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nulj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1eu6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qof5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aw645") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0blxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42mq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cq571") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v28m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fhbhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtl7g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gr1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynsrk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tda0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6662p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2pkt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76qo5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubgad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xumnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7spk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bstnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvbmk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxvbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_acar7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56mih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvlhs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbvm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_epl6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_243da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gaww3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_300u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjnw3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sosc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4v2v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hif1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdfsa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jk1s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylk83") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_if8tx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwqgw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uy1t0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etccw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqeo4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axj8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ka5v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ujnm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bfa3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2nax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v2qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c56qs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbira") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dpqoy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qtc6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5rnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su6dy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rrn4y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0211n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1gr2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx1dl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mg0t4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thecollective.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thecollective.tres new file mode 100644 index 0000000..c392243 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thecollective.tres @@ -0,0 +1,638 @@ +[gd_resource type="SpriteFrames" load_steps=88 format=3 uid="uid://cm7ttsaf670m7"] + +[ext_resource type="Texture2D" uid="uid://cojv75gkk5867" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png" id="1_hj8l1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7vb4"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43krr"] +atlas = ExtResource("1_hj8l1") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvtsk"] +atlas = ExtResource("1_hj8l1") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1m1y"] +atlas = ExtResource("1_hj8l1") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ppc4h"] +atlas = ExtResource("1_hj8l1") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6he5h"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qf78a"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_853ps"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ywv0"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0wpo"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj0nc"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1bgi"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpfqm"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4r8d3"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drofd"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6gd1"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvoa8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iho6o"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y15jv"] +atlas = ExtResource("1_hj8l1") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12gss"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64uqf"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yinj1"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hixhg"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7ttw"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yib3q"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f1qn8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2fsrb"] +atlas = ExtResource("1_hj8l1") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r73ro"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67yo7"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt0ki"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg5e4"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spg88"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7squ8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7ofo"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r56y"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rh75x"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gd3g"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_887so"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr4do"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_typ06"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw3c1"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvkft"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxogr"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tks1m"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2prs4"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6spc2"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pka8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljclv"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b346e"] +atlas = ExtResource("1_hj8l1") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_prpl5"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5dg6"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfuv8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yumlt"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elir2"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmiiw"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83y48"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5fug4"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w6y3"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kg8r3"] +atlas = ExtResource("1_hj8l1") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3aw8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adcjs"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvfns"] +atlas = ExtResource("1_hj8l1") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_co7u2"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4rg"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtnxh"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgw8e"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pjle"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pfns"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwt4n"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e0rr"] +atlas = ExtResource("1_hj8l1") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p33vg"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjp3h"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvsii"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nuigb"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55shr"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vhgg"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiinb"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i01gt"] +atlas = ExtResource("1_hj8l1") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_081hd"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaulx"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xd4cc"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak4f1"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0xy3m"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1roku"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bykqp"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k28o8"] +atlas = ExtResource("1_hj8l1") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7vb4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43krr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvtsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1m1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ppc4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6he5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qf78a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_853ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ywv0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0wpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj0nc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1bgi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpfqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4r8d3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drofd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6gd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvoa8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iho6o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y15jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12gss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64uqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yinj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hixhg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7ttw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yib3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f1qn8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2fsrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r73ro") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_67yo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt0ki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg5e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spg88") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7squ8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7ofo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r56y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rh75x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gd3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_887so") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr4do") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_typ06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw3c1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvkft") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxogr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tks1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2prs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6spc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pka8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljclv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b346e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_prpl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5dg6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfuv8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yumlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elir2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmiiw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83y48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5fug4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w6y3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kg8r3") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3aw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adcjs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvfns") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_co7u2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp4rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtnxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgw8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pjle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pfns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwt4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e0rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p33vg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjp3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvsii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nuigb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55shr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vhgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiinb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i01gt") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_081hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaulx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xd4cc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak4f1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0xy3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1roku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bykqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k28o8") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thegreatprotector.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thegreatprotector.tres new file mode 100644 index 0000000..771e4ce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thegreatprotector.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://q4ur3kl02elu"] + +[ext_resource type="Texture2D" uid="uid://cipd3ck0gbhn3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png" id="1_0ejed"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl1jb"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa4nv"] +atlas = ExtResource("1_0ejed") +region = Rect2(1310, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3urqi"] +atlas = ExtResource("1_0ejed") +region = Rect2(1310, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duqo3"] +atlas = ExtResource("1_0ejed") +region = Rect2(1310, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8v20"] +atlas = ExtResource("1_0ejed") +region = Rect2(1310, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3v4v"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wivxl"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3bea"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l2xvk"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm42u"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tevnb"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7x8n1"] +atlas = ExtResource("1_0ejed") +region = Rect2(1179, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u7he2"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du05v"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebt7p"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrb6a"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1qst2"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_783lx"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nte3q"] +atlas = ExtResource("1_0ejed") +region = Rect2(1048, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psaec"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvgks"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcvx7"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvs43"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwv4q"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jgaw"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbtdm"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xayya"] +atlas = ExtResource("1_0ejed") +region = Rect2(917, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x51nb"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j7cw"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvwjf"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anfgf"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de0s7"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkplj"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fjhyd"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpcm2"] +atlas = ExtResource("1_0ejed") +region = Rect2(786, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqsym"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uyv72"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5s62"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50no6"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l3rge"] +atlas = ExtResource("1_0ejed") +region = Rect2(1310, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4d2e4"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbqqd"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36c1a"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jhvyf"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h53tj"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqm0e"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_du2gt"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07d36"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5854w"] +atlas = ExtResource("1_0ejed") +region = Rect2(524, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4av2"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3480g"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lkp8p"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6apoi"] +atlas = ExtResource("1_0ejed") +region = Rect2(655, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dg0am"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jrg1k"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0rgc"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnfad"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_md1fi"] +atlas = ExtResource("1_0ejed") +region = Rect2(393, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27o01"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vahmi"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8y0t"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0utux"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xbj7s"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebr3a"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x481r"] +atlas = ExtResource("1_0ejed") +region = Rect2(262, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7wlok"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqc12"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cid7c"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ask0t"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0f0fn"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdlp3"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d378i"] +atlas = ExtResource("1_0ejed") +region = Rect2(131, 0, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8gdf"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 786, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwsxi"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 655, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u4p0i"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 524, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dak81"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 393, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n262p"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 262, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0efm"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 131, 130, 130) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sr3ns"] +atlas = ExtResource("1_0ejed") +region = Rect2(0, 0, 130, 130) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl1jb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa4nv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3urqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duqo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8v20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3v4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wivxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3bea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l2xvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm42u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tevnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7x8n1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u7he2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du05v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebt7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrb6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1qst2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_783lx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nte3q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psaec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvgks") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcvx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvs43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwv4q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jgaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbtdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xayya") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x51nb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j7cw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvwjf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anfgf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de0s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkplj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fjhyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpcm2") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqsym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uyv72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5s62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50no6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l3rge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4d2e4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbqqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36c1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jhvyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h53tj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqm0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_du2gt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07d36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5854w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4av2") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3480g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lkp8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6apoi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dg0am") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jrg1k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0rgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnfad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_md1fi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27o01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vahmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8y0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0utux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xbj7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebr3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x481r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7wlok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqc12") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cid7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ask0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0f0fn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdlp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d378i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8gdf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwsxi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u4p0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dak81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n262p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0efm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sr3ns") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thescientist.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thescientist.tres new file mode 100644 index 0000000..7d32b91 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thescientist.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://rk5huv3md74"] + +[ext_resource type="Texture2D" uid="uid://dg1hrbud1lpdt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png" id="1_gasfu"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxw40"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m12jh"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cywbp"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdotn"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m12vu"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_526ed"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyq00"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wud5d"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aka8t"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d0wui"] +atlas = ExtResource("1_gasfu") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwpbe"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x0jnc"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dc3ws"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u8xe"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v824q"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy22a"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4m3x"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cyeew"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68c17"] +atlas = ExtResource("1_gasfu") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ov1a"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmj3a"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lt411"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4cwt1"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87sle"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmdpk"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dkmd6"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i0l2"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nh1n4"] +atlas = ExtResource("1_gasfu") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx0d8"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cp5c"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk5ti"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_368q7"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhryd"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vayoj"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4slch"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u740c"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8eaqf"] +atlas = ExtResource("1_gasfu") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cdmd"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu28x"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq1gq"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qdpit"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x5ag1"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_leptd"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yylo0"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7xqff"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmaog"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cntqa"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76y4y"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0453"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bfqn"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmquw"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1bra2"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1meb"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gddw"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfjf2"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ao4"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r11k"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_01nwo"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ypq0c"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yutoa"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nxbh"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03cwi"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3dpd"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qsbod"] +atlas = ExtResource("1_gasfu") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whh45"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76x0q"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vfpwr"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fxmn"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emkiw"] +atlas = ExtResource("1_gasfu") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfdqo"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbscp"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q8ndf"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2n8fa"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uhn7s"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p1u1"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ki78f"] +atlas = ExtResource("1_gasfu") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06p61"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_in063"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0leh"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8vmy"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48otd"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7scp"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnh0p"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khmva"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vucj5"] +atlas = ExtResource("1_gasfu") +region = Rect2(0, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phnmi"] +atlas = ExtResource("1_gasfu") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rupiv"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8vod"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xh7q"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5osx"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70f3m"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w61r"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2pvcu"] +atlas = ExtResource("1_gasfu") +region = Rect2(999, 111, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxw40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m12jh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cywbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdotn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m12vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_526ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyq00") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wud5d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aka8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d0wui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwpbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x0jnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dc3ws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u8xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v824q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy22a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4m3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cyeew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68c17") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ov1a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmj3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lt411") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4cwt1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87sle") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmdpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dkmd6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i0l2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nh1n4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx0d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cp5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk5ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_368q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhryd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vayoj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4slch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u740c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8eaqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cdmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu28x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq1gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qdpit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x5ag1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_leptd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yylo0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7xqff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmaog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cntqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76y4y") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0453") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bfqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmquw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1bra2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1meb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gddw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfjf2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ao4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r11k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_01nwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ypq0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yutoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nxbh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03cwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3dpd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qsbod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whh45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76x0q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vfpwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fxmn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emkiw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfdqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbscp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q8ndf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2n8fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uhn7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p1u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ki78f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06p61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_in063") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0leh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8vmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48otd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7scp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnh0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khmva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vucj5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_phnmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rupiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8vod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xh7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5osx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_70f3m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w61r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2pvcu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thunderhorn.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thunderhorn.tres new file mode 100644 index 0000000..2e45082 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_thunderhorn.tres @@ -0,0 +1,554 @@ +[gd_resource type="SpriteFrames" load_steps=76 format=3 uid="uid://b6scnu17gj15x"] + +[ext_resource type="Texture2D" uid="uid://b6i8vlt6fd2bx" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png" id="1_ihath"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3l8p"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp3gc"] +atlas = ExtResource("1_ihath") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5pj4g"] +atlas = ExtResource("1_ihath") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_880if"] +atlas = ExtResource("1_ihath") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3jvlc"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_el00y"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7rui"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3m12"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74y2d"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elt7e"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffsy3"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjjm0"] +atlas = ExtResource("1_ihath") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n8tdc"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ks0x5"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rorl"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynqvx"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fl23w"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkruu"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu7p4"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_77tnc"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq6jr"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvb6c"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28qf5"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tl5i"] +atlas = ExtResource("1_ihath") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p7xiq"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekrig"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lvm2h"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dbmyc"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4sa4r"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d5wu"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ib1t"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tv0xg"] +atlas = ExtResource("1_ihath") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrso5"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56gpa"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e7c30"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvowp"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exdun"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6lvt"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwddq"] +atlas = ExtResource("1_ihath") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2irp1"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t08hv"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_swphn"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgisc"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a61y5"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl72q"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j32kw"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msxym"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jraxe"] +atlas = ExtResource("1_ihath") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32f05"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5m3n"] +atlas = ExtResource("1_ihath") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f2l77"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n7xt0"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cule2"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00xnc"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8sip"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sq40o"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8p6p"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cudn"] +atlas = ExtResource("1_ihath") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pt0ke"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kg3j"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahu0d"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82x76"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8nfy"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjxls"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewa5e"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pw7tw"] +atlas = ExtResource("1_ihath") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cdbwf"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lsect"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flc2v"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibd8"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6u6a"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouxrv"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tjiu0"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecx04"] +atlas = ExtResource("1_ihath") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3l8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp3gc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5pj4g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_880if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3jvlc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_el00y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7rui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3m12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_74y2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elt7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffsy3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjjm0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n8tdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ks0x5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rorl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynqvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fl23w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkruu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu7p4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_77tnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq6jr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvb6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28qf5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tl5i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p7xiq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekrig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lvm2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dbmyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4sa4r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d5wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ib1t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tv0xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrso5") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_56gpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e7c30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvowp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exdun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6lvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwddq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2irp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t08hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_swphn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgisc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a61y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl72q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j32kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msxym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jraxe") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_32f05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5m3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f2l77") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n7xt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cule2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00xnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8sip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sq40o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8p6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cudn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pt0ke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kg3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahu0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82x76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8nfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjxls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewa5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pw7tw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cdbwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lsect") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flc2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6u6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouxrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tjiu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecx04") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_timekeeper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_timekeeper.tres new file mode 100644 index 0000000..d546bd1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_timekeeper.tres @@ -0,0 +1,757 @@ +[gd_resource type="SpriteFrames" load_steps=105 format=3 uid="uid://d2ooxhs356lkk"] + +[ext_resource type="Texture2D" uid="uid://cr3rirbffdcid" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png" id="1_uyokp"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrea1"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88f3i"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2a01"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qbc2"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nu3q7"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgjj0"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abbs0"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30moi"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovo7j"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jbo6"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0boc"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l37g8"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c33ds"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mp4j7"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4fux2"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ate5g"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqeti"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ag31v"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y7ru"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njsf0"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6st54"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ndb"] +atlas = ExtResource("1_uyokp") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1b2ug"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_so43w"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ph054"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgivo"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ot2g"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eq7ri"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjwed"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slb6a"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4f74"] +atlas = ExtResource("1_uyokp") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oenye"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0c4j"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovy10"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8tvj"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mtorm"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f00eo"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6mcy"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_163ww"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2of2"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2jix"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7area"] +atlas = ExtResource("1_uyokp") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uujxa"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40ljd"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqsun"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2tlv"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6k6hc"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy052"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlhbx"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fllc1"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_524oy"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24gwl"] +atlas = ExtResource("1_uyokp") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrccn"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrjgk"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wtcof"] +atlas = ExtResource("1_uyokp") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuuqk"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28ibr"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhos4"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_610lk"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxd3f"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hhds"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0vj3"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmgey"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42qn6"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_synb8"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i06xi"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7258i"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83qq6"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qivx5"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3uu7q"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ldwx8"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0nmnn"] +atlas = ExtResource("1_uyokp") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruh82"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mlwgx"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8uqb"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hpfr7"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_35krw"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1r58m"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ds2iv"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycy1h"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28rds"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uwavh"] +atlas = ExtResource("1_uyokp") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7crw"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_70flr"] +atlas = ExtResource("1_uyokp") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx2yk"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msoma"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faatx"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o36y"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfsu8"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ba55"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twl65"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ogl4"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwk3b"] +atlas = ExtResource("1_uyokp") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5lxe"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkd6r"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lj5n"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjelh"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufcii"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrchk"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0qnep"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wndns"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yatjd"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hum3h"] +atlas = ExtResource("1_uyokp") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrea1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88f3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2a01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qbc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nu3q7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgjj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abbs0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30moi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovo7j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jbo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0boc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l37g8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c33ds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mp4j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4fux2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ate5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqeti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ag31v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y7ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njsf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6st54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ndb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1b2ug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_so43w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ph054") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgivo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ot2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eq7ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjwed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slb6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4f74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oenye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0c4j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovy10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8tvj") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mtorm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f00eo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6mcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_163ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2of2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2jix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7area") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uujxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40ljd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqsun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2tlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6k6hc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy052") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlhbx") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fllc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_524oy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_24gwl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrccn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrjgk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wtcof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuuqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28ibr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhos4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_610lk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxd3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hhds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0vj3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmgey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_42qn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_synb8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i06xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7258i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83qq6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qivx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3uu7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ldwx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0nmnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruh82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mlwgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8uqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hpfr7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_35krw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1r58m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ds2iv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycy1h") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_28rds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uwavh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7crw") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_70flr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx2yk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_msoma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faatx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o36y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfsu8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ba55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twl65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ogl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwk3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5lxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkd6r") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lj5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjelh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufcii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrchk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0qnep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wndns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yatjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hum3h") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tombstone.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tombstone.tres new file mode 100644 index 0000000..ba5a592 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tombstone.tres @@ -0,0 +1,512 @@ +[gd_resource type="SpriteFrames" load_steps=70 format=3 uid="uid://rlsn7ynwew35"] + +[ext_resource type="Texture2D" uid="uid://b7t2om3fbb3qv" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png" id="1_i4fsm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6qtq"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp6rr"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvxur"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53ng1"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjqvc"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iylc0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8ber"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flc1j"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfc7l"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ytnd"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8nyht"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5x5xm"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gscb7"] +atlas = ExtResource("1_i4fsm") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxnhi"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjceq"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lpsl"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8hr0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4dcv"] +atlas = ExtResource("1_i4fsm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l26sp"] +atlas = ExtResource("1_i4fsm") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xleqd"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hrn5q"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4sni"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gr7i"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w51t"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quy8c"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri21o"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4uym"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1oh0w"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7ygg"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbk0k"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fly3v"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb60p"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnhpi"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xm5e"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5sw4e"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_882v0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht0i3"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1uo1x"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6lgj"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whod1"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_si37a"] +atlas = ExtResource("1_i4fsm") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t4w0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uogl4"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u70w5"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sruva"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bwlfq"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toih0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sru5q"] +atlas = ExtResource("1_i4fsm") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm5hj"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3glio"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3lmi2"] +atlas = ExtResource("1_i4fsm") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mplar"] +atlas = ExtResource("1_i4fsm") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc2y5"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q6vtt"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0w36"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6tfre"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5qsrv"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_il0xg"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f41b"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unhsi"] +atlas = ExtResource("1_i4fsm") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2vey7"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5gc5r"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06vj8"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rn5wv"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruks0"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ls4w1"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwjuw"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e04xt"] +atlas = ExtResource("1_i4fsm") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6qtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp6rr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvxur") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53ng1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjqvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iylc0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8ber") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flc1j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfc7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ytnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8nyht") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5x5xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gscb7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxnhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjceq") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lpsl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8hr0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4dcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l26sp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xleqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hrn5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4sni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gr7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w51t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quy8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri21o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4uym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1oh0w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7ygg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbk0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fly3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb60p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnhpi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xm5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5sw4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_882v0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht0i3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1uo1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6lgj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whod1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_si37a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t4w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uogl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u70w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sruva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bwlfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toih0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sru5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm5hj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3glio") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3lmi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mplar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc2y5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q6vtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0w36") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6tfre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5qsrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_il0xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f41b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unhsi") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2vey7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5gc5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06vj8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rn5wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruks0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ls4w1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwjuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e04xt") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalcaster.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalcaster.tres new file mode 100644 index 0000000..0a9e004 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalcaster.tres @@ -0,0 +1,435 @@ +[gd_resource type="SpriteFrames" load_steps=59 format=3 uid="uid://clwx3dh1nsf6u"] + +[ext_resource type="Texture2D" uid="uid://bqduwgbrj6kvp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png" id="1_uv4bi"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnoqd"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awuke"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbtqt"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x67c"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8aav"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb14o"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oc8oe"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h682d"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5grbj"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jxejc"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnncv"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xmkq7"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xx2qi"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_algly"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucfrp"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kjkv7"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcr6e"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv4vo"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nfjo"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ebvwt"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5j2q2"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ci10e"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_alng3"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pi6s"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tmrhc"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1o234"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vd3ac"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2c5f7"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_awyjh"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iso5v"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7bko"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rytbe"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jrcc"] +atlas = ExtResource("1_uv4bi") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptrc4"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbji0"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68ckk"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_soja5"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ie1pu"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_msk46"] +atlas = ExtResource("1_uv4bi") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thvrn"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3bjrf"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ywfk0"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn13u"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r3ke2"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eywkd"] +atlas = ExtResource("1_uv4bi") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd2pf"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gbfq"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gjbl"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1ww8"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqtsp"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y38kd"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4mbd"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6t4u"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh7d8"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cn0ea"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3gfk"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qfhw"] +atlas = ExtResource("1_uv4bi") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnoqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awuke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbtqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x67c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8aav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb14o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oc8oe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h682d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5grbj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jxejc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnncv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xmkq7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xx2qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_algly") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucfrp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kjkv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcr6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv4vo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nfjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ebvwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5j2q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ci10e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_alng3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pi6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tmrhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1o234") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vd3ac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2c5f7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_awyjh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iso5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7bko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rytbe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jrcc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptrc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbji0") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_68ckk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_soja5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ie1pu") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_msk46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thvrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3bjrf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ywfk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn13u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r3ke2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eywkd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd2pf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gbfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gjbl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1ww8") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqtsp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y38kd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4mbd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6t4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh7d8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cn0ea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3gfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qfhw") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee1.tres new file mode 100644 index 0000000..1ebc71b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee1.tres @@ -0,0 +1,393 @@ +[gd_resource type="SpriteFrames" load_steps=53 format=3 uid="uid://cwy57lg5mywsq"] + +[ext_resource type="Texture2D" uid="uid://bp0ls45ebt7nd" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png" id="1_n7eaa"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5n6f"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hvrap"] +atlas = ExtResource("1_n7eaa") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cejyd"] +atlas = ExtResource("1_n7eaa") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk8h8"] +atlas = ExtResource("1_n7eaa") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i45y7"] +atlas = ExtResource("1_n7eaa") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yyk5p"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdtck"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68qea"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecrhh"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj1lh"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfu8j"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqx3b"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_135x2"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xrh8l"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f4ug7"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb06s"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt1ps"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjyyx"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1kd08"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1q3qu"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dplp"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0u6d"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k75u0"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ylufq"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_luxlf"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5ssk"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7j1y"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohqlk"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbffj"] +atlas = ExtResource("1_n7eaa") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bptsx"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hyuon"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svqct"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7dehg"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ht253"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkbay"] +atlas = ExtResource("1_n7eaa") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r03hq"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgqrw"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2bxj"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s60pt"] +atlas = ExtResource("1_n7eaa") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86f2l"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnjmd"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iyodt"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1emf"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1jl6"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqfue"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85q02"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coyeu"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sygx5"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dudve"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtdkb"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h282a"] +atlas = ExtResource("1_n7eaa") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5n6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hvrap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cejyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk8h8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i45y7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yyk5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdtck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68qea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecrhh") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj1lh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfu8j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqx3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_135x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xrh8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f4ug7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb06s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt1ps") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjyyx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1kd08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1q3qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dplp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0u6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k75u0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ylufq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_luxlf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5ssk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7j1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohqlk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbffj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bptsx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hyuon") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svqct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7dehg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ht253") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkbay") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r03hq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgqrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2bxj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s60pt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_86f2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnjmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iyodt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1emf") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1jl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqfue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85q02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coyeu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sygx5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dudve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtdkb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h282a") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee2.tres new file mode 100644 index 0000000..7b5b48b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee2.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://c0h2r874vimmp"] + +[ext_resource type="Texture2D" uid="uid://ccuo31s31ttjt" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png" id="1_0lqle"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqyhb"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpve3"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h7ki4"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bim5v"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6y1r3"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ji0kq"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8sx2"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cmi0b"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fa1y4"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0h6gk"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ov5bh"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw00f"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfpy2"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gva3e"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h286i"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3dvv"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uaadl"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ey5l"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gmd8"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7t7xn"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drn7w"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwtke"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wmp4i"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rfv7"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k584g"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4piwp"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwpu0"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sc8rs"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4wpe"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40kys"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57r43"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hgy02"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r5weq"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rl8l1"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nq1t"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbfot"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b6cp3"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aihn6"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cuhyr"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vop0"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h17yq"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t2hc1"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qav4v"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thwcn"] +atlas = ExtResource("1_0lqle") +region = Rect2(0, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vda8t"] +atlas = ExtResource("1_0lqle") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5bd3f"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdvun"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da350"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkyaw"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0j2gj"] +atlas = ExtResource("1_0lqle") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ei30j"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twy78"] +atlas = ExtResource("1_0lqle") +region = Rect2(162, 810, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqyhb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpve3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h7ki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bim5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6y1r3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ji0kq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8sx2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cmi0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fa1y4") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0h6gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ov5bh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw00f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfpy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gva3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h286i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3dvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uaadl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ey5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gmd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7t7xn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drn7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwtke") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wmp4i") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rfv7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k584g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4piwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwpu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sc8rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4wpe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40kys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57r43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hgy02") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r5weq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rl8l1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nq1t") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbfot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b6cp3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aihn6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cuhyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vop0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h17yq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t2hc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qav4v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thwcn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vda8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5bd3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdvun") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da350") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkyaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0j2gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ei30j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twy78") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee3.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee3.tres new file mode 100644 index 0000000..bb1eea0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee3.tres @@ -0,0 +1,386 @@ +[gd_resource type="SpriteFrames" load_steps=52 format=3 uid="uid://dmew5jywuuala"] + +[ext_resource type="Texture2D" uid="uid://dvnh5d8sbky5p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png" id="1_tw66s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhq0e"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hq7ia"] +atlas = ExtResource("1_tw66s") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_774e5"] +atlas = ExtResource("1_tw66s") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3obwh"] +atlas = ExtResource("1_tw66s") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j6lis"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wjowt"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gliff"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34phw"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l0o2"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_udvhy"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcdum"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_adt7v"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbkwr"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqbf0"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n7tn"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1lil"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyni4"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icn7m"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8g27"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aa16q"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jeuqn"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4pki"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bb2ed"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m0o8n"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sqc4x"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hekum"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6d6r8"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ht2y"] +atlas = ExtResource("1_tw66s") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psufo"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r3j7"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8l4ks"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcfns"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_42gmx"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dv25r"] +atlas = ExtResource("1_tw66s") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yj47k"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s6l1w"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2mk2v"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yy8x0"] +atlas = ExtResource("1_tw66s") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p2nme"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80s7l"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wgb4l"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e4sp"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqsx8"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8rka"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs4tq"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0i2qu"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jssyp"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3kug"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oad57"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vrs4"] +atlas = ExtResource("1_tw66s") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhq0e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hq7ia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_774e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3obwh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j6lis") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wjowt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gliff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34phw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l0o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_udvhy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcdum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_adt7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbkwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqbf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n7tn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1lil") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyni4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icn7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8g27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aa16q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jeuqn") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4pki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bb2ed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m0o8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sqc4x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hekum") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6d6r8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ht2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psufo") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r3j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8l4ks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcfns") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_42gmx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dv25r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yj47k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s6l1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2mk2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yy8x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p2nme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80s7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wgb4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e4sp") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqsx8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8rka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs4tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0i2qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jssyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3kug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oad57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vrs4") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee4.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee4.tres new file mode 100644 index 0000000..e85827d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalmelee4.tres @@ -0,0 +1,414 @@ +[gd_resource type="SpriteFrames" load_steps=56 format=3 uid="uid://b1xppp6hiof5i"] + +[ext_resource type="Texture2D" uid="uid://drak0xiqew0o1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png" id="1_mdvwm"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_son5y"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nknaw"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4pni"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfn8m"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7f7f8"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6n7ww"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tg7tu"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rf51"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1fmeb"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maooo"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t0iat"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57rkg"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd6mf"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cvems"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j83ej"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b7i43"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_da5r4"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mu7e5"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xgc2l"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hw8ka"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qd3q5"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oj1g2"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5jxq"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nstdc"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vit0f"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81ork"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anknh"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7t7l"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toado"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jo3ix"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx680"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kb2ub"] +atlas = ExtResource("1_mdvwm") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wkxb"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6l8f"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18bhl"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_djinx"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m3euv"] +atlas = ExtResource("1_mdvwm") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yatfy"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6146h"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uh6qu"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ixdcb"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37ddi"] +atlas = ExtResource("1_mdvwm") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_urrcv"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_besn0"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b5mvy"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02mk5"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxjq7"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxyd5"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbf40"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uunu5"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lvm7"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_58kbw"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_opuae"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekh0f"] +atlas = ExtResource("1_mdvwm") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_son5y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nknaw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4pni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfn8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7f7f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6n7ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tg7tu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rf51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1fmeb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_maooo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t0iat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57rkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd6mf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cvems") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j83ej") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b7i43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_da5r4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mu7e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xgc2l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hw8ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qd3q5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oj1g2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5jxq") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nstdc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vit0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81ork") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anknh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7t7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toado") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jo3ix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx680") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kb2ub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wkxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6l8f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_18bhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_djinx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m3euv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yatfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6146h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uh6qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ixdcb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37ddi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_urrcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_besn0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b5mvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02mk5") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxjq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxyd5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbf40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uunu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lvm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_58kbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_opuae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekh0f") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged1.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged1.tres new file mode 100644 index 0000000..449390c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged1.tres @@ -0,0 +1,489 @@ +[gd_resource type="SpriteFrames" load_steps=66 format=3 uid="uid://cdlavxbg17vqa"] + +[ext_resource type="Texture2D" uid="uid://ck3atirouaq3p" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png" id="1_757gd"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_arkqj"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gbvpp"] +atlas = ExtResource("1_757gd") +region = Rect2(405, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0kqa"] +atlas = ExtResource("1_757gd") +region = Rect2(354, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2rl6"] +atlas = ExtResource("1_757gd") +region = Rect2(354, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g201n"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87wuo"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wop3h"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgx5b"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mim2"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2t84"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhori"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u2bs"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5egme"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti7lc"] +atlas = ExtResource("1_757gd") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d2ix1"] +atlas = ExtResource("1_757gd") +region = Rect2(273, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ieas4"] +atlas = ExtResource("1_757gd") +region = Rect2(273, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktupy"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36pyg"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dk0u"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tq7i8"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_81vin"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7r5m2"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu65f"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1eus"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3lgc"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4bmg"] +atlas = ExtResource("1_757gd") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyj6j"] +atlas = ExtResource("1_757gd") +region = Rect2(192, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_47o7l"] +atlas = ExtResource("1_757gd") +region = Rect2(192, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14y5x"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dfv0b"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8f3wx"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk7of"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vco3e"] +atlas = ExtResource("1_757gd") +region = Rect2(405, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bl2vw"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2woq"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1leea"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p4p3q"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tlb2p"] +atlas = ExtResource("1_757gd") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56htw"] +atlas = ExtResource("1_757gd") +region = Rect2(111, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vsvwc"] +atlas = ExtResource("1_757gd") +region = Rect2(111, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8rus"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 933, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2odwi"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 852, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rdm8"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 771, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_78h54"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 690, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uurye"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 609, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1bcw"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 528, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktx8t"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 447, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyfec"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 366, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjnx4"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 285, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uomrk"] +atlas = ExtResource("1_757gd") +region = Rect2(81, 204, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0u8ni"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 933, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rp2w1"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 852, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34n65"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 0, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o72bp"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 51, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dahbw"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 102, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sgg4"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 153, 110, 50) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xh1wv"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 447, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ruude"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 690, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p16fq"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 771, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3r6jw"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 204, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xmv6"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 366, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kp3c0"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 285, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nlpau"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 528, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffldu"] +atlas = ExtResource("1_757gd") +region = Rect2(0, 609, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_arkqj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gbvpp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0kqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2rl6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g201n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87wuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wop3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgx5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mim2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2t84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhori") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u2bs") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5egme") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti7lc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d2ix1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ieas4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktupy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36pyg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dk0u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tq7i8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_81vin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7r5m2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu65f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1eus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3lgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4bmg") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyj6j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_47o7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14y5x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dfv0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8f3wx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk7of") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vco3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bl2vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2woq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1leea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p4p3q") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tlb2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56htw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vsvwc") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8rus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2odwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rdm8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_78h54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uurye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1bcw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktx8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyfec") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjnx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uomrk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0u8ni") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rp2w1") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_34n65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o72bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dahbw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sgg4") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xh1wv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ruude") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p16fq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3r6jw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xmv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kp3c0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nlpau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffldu") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged2.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged2.tres new file mode 100644 index 0000000..9298629 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_tribalranged2.tres @@ -0,0 +1,475 @@ +[gd_resource type="SpriteFrames" load_steps=64 format=3 uid="uid://rpat7g65uagx"] + +[ext_resource type="Texture2D" uid="uid://bh70bocv2n8dw" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png" id="1_c5njt"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_663da"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j68j7"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5brm"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mb0ql"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4313"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b0jae"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64u3p"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nvu77"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh8cb"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hctmu"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ois43"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmolg"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7q8q"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30b7u"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g64dh"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s8be3"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gvylj"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g1p8"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lfna5"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smset"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4hmo"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_55e2h"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml3jy"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjem2"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybgdm"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c48s"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0ylg"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dabgt"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_joyat"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rsi6h"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aqos0"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x71jf"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ui51"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05jgt"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vd46"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erwnm"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5cow"] +atlas = ExtResource("1_c5njt") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46eae"] +atlas = ExtResource("1_c5njt") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnv61"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oo2rw"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a48oj"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hbvh"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v5j4c"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqyaa"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kydk"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4xhrl"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beo7r"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwo15"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp2tq"] +atlas = ExtResource("1_c5njt") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y7xg"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gjw8p"] +atlas = ExtResource("1_c5njt") +region = Rect2(33, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pyjb1"] +atlas = ExtResource("1_c5njt") +region = Rect2(66, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jbb3l"] +atlas = ExtResource("1_c5njt") +region = Rect2(99, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqppi"] +atlas = ExtResource("1_c5njt") +region = Rect2(132, 972, 32, 32) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewnid"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owyne"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sru5l"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n58yf"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ntwn"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcwnf"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23k0d"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a0dyj"] +atlas = ExtResource("1_c5njt") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_663da") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j68j7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5brm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mb0ql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4313") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b0jae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64u3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nvu77") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh8cb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hctmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ois43") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmolg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7q8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30b7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g64dh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s8be3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gvylj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g1p8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lfna5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smset") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4hmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_55e2h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml3jy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjem2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybgdm") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c48s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0ylg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dabgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_joyat") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rsi6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aqos0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x71jf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ui51") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_05jgt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vd46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erwnm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5cow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46eae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnv61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oo2rw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a48oj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hbvh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v5j4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqyaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kydk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4xhrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_beo7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwo15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp2tq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y7xg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gjw8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pyjb1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jbb3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqppi") +}], +"loop": true, +"name": &"projectile", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewnid") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owyne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sru5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n58yf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ntwn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcwnf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23k0d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a0dyj") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_trinitywing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_trinitywing.tres new file mode 100644 index 0000000..badee0f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_trinitywing.tres @@ -0,0 +1,568 @@ +[gd_resource type="SpriteFrames" load_steps=78 format=3 uid="uid://b0fe3ta08c3en"] + +[ext_resource type="Texture2D" uid="uid://bsritk3o743x6" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png" id="1_xfii4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyd7b"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xro54"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0g43f"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2m22h"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3auub"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucjge"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btv3g"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cibva"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75n1h"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x3p60"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntajv"] +atlas = ExtResource("1_xfii4") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6gr25"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23h5q"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqeaa"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_15djm"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rng3k"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2h25e"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xoyn"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvlq2"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk8hf"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_702gn"] +atlas = ExtResource("1_xfii4") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hv4un"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fftsw"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8x21v"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5h5ae"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjwie"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynelg"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p1g8e"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poixi"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_boebm"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vqj6"] +atlas = ExtResource("1_xfii4") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp11p"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d8vdm"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o78mi"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qukmu"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0amde"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_50u7u"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dq54f"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3y1oo"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jgsg3"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqmb3"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofv4a"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vjqp"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htap8"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_emw12"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvbtv"] +atlas = ExtResource("1_xfii4") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0r65"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1qxl"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_608ex"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bp02w"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ufsr"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_grnb5"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7n682"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqguw"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5upq"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_811m0"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rpyth"] +atlas = ExtResource("1_xfii4") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnrxg"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_25q5o"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m421i"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4lh26"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1h3h"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouw48"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7of7a"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14qqd"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3uby"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs1a0"] +atlas = ExtResource("1_xfii4") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tsy65"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sp6l7"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7e4b"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3gox"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gd8m6"] +atlas = ExtResource("1_xfii4") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qffg2"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_45bhq"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k5eko"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_57gvd"] +atlas = ExtResource("1_xfii4") +region = Rect2(303, 101, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyd7b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xro54") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0g43f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2m22h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3auub") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucjge") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btv3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cibva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75n1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x3p60") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntajv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6gr25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23h5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqeaa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_15djm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rng3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2h25e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xoyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvlq2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk8hf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_702gn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hv4un") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fftsw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8x21v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5h5ae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjwie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynelg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p1g8e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poixi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_boebm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vqj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp11p") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_d8vdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o78mi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qukmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0amde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_50u7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dq54f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3y1oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jgsg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqmb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofv4a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vjqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htap8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_emw12") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvbtv") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0r65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1qxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_608ex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bp02w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ufsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_grnb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7n682") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqguw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5upq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_811m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rpyth") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnrxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_25q5o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m421i") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4lh26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1h3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouw48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7of7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14qqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3uby") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs1a0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tsy65") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sp6l7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7e4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3gox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gd8m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qffg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_45bhq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k5eko") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_57gvd") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ubo.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ubo.tres new file mode 100644 index 0000000..1db73e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_ubo.tres @@ -0,0 +1,498 @@ +[gd_resource type="SpriteFrames" load_steps=68 format=3 uid="uid://qjiognqjn4da"] + +[ext_resource type="Texture2D" uid="uid://ufq2cesc0k3l" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png" id="1_8ksed"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_fo553"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7oq25"] +atlas = ExtResource("1_8ksed") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ej4gk"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ix8hm"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exeki"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wm6w0"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kil5k"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x27qu"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t311j"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecfag"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1pbti"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xokou"] +atlas = ExtResource("1_8ksed") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bhnv"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ctj73"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu7m0"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gqs2"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ev0l"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ipwv"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_twrrm"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exl8k"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v14qq"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpa5a"] +atlas = ExtResource("1_8ksed") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pksk0"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rqwn4"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2x846"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7yud3"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwroi"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3d1m"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yh77m"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_488k2"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5gtw"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itr14"] +atlas = ExtResource("1_8ksed") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wew6v"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_st73o"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4jpy"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d14ok"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hcg68"] +atlas = ExtResource("1_8ksed") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_moak7"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcv6n"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ri0yl"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7bhu"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_780ad"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e0c6d"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvi0r"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yyin"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gs3mj"] +atlas = ExtResource("1_8ksed") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6x6yj"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wn5p"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dm2ga"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xq55o"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m5i7a"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yiyg5"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_00omd"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqges"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amd8a"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6mdq"] +atlas = ExtResource("1_8ksed") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erhhc"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l8jyr"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iu0uq"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ydsql"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyx5l"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7hoo"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tpnw3"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uceth"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yi5fs"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2idg"] +atlas = ExtResource("1_8ksed") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_fo553") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7oq25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ej4gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ix8hm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exeki") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wm6w0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kil5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x27qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t311j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecfag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1pbti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xokou") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bhnv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ctj73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu7m0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gqs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ev0l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ipwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_twrrm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exl8k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v14qq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpa5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pksk0") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rqwn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2x846") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7yud3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwroi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3d1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yh77m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_488k2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5gtw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itr14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wew6v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_st73o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4jpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d14ok") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hcg68") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_moak7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcv6n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ri0yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7bhu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_780ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e0c6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvi0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yyin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gs3mj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6x6yj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wn5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dm2ga") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xq55o") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m5i7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yiyg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_00omd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqges") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amd8a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6mdq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erhhc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l8jyr") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_iu0uq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ydsql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyx5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7hoo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tpnw3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uceth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yi5fs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2idg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_unseven.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_unseven.tres new file mode 100644 index 0000000..ca261d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_unseven.tres @@ -0,0 +1,687 @@ +[gd_resource type="SpriteFrames" load_steps=95 format=3 uid="uid://osk2lfpavyms"] + +[ext_resource type="Texture2D" uid="uid://rx6glvfrbj68" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png" id="1_f7n5h"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_rasoh"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xn7iw"] +atlas = ExtResource("1_f7n5h") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vgood"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3q30"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_68gv5"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vtdtk"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qt56s"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1k5c"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2d3ai"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h6dbu"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6moy2"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noxq8"] +atlas = ExtResource("1_f7n5h") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wsm7k"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7pfva"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_trti8"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v88wd"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dvhce"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uv00o"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ep7n3"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhcn2"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8onvk"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0apt"] +atlas = ExtResource("1_f7n5h") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y3ar"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfj43"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw8jg"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psoo6"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdymv"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ak4kw"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0djyo"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuglr"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_elt8l"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slluv"] +atlas = ExtResource("1_f7n5h") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0n6ty"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eoby3"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l5rjb"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pti84"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbxes"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut53s"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owr28"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2x4n"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihx2p"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_llnnc"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcmmo"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u1wtk"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_705uk"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6dkc"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ofmwf"] +atlas = ExtResource("1_f7n5h") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bst8n"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b3afp"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_de6u7"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flmcv"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hb152"] +atlas = ExtResource("1_f7n5h") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_waun0"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwugg"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d5mtt"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6eu0"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ifw0r"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ioauk"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo6nw"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34rqr"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tk3go"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ti5tr"] +atlas = ExtResource("1_f7n5h") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm53s"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_btdxq"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7ci2"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46a7s"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sqqs"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuecn"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyq52"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsafj"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfb81"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhcl5"] +atlas = ExtResource("1_f7n5h") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxhiv"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k40hw"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gued2"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t8hnq"] +atlas = ExtResource("1_f7n5h") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4pla"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0qen"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjgss"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l61rq"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jme3b"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxvhi"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c48a4"] +atlas = ExtResource("1_f7n5h") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vqn5"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8p4ol"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqd02"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bag3g"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7wkl"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1upuq"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j72gd"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8rnn4"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkahu"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fvqx3"] +atlas = ExtResource("1_f7n5h") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rasoh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xn7iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vgood") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3q30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_68gv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vtdtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qt56s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1k5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2d3ai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h6dbu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6moy2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noxq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wsm7k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7pfva") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_trti8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v88wd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dvhce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uv00o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ep7n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhcn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8onvk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0apt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y3ar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfj43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw8jg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psoo6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdymv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ak4kw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0djyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuglr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_elt8l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slluv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0n6ty") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eoby3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l5rjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pti84") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbxes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut53s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owr28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2x4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihx2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_llnnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcmmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u1wtk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_705uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6dkc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ofmwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bst8n") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_b3afp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_de6u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flmcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hb152") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_waun0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwugg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d5mtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6eu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ifw0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ioauk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo6nw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34rqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tk3go") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ti5tr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm53s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_btdxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7ci2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46a7s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sqqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuecn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyq52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsafj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfb81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhcl5") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxhiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k40hw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gued2") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t8hnq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4pla") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0qen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjgss") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l61rq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jme3b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxvhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c48a4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vqn5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8p4ol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqd02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bag3g") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7wkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1upuq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j72gd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8rnn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkahu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fvqx3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_veteranflamewing.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_veteranflamewing.tres new file mode 100644 index 0000000..de3bacc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_veteranflamewing.tres @@ -0,0 +1,589 @@ +[gd_resource type="SpriteFrames" load_steps=81 format=3 uid="uid://cwpqjelb3otcq"] + +[ext_resource type="Texture2D" uid="uid://dcr84odt3dwk7" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png" id="1_3f4jf"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lf1eh"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5dkn"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icm1m"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdup5"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd8yv"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mmknt"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ip3f"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31m0x"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hstnp"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_145vk"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_umu8c"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nkex"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gknlt"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tgyfd"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0sad3"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p6x6p"] +atlas = ExtResource("1_3f4jf") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uvylx"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnsy8"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3p26"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jkr1"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8e1q1"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coe6w"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80j3l"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_txofk"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jc807"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5lgwi"] +atlas = ExtResource("1_3f4jf") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_maqwi"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1c75"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mvd25"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu41g"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wpf8"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o5q0f"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6b4im"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_njuap"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m88d0"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux55t"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3f76"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j7lcx"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntrcn"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ngt8x"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_crfmu"] +atlas = ExtResource("1_3f4jf") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wgdm"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owolw"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7jvnu"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4iy3e"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22sbp"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxeae"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46i8s"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vus1d"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nypet"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ga2jx"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kwsq"] +atlas = ExtResource("1_3f4jf") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ut254"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5d7mg"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g57s"] +atlas = ExtResource("1_3f4jf") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ic1p"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ol5ye"] +atlas = ExtResource("1_3f4jf") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rua3l"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaiwc"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s04yi"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lqtc"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdko7"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_18k70"] +atlas = ExtResource("1_3f4jf") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhde7"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axtci"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1s10"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hex6t"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6af81"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1yyr"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kmeao"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxpw7"] +atlas = ExtResource("1_3f4jf") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6fkfd"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pvy4f"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2ygx"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_37vnk"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_enjtq"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onbnb"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vlpag"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3l7xh"] +atlas = ExtResource("1_3f4jf") +region = Rect2(0, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lf1eh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5dkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icm1m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdup5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd8yv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mmknt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ip3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31m0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hstnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_145vk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_umu8c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nkex") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gknlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tgyfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0sad3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p6x6p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uvylx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnsy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3p26") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jkr1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8e1q1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_coe6w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80j3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_txofk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jc807") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5lgwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_maqwi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1c75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mvd25") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu41g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wpf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o5q0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6b4im") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_njuap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m88d0") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux55t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3f76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j7lcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntrcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ngt8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_crfmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wgdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owolw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7jvnu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4iy3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22sbp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxeae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46i8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vus1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nypet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ga2jx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kwsq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ut254") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5d7mg") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g57s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ic1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ol5ye") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rua3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaiwc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s04yi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lqtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdko7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_18k70") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhde7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_axtci") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1s10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hex6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6af81") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1yyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kmeao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxpw7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6fkfd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pvy4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2ygx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_37vnk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_enjtq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onbnb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vlpag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3l7xh") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_vex.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_vex.tres new file mode 100644 index 0000000..34c2221 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_vex.tres @@ -0,0 +1,491 @@ +[gd_resource type="SpriteFrames" load_steps=67 format=3 uid="uid://b67y4rivkfls2"] + +[ext_resource type="Texture2D" uid="uid://627i2uka7nvh" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png" id="1_elhv7"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_kgatc"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qfams"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1busl"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqggb"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07ubw"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qk4h"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovcfu"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5kd8"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qkbfa"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xb0e5"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85fvl"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ou5ts"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_khsgc"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kheae"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnc7v"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbnyq"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qilth"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyiu1"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gme0p"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvm8i"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xl08v"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0lgx"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fcmpa"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1vdia"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s4kw2"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51yoa"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ien4f"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87jnw"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_118x0"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rknmo"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k21nj"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q13y"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wldpa"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8asvp"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d4r86"] +atlas = ExtResource("1_elhv7") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5xqo"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6c03"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xajm6"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7071k"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2mwf"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3dqf"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5sbx"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qlb5"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duay3"] +atlas = ExtResource("1_elhv7") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6jimx"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxu3u"] +atlas = ExtResource("1_elhv7") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kowv1"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j5s3l"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agbol"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwb6k"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2s0u1"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r0w2"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_toppt"] +atlas = ExtResource("1_elhv7") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5hq5u"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0bgyv"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ffsjo"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31487"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qcrgg"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq4na"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vna8v"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gtehn"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w08tv"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v34hv"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_28sns"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23u3l"] +atlas = ExtResource("1_elhv7") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_kgatc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qfams") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1busl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqggb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07ubw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qk4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovcfu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5kd8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qkbfa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xb0e5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85fvl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ou5ts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_khsgc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kheae") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnc7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbnyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qilth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyiu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gme0p") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvm8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xl08v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0lgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fcmpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1vdia") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s4kw2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51yoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ien4f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87jnw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_118x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rknmo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k21nj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q13y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wldpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8asvp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d4r86") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5xqo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6c03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xajm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7071k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2mwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3dqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5sbx") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qlb5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duay3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6jimx") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxu3u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kowv1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j5s3l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agbol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwb6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2s0u1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r0w2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_toppt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5hq5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0bgyv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ffsjo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31487") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qcrgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq4na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vna8v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gtehn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w08tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v34hv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_28sns") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23u3l") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_voidhunter.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_voidhunter.tres new file mode 100644 index 0000000..ee78da7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_voidhunter.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://dfqj4g7x5837f"] + +[ext_resource type="Texture2D" uid="uid://dnwujtundydlf" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png" id="1_im0db"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_lr2d0"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qisx"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yt5ru"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xacsi"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1yyq"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onxnt"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e88q3"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bd2o4"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2wrs4"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdrft"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8xrh"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2xyi7"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neh16"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i50ri"] +atlas = ExtResource("1_im0db") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0au7"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ghnau"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbmqk"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfwg0"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxjcg"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_widne"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0kyuc"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yomhk"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la1a3"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71p6c"] +atlas = ExtResource("1_im0db") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3o7st"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sq3x"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vht4h"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shbmt"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf5cs"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7x48"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xdw4"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpmif"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s518p"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heud0"] +atlas = ExtResource("1_im0db") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r85qo"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpp6t"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v0nxs"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jghst"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4rv2"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x56gl"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_afugv"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0km8"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_be6qn"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bh1co"] +atlas = ExtResource("1_im0db") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duueb"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76dg1"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u55yc"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kyjuo"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aju74"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bied8"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxqca"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62j4m"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xtudv"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w7wg"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wcdx"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w715y"] +atlas = ExtResource("1_im0db") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23qbo"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nns7"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lg5as"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0rqmm"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8jb7t"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h0yor"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l0ace"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4ll4"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slruq"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhlkj"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1fiq"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jpgs"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fakbk"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bqvhg"] +atlas = ExtResource("1_im0db") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ectpl"] +atlas = ExtResource("1_im0db") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yao4o"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wax84"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6g6g"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_frvaf"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_huyh0"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lj7wa"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6cuwv"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0x4hd"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ss7xq"] +atlas = ExtResource("1_im0db") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwdm4"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8bvkc"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0pi2"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3746h"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xscg7"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xd0r"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lr8x"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iprg5"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2p4v3"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ycq4m"] +atlas = ExtResource("1_im0db") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lr2d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qisx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yt5ru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xacsi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1yyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onxnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e88q3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bd2o4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2wrs4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdrft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8xrh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2xyi7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neh16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i50ri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0au7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ghnau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbmqk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfwg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxjcg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_widne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0kyuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yomhk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la1a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71p6c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3o7st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sq3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vht4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shbmt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf5cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7x48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xdw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpmif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s518p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heud0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r85qo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpp6t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v0nxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jghst") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4rv2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x56gl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_afugv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0km8") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_be6qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bh1co") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duueb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76dg1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u55yc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kyjuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aju74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bied8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxqca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62j4m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xtudv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w7wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wcdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w715y") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_23qbo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nns7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lg5as") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0rqmm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8jb7t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h0yor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l0ace") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4ll4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slruq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhlkj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1fiq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jpgs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fakbk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bqvhg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ectpl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yao4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wax84") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6g6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_frvaf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_huyh0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lj7wa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6cuwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0x4hd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ss7xq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwdm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8bvkc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0pi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3746h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xscg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xd0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lr8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iprg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2p4v3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ycq4m") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wartalon.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wartalon.tres new file mode 100644 index 0000000..c3ea81e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wartalon.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://cbaao8mrgfs1x"] + +[ext_resource type="Texture2D" uid="uid://cm67bd2ild3b3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png" id="1_y4ksy"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_sowen"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5u5dp"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4bhtj"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3m3p"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n5b6k"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4py74"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d34xe"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ga7a"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekpwr"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kc5el"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_353pw"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1qdn"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23oyk"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imwqv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f7fv5"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uskja"] +atlas = ExtResource("1_y4ksy") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dk5rl"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_07x7e"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o03nn"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lpk7"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_guvcn"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bajy5"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhuql"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6exiv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yv4n3"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j1qop"] +atlas = ExtResource("1_y4ksy") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qq0s"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfmff"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qny8n"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h321x"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kr8a3"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhs0i"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p8mtr"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m2uiv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_550cv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f26u0"] +atlas = ExtResource("1_y4ksy") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2e2c8"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v8mqm"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b8vse"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pcwvy"] +atlas = ExtResource("1_y4ksy") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ft141"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_72ago"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1wv3g"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbnoc"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igljs"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2v8w"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p168j"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kfd1y"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wt045"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u80vw"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xwbt2"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pxexb"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pa4x4"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rvgjd"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgqqe"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w4dg"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6g53r"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ht2y"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sghu2"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m602f"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjlr8"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfiff"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htyor"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n0pxe"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbblq"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wscff"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05nn4"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d1x5e"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_isdua"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8hjo7"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws41s"] +atlas = ExtResource("1_y4ksy") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uppib"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i610t"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wxub2"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wogl4"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_10h01"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnxpy"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4a1ql"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bml4c"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0beg3"] +atlas = ExtResource("1_y4ksy") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76owq"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rviq"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75lvv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o6n0"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v80ct"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rinl7"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rd881"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sfsys"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rc1g5"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv44c"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo7tv"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve1r6"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8cc5w"] +atlas = ExtResource("1_y4ksy") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_86yjp"] +atlas = ExtResource("1_y4ksy") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfkmr"] +atlas = ExtResource("1_y4ksy") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syhnp"] +atlas = ExtResource("1_y4ksy") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h8ffn"] +atlas = ExtResource("1_y4ksy") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w352f"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2g4pj"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7m6x4"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6noah"] +atlas = ExtResource("1_y4ksy") +region = Rect2(808, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sowen") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5u5dp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4bhtj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3m3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n5b6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4py74") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d34xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ga7a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekpwr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kc5el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_353pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1qdn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23oyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imwqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f7fv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uskja") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dk5rl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_07x7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o03nn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lpk7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_guvcn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bajy5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhuql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6exiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yv4n3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j1qop") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qq0s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfmff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qny8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h321x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kr8a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhs0i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p8mtr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m2uiv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_550cv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f26u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2e2c8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v8mqm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b8vse") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pcwvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ft141") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_72ago") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1wv3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbnoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igljs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2v8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p168j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kfd1y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wt045") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u80vw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xwbt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pxexb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pa4x4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rvgjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgqqe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w4dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6g53r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ht2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sghu2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m602f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjlr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfiff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htyor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n0pxe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbblq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wscff") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05nn4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d1x5e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_isdua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8hjo7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws41s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uppib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i610t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wxub2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wogl4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_10h01") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnxpy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4a1ql") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_bml4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0beg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76owq") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rviq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75lvv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o6n0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v80ct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rinl7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rd881") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sfsys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rc1g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv44c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo7tv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve1r6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8cc5w") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_86yjp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfkmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syhnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h8ffn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w352f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2g4pj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7m6x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6noah") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_whitewidow.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_whitewidow.tres new file mode 100644 index 0000000..950e8e9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_whitewidow.tres @@ -0,0 +1,519 @@ +[gd_resource type="SpriteFrames" load_steps=71 format=3 uid="uid://du61ddokb476o"] + +[ext_resource type="Texture2D" uid="uid://d3efl2c7y7hyg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png" id="1_bwugq"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_nie45"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl0pm"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qjs5k"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6rs0f"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7mkmy"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3050x"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upgx7"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_05hww"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu8u0"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3n46"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0idq"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1xs8"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4yen5"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeovu"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7s10x"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omqys"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_asgw1"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vakck"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y57r7"] +atlas = ExtResource("1_bwugq") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jy7ck"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_orle3"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_74f1l"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o40w"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l54df"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_loelv"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qggn"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1prj6"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljqad"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3n5jm"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlm5h"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oii2d"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpbvc"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nw53"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3nmsj"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pltnk"] +atlas = ExtResource("1_bwugq") +region = Rect2(0, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gedy8"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvd4h"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5704h"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8vl06"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu2pn"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1t275"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8ysx"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2hxi8"] +atlas = ExtResource("1_bwugq") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rre2n"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1cgmr"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4allw"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntwj0"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgpfs"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rbmua"] +atlas = ExtResource("1_bwugq") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4q73"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_em3ri"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_upqlg"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2oa8s"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rogw"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w552p"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhj02"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4nje1"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqn8i"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqg2o"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqrvn"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw501"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1phm"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7grb"] +atlas = ExtResource("1_bwugq") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovjp7"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1yqp"] +atlas = ExtResource("1_bwugq") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ni6a7"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mdote"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_48mlt"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l46pg"] +atlas = ExtResource("1_bwugq") +region = Rect2(202, 606, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_nie45") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl0pm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qjs5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6rs0f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7mkmy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3050x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_upgx7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_05hww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu8u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3n46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0idq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1xs8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4yen5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeovu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7s10x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omqys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_asgw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vakck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y57r7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jy7ck") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_orle3") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_74f1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o40w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l54df") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_loelv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qggn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1prj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljqad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3n5jm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlm5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oii2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpbvc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nw53") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3nmsj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pltnk") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gedy8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvd4h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5704h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8vl06") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu2pn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1t275") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8ysx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2hxi8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rre2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1cgmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4allw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntwj0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgpfs") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rbmua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4q73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_em3ri") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_upqlg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2oa8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rogw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w552p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhj02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4nje1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqn8i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqg2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqrvn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw501") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1phm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7grb") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovjp7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1yqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ni6a7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mdote") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_48mlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l46pg") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wildtahr.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wildtahr.tres new file mode 100644 index 0000000..3bed46c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wildtahr.tres @@ -0,0 +1,596 @@ +[gd_resource type="SpriteFrames" load_steps=82 format=3 uid="uid://bhj53qe86nmt0"] + +[ext_resource type="Texture2D" uid="uid://bl2fp2mfteuop" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png" id="1_fbv7d"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vbi0"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8q2yj"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ecyfm"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x56rk"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ibru"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4o5w"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnmh6"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mexmq"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jdluf"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n2g5a"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_agpe5"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jncye"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_51w0a"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svnom"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q73b3"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0y7rg"] +atlas = ExtResource("1_fbv7d") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6a2k"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_koyin"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gxtm6"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_33iwt"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yq73o"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uda6a"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lpg0v"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yxmyk"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e5r2g"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_syt4n"] +atlas = ExtResource("1_fbv7d") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e8d05"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it8bp"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_touct"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w65ik"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jkdm4"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mqmch"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_faok7"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_esd28"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0jhts"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oto1"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dquxw"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aieh2"] +atlas = ExtResource("1_fbv7d") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_imfxb"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_heiu4"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q2kxt"] +atlas = ExtResource("1_fbv7d") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xsg7"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fyjbb"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdnkn"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xfe3k"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwspu"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3hd46"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jjynl"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k84wu"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c4dtu"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdp76"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ek58e"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kddn7"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0ea6"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ahhgq"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71nu5"] +atlas = ExtResource("1_fbv7d") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ykp2"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay6th"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4sy4"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cknrs"] +atlas = ExtResource("1_fbv7d") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lgwp8"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tbdvx"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0o8aw"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4y1ag"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnhyy"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsc5p"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pk7q"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vnrwp"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vuasj"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a8tfi"] +atlas = ExtResource("1_fbv7d") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6g2r"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qp7nr"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqvyn"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ob0i"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gcy0q"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gn8k5"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bnbs2"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23h52"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ohj5k"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lowit"] +atlas = ExtResource("1_fbv7d") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vbi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8q2yj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ecyfm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x56rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ibru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4o5w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnmh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mexmq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jdluf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n2g5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_agpe5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jncye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_51w0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svnom") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q73b3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0y7rg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6a2k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_koyin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gxtm6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_33iwt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yq73o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uda6a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lpg0v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yxmyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e5r2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_syt4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e8d05") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_it8bp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_touct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w65ik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jkdm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mqmch") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_faok7") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_esd28") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0jhts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oto1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dquxw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aieh2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_imfxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_heiu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q2kxt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xsg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fyjbb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdnkn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xfe3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwspu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3hd46") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jjynl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k84wu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c4dtu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdp76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ek58e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kddn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0ea6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ahhgq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_71nu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ykp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay6th") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4sy4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cknrs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lgwp8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tbdvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0o8aw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4y1ag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnhyy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsc5p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pk7q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vnrwp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vuasj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a8tfi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6g2r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qp7nr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqvyn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ob0i") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gcy0q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gn8k5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bnbs2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23h52") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ohj5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lowit") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windrunner.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windrunner.tres new file mode 100644 index 0000000..50f4cd3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windrunner.tres @@ -0,0 +1,505 @@ +[gd_resource type="SpriteFrames" load_steps=69 format=3 uid="uid://c12mni24jumlj"] + +[ext_resource type="Texture2D" uid="uid://drwndghjaucol" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png" id="1_yayx5"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_4f4sb"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_32ef3"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6dgu"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c7qym"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pu08d"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7nrw"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nxdkg"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ryhyi"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qnxwq"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3582m"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3knr"] +atlas = ExtResource("1_yayx5") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_62ow4"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2mq8"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ubh6y"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g2ie"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcqkl"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2o2n"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4rucc"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8gjig"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nqh52"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ow7r"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vo0q8"] +atlas = ExtResource("1_yayx5") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p27rn"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stmsv"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3wtdx"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xf5rk"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82fh8"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_71f3y"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6aum1"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay174"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vu8ys"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o241"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8hmw"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7x7y"] +atlas = ExtResource("1_yayx5") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uexqf"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s85qn"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2g8q"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3sm34"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_841c2"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s17mh"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2epq"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ni5h"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mjnol"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xdkhm"] +atlas = ExtResource("1_yayx5") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c6wyh"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x8fh8"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbys7"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2556v"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dpn3"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_brpdo"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_abuoo"] +atlas = ExtResource("1_yayx5") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_886uk"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xm185"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljl0k"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i3jup"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qbokp"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1gcol"] +atlas = ExtResource("1_yayx5") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ay6u4"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wldr0"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jyxtc"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fehuk"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_itbuy"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbw7n"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v7qak"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_76pgq"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rfcot"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oyy1e"] +atlas = ExtResource("1_yayx5") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4f4sb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_32ef3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6dgu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c7qym") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pu08d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7nrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nxdkg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ryhyi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qnxwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3582m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3knr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_62ow4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2mq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ubh6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g2ie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcqkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2o2n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4rucc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8gjig") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nqh52") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ow7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vo0q8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p27rn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stmsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3wtdx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xf5rk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82fh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_71f3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6aum1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay174") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vu8ys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o241") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8hmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7x7y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uexqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s85qn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2g8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3sm34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_841c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s17mh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2epq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ni5h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mjnol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xdkhm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c6wyh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x8fh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbys7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2556v") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dpn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_brpdo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_abuoo") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_886uk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xm185") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljl0k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i3jup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qbokp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1gcol") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ay6u4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wldr0") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jyxtc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fehuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_itbuy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbw7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v7qak") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_76pgq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rfcot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oyy1e") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windstopper.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windstopper.tres new file mode 100644 index 0000000..e67484d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_windstopper.tres @@ -0,0 +1,463 @@ +[gd_resource type="SpriteFrames" load_steps=63 format=3 uid="uid://rxiae1k2yccg"] + +[ext_resource type="Texture2D" uid="uid://b3n72ecur1lni" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png" id="1_y6x8e"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_mf3jd"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn3el"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckyp1"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1nl2"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_un0mk"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_042j8"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0cj7p"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5pqs"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1irhx"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvb76"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bptip"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qk3gq"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yp86f"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30sdn"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roquh"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3cudv"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bmyuv"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlhie"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ddwco"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vym0"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5i62u"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yaryj"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bipvr"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl2vv"] +atlas = ExtResource("1_y6x8e") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ikmvg"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i0umi"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w0v85"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3qlcx"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dygnp"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8i77b"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjmem"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ng1de"] +atlas = ExtResource("1_y6x8e") +region = Rect2(324, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fxer3"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o81k"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r0dkp"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6v2et"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h586"] +atlas = ExtResource("1_y6x8e") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cakka"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xp4qv"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2esaq"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6cxl"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_527mo"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnhlr"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tw4ft"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ew5b6"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j4o31"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcjql"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_64y8x"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s63ka"] +atlas = ExtResource("1_y6x8e") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_et5kv"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7l055"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t28kh"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kj2vn"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4dojy"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xvar1"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v3j7w"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aiaph"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slt48"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tluuk"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xanam"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4vqil"] +atlas = ExtResource("1_y6x8e") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_mf3jd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn3el") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckyp1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1nl2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_un0mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_042j8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0cj7p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5pqs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1irhx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvb76") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bptip") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qk3gq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yp86f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30sdn") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_roquh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3cudv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bmyuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlhie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ddwco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vym0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5i62u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yaryj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bipvr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl2vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ikmvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i0umi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w0v85") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3qlcx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dygnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8i77b") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjmem") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ng1de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fxer3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o81k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r0dkp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6v2et") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h586") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cakka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xp4qv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2esaq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6cxl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_527mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnhlr") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_tw4ft") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ew5b6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j4o31") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcjql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_64y8x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s63ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_et5kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7l055") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t28kh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kj2vn") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4dojy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xvar1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v3j7w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aiaph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slt48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tluuk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xanam") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4vqil") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wingsofparadise.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wingsofparadise.tres new file mode 100644 index 0000000..2ba8331 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_wingsofparadise.tres @@ -0,0 +1,666 @@ +[gd_resource type="SpriteFrames" load_steps=92 format=3 uid="uid://c2rf7dd5ua1nk"] + +[ext_resource type="Texture2D" uid="uid://127ikt02spxp" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png" id="1_j5tbk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_agx1w"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_neime"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_75bqn"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h56o2"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dix6y"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_305qe"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bhni2"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ltfmd"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ckr4"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yvb7v"] +atlas = ExtResource("1_j5tbk") +region = Rect2(777, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5wogc"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lmay3"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vmour"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2j43j"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj015"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pjdq0"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxoov"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y3nxk"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exx7h"] +atlas = ExtResource("1_j5tbk") +region = Rect2(666, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kkiqv"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ih2kt"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5omue"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0gsv5"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jilv"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8frii"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eee71"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f722j"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i18vu"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_40u1w"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vb1s0"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iktpu"] +atlas = ExtResource("1_j5tbk") +region = Rect2(555, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wq561"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kn4kv"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x72h3"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkrqb"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iw8gb"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqt8f"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m8myk"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thaq8"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilufi"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a4p8p"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5egp"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jceux"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n11de"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5espd"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vmlt"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n4pc6"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ba3r"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bq7kt"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a6q20"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3gf7e"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3tkpt"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rcpmf"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_02s0c"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vvwg"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sxfjt"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k3owx"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x6xxq"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2r2g5"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dhg8y"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dg55"] +atlas = ExtResource("1_j5tbk") +region = Rect2(222, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hh2rc"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_flfmc"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxmtd"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gwabu"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i00ap"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_46kxk"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7lbul"] +atlas = ExtResource("1_j5tbk") +region = Rect2(333, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx76x"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iveg7"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3io27"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k1sib"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ufjw"] +atlas = ExtResource("1_j5tbk") +region = Rect2(111, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yw7v"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 888, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrbd1"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajojh"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_spax7"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynr03"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs864"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ir8q"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psb63"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 111, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14aye"] +atlas = ExtResource("1_j5tbk") +region = Rect2(0, 0, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sdofy"] +atlas = ExtResource("1_j5tbk") +region = Rect2(444, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gb66h"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 777, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krlfn"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 666, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5he6"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 555, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cw42k"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 444, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hnsv"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 333, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bx3xf"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 222, 110, 110) + +[sub_resource type="AtlasTexture" id="AtlasTexture_viffk"] +atlas = ExtResource("1_j5tbk") +region = Rect2(888, 111, 110, 110) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_agx1w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_neime") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_75bqn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h56o2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dix6y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_305qe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bhni2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ltfmd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ckr4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yvb7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5wogc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lmay3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vmour") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2j43j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj015") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pjdq0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxoov") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y3nxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exx7h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kkiqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ih2kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5omue") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0gsv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jilv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8frii") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eee71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f722j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i18vu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_40u1w") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vb1s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iktpu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wq561") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kn4kv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x72h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkrqb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iw8gb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqt8f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m8myk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thaq8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilufi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a4p8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5egp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jceux") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_n11de") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5espd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vmlt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n4pc6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ba3r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bq7kt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a6q20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3gf7e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3tkpt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rcpmf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_02s0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vvwg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sxfjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k3owx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x6xxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2r2g5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dhg8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dg55") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hh2rc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_flfmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxmtd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gwabu") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_i00ap") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_46kxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7lbul") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx76x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iveg7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3io27") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k1sib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ufjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yw7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrbd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajojh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_spax7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynr03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs864") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ir8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psb63") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14aye") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sdofy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gb66h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krlfn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5he6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cw42k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hnsv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bx3xf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_viffk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xho.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xho.tres new file mode 100644 index 0000000..997066d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xho.tres @@ -0,0 +1,659 @@ +[gd_resource type="SpriteFrames" load_steps=91 format=3 uid="uid://dam0deegjysyo"] + +[ext_resource type="Texture2D" uid="uid://vdcry85nxo0" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png" id="1_m55xs"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_28jgm"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_whyo8"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qh17l"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1m5m4"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h37mk"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0hhup"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qgvqv"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yr8my"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cwdtt"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aufvx"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dwnuu"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4h1d"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lse3j"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3pdg3"] +atlas = ExtResource("1_m55xs") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_efvag"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jcbmu"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t1nxh"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fbeky"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ysxcj"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r6csv"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytea6"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wfkmi"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_as3wq"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_038x2"] +atlas = ExtResource("1_m55xs") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vof8g"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_la3rj"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f660t"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kux30"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5q5rp"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1vce"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m7s8w"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xsfxc"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n73q2"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ec6wg"] +atlas = ExtResource("1_m55xs") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bq6f"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewlik"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3eof"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y2f3w"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8fqrl"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1em78"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdecv"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5xplc"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8wj1"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2h11"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84vtt"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erjql"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wdkct"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgv7e"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xaye8"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs2oa"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uo2y6"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kt4xs"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ibima"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_smygj"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w5fy0"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bv7dg"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqm6q"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vrt2x"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgq3g"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_td7sq"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjuet"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nljw1"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a5ta2"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyddq"] +atlas = ExtResource("1_m55xs") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f8k3a"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5acsk"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ssd1"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rr6bi"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3iiro"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckpa6"] +atlas = ExtResource("1_m55xs") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l60gv"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pkt82"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_idjfb"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cigg5"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1h4wk"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a7jbn"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7h6s7"] +atlas = ExtResource("1_m55xs") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kwfli"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0osl"] +atlas = ExtResource("1_m55xs") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cl840"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_53mjc"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v58cj"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7y2cl"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43ale"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kbcxq"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8vde"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hoa2"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82cnr"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f60yk"] +atlas = ExtResource("1_m55xs") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_28jgm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_whyo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qh17l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1m5m4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h37mk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0hhup") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qgvqv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yr8my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cwdtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aufvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dwnuu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4h1d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lse3j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3pdg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_efvag") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jcbmu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t1nxh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fbeky") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ysxcj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r6csv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytea6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wfkmi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_as3wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_038x2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vof8g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_la3rj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f660t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kux30") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5q5rp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1vce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m7s8w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xsfxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n73q2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ec6wg") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bq6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewlik") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3eof") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y2f3w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8fqrl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1em78") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdecv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5xplc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8wj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2h11") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84vtt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erjql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wdkct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgv7e") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xaye8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs2oa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uo2y6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kt4xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ibima") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_smygj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w5fy0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bv7dg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqm6q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vrt2x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgq3g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_td7sq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjuet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nljw1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a5ta2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyddq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f8k3a") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5acsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ssd1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rr6bi") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3iiro") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckpa6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l60gv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pkt82") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_idjfb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cigg5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1h4wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a7jbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7h6s7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kwfli") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0osl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cl840") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_53mjc") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_v58cj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7y2cl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43ale") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kbcxq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8vde") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hoa2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82cnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f60yk") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle01.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle01.tres new file mode 100644 index 0000000..b5f9eb2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle01.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://c0s114qcn0eqo"] + +[ext_resource type="Texture2D" uid="uid://dlcw4nbulkbey" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png" id="1_a6m7w"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6d1g"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu342"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34n2p"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rxx34"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewx46"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yu1j4"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rj6u7"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_638b1"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw5dd"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hkmu5"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l10pa"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl4vx"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yauxc"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3na1n"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a3d4d"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jj6oo"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8b6pw"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk4m1"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsy18"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17o0a"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmecs"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_731p4"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ed5a"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cs8vi"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jofio"] +atlas = ExtResource("1_a6m7w") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cd3fk"] +atlas = ExtResource("1_a6m7w") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajton"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qs8ww"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7qq3"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2o418"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4j4l"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3novx"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyrh8"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srntk"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cx5d0"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2psk2"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vhhav"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dcuim"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w2mpq"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5mid6"] +atlas = ExtResource("1_a6m7w") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jms5b"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ip72r"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pg21"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mcrmc"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jknim"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_avl4m"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gmopb"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uly7i"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k0he8"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmc6e"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f001u"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_doa6v"] +atlas = ExtResource("1_a6m7w") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6d1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu342") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34n2p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rxx34") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewx46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yu1j4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rj6u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_638b1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw5dd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hkmu5") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l10pa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl4vx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yauxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3na1n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a3d4d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jj6oo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8b6pw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk4m1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsy18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17o0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmecs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_731p4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ed5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cs8vi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jofio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cd3fk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajton") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qs8ww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7qq3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2o418") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4j4l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3novx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyrh8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srntk") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_cx5d0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2psk2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vhhav") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dcuim") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w2mpq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5mid6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jms5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ip72r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pg21") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mcrmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jknim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_avl4m") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gmopb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uly7i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k0he8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmc6e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f001u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_doa6v") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle02.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle02.tres new file mode 100644 index 0000000..b8e87dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle02.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://c66l3ph5f2wlb"] + +[ext_resource type="Texture2D" uid="uid://cbjndgubyb274" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png" id="1_d7t13"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_447c5"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3rn3"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bpuxn"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23bn2"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6vhh"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stbdw"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dclp0"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xhrwo"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo4nh"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vise1"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4hjua"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06itf"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pd6pg"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl04b"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pta3h"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ons1g"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kvgp"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3kn5a"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qesg2"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vqdyj"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0vr3k"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cqfl4"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l45vv"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qg7u6"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xv12v"] +atlas = ExtResource("1_d7t13") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aq23p"] +atlas = ExtResource("1_d7t13") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_naujp"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d72c2"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r51gk"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jfna7"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7u1ji"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yap4u"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_anfoc"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_38i1x"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s5lxs"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lk8rs"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2sy6k"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucn8a"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vefl"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duwrt"] +atlas = ExtResource("1_d7t13") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wrb8y"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbxi0"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wc4my"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qxr72"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3jc1"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fu1s7"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wycwv"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik6qb"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x13m7"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yrq3e"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lwh3i"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_exgwr"] +atlas = ExtResource("1_d7t13") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_447c5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3rn3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bpuxn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23bn2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6vhh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stbdw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dclp0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xhrwo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo4nh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vise1") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4hjua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06itf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pd6pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl04b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pta3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ons1g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kvgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3kn5a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qesg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vqdyj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0vr3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cqfl4") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_l45vv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qg7u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xv12v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aq23p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_naujp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d72c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r51gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jfna7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7u1ji") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yap4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_anfoc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_38i1x") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_s5lxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lk8rs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2sy6k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucn8a") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vefl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wrb8y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbxi0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wc4my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qxr72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3jc1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fu1s7") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wycwv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik6qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x13m7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yrq3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lwh3i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_exgwr") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle03.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle03.tres new file mode 100644 index 0000000..a06f477 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_xyle03.tres @@ -0,0 +1,400 @@ +[gd_resource type="SpriteFrames" load_steps=54 format=3 uid="uid://dv4113f0yb44b"] + +[ext_resource type="Texture2D" uid="uid://b1gfxigajfuar" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png" id="1_3q5k0"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_xk6if"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iswpr"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdnog"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8pdax"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6svlo"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2wsy"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vx1h3"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ouqsk"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ololm"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1yjw"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lcs0y"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wcica"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bawco"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hclr8"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gneot"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hohve"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6sv18"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tf1on"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_goc3p"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4gny"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yleti"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uc2ei"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8o3ph"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snwu5"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_erlfv"] +atlas = ExtResource("1_3q5k0") +region = Rect2(162, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2g8m"] +atlas = ExtResource("1_3q5k0") +region = Rect2(243, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x01gk"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kpm2q"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_22v16"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lq11q"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hldmj"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i5b5k"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2padw"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g0rwq"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_102o6"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ge8wq"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hc3od"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4havg"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qyj8b"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_febey"] +atlas = ExtResource("1_3q5k0") +region = Rect2(81, 0, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_etm2o"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 891, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c13y8"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 810, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5281p"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 729, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ru6h"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 648, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sl8yl"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 567, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hbavw"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 486, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yeh71"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 405, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ohpx"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 324, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ofgv"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 243, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u0o5b"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 162, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l24rf"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 81, 80, 80) + +[sub_resource type="AtlasTexture" id="AtlasTexture_336yn"] +atlas = ExtResource("1_3q5k0") +region = Rect2(0, 0, 80, 80) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xk6if") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iswpr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdnog") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8pdax") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6svlo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2wsy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vx1h3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ouqsk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ololm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1yjw") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lcs0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wcica") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bawco") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hclr8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gneot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hohve") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6sv18") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tf1on") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_goc3p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4gny") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yleti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uc2ei") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_8o3ph") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snwu5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_erlfv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2g8m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x01gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kpm2q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_22v16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lq11q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hldmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i5b5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2padw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g0rwq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_102o6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ge8wq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hc3od") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4havg") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qyj8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_febey") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_etm2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c13y8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5281p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ru6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sl8yl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hbavw") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_yeh71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ohpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ofgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u0o5b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l24rf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_336yn") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_yun.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_yun.tres new file mode 100644 index 0000000..ff62209 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_yun.tres @@ -0,0 +1,890 @@ +[gd_resource type="SpriteFrames" load_steps=124 format=3 uid="uid://b25a04koj2d35"] + +[ext_resource type="Texture2D" uid="uid://c22ctfv35d7v3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png" id="1_2ube1"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_5b7jv"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wj0f4"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_utfne"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uomea"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukjqp"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jw87"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slk5g"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k6dks"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ontox"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_14u66"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sklfp"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1xh3d"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nytrb"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qvw0o"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_shqeb"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m12pg"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jl2hh"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qlf1c"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_py63o"] +atlas = ExtResource("1_2ube1") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0e26w"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ajmh5"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vvwri"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_px2lm"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vqmh"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g11qu"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1e48"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27otp"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8iqi"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bbdor"] +atlas = ExtResource("1_2ube1") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jpw2o"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_12ys2"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lneyc"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pl7mq"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vyb5q"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2rnj"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ynsj6"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gk8su"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lw4sm"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jukpb"] +atlas = ExtResource("1_2ube1") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he35e"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_temlh"] +atlas = ExtResource("1_2ube1") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mpsw8"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vki3d"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qwi3x"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1mwc4"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_52r4e"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2hi3"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjlqh"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4q8no"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx3wk"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cisrw"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meto2"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1egtm"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ry75y"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4u8j1"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbtjv"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mai8q"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w48lm"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_stb08"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dl05y"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_56hmw"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fc4xe"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uk26i"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cnxe1"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sd1s1"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_deoow"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qilie"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h3n2v"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3udwq"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kudv6"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ginyp"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvnuw"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_um2xs"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eu52n"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwm40"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_20gjb"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ejsfc"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kby5c"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_04ymu"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i1oma"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yhavc"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ripn"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d6t4w"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3djm7"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7e8th"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jacgd"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3rwd"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kqjrc"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5nuix"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxdd3"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_17fa0"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r2qbr"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tdocl"] +atlas = ExtResource("1_2ube1") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g8iua"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_omhxa"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lojpb"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ktgji"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lhl4u"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjg2v"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_csho1"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dgbs5"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrbd4"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y88yo"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5cvsc"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lb76j"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ys26w"] +atlas = ExtResource("1_2ube1") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fmt3k"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lefgd"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hx0tl"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2628j"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_aoypf"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ilni1"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3mh2m"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7d6af"] +atlas = ExtResource("1_2ube1") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jiwkf"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jqmif"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nepu7"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jowgh"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwhh6"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w071b"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ukrcp"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amddm"] +atlas = ExtResource("1_2ube1") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5b7jv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wj0f4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_utfne") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uomea") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukjqp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jw87") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slk5g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k6dks") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ontox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_14u66") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sklfp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1xh3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nytrb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qvw0o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_shqeb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m12pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jl2hh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qlf1c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_py63o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0e26w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ajmh5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vvwri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_px2lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vqmh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g11qu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1e48") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27otp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8iqi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bbdor") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jpw2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_12ys2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lneyc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pl7mq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vyb5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2rnj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ynsj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gk8su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lw4sm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jukpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_he35e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_temlh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mpsw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vki3d") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qwi3x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1mwc4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_52r4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2hi3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjlqh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4q8no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx3wk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cisrw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meto2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1egtm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ry75y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4u8j1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbtjv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mai8q") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_w48lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_stb08") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dl05y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_56hmw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fc4xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uk26i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cnxe1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sd1s1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_deoow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qilie") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h3n2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3udwq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kudv6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ginyp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvnuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_um2xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eu52n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwm40") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_20gjb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ejsfc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kby5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_04ymu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i1oma") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yhavc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ripn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d6t4w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3djm7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7e8th") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jacgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3rwd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kqjrc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5nuix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxdd3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_17fa0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r2qbr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tdocl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g8iua") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_omhxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lojpb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ktgji") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_lhl4u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjg2v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_csho1") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dgbs5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrbd4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y88yo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5cvsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lb76j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ys26w") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fmt3k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lefgd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hx0tl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2628j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_aoypf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ilni1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3mh2m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7d6af") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_jiwkf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jqmif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nepu7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jowgh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwhh6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w071b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ukrcp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amddm") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_z0r.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_z0r.tres new file mode 100644 index 0000000..c96cec8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_z0r.tres @@ -0,0 +1,743 @@ +[gd_resource type="SpriteFrames" load_steps=103 format=3 uid="uid://d021tfrktsmv4"] + +[ext_resource type="Texture2D" uid="uid://c0dkrla6juhpg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png" id="1_g5vhk"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_h1o2o"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjg8p"] +atlas = ExtResource("1_g5vhk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxton"] +atlas = ExtResource("1_g5vhk") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lqy65"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bi4pg"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ave5q"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6yp43"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3ye7v"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cxyxa"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dw5j5"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g2b0a"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8c7v5"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn7ew"] +atlas = ExtResource("1_g5vhk") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t7cuc"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_svjif"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eicj5"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndisf"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pav2o"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tuh2i"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1ab0b"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ty5xi"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gv10"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rgnmc"] +atlas = ExtResource("1_g5vhk") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ahkr"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lubo8"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnapp"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ky1qk"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1dlrj"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ssg71"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eyc5l"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g1v0c"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_srl75"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e2qgg"] +atlas = ExtResource("1_g5vhk") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23mlx"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lbqrn"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6tcv"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jmunp"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7kd6g"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c0jye"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k648n"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmvb6"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o4l2o"] +atlas = ExtResource("1_g5vhk") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xcs6s"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rjdth"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lyuf8"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eiyj6"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2xvt"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_krdry"] +atlas = ExtResource("1_g5vhk") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60sos"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h2swg"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poae5"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pdnc2"] +atlas = ExtResource("1_g5vhk") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykbj4"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ts6f3"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36mio"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_osiua"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_beny4"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w7g3s"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hebk4"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yw11l"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxvu1"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaxob"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovtaj"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rwpux"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5tnw8"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8wun8"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_06drj"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tkwrt"] +atlas = ExtResource("1_g5vhk") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_65x4s"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fqix8"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3leku"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_slugg"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c08st"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bm0rh"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wygu"] +atlas = ExtResource("1_g5vhk") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nrgfw"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v2fes"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_makyr"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wutix"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l33nq"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rdi0p"] +atlas = ExtResource("1_g5vhk") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_to5wg"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c35no"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bkev2"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w8g16"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_27bg2"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_16flf"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gg6u7"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yap2"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u6ktv"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8r6tq"] +atlas = ExtResource("1_g5vhk") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ucv7u"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xus4h"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eqtdd"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_icia1"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n6it6"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0surk"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4l3u6"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a2b2s"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_onvxk"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nidg3"] +atlas = ExtResource("1_g5vhk") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_h1o2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjg8p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxton") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lqy65") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bi4pg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ave5q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6yp43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3ye7v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cxyxa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dw5j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g2b0a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8c7v5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn7ew") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t7cuc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_svjif") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eicj5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndisf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pav2o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tuh2i") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1ab0b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ty5xi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gv10") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rgnmc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ahkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lubo8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnapp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ky1qk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1dlrj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ssg71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eyc5l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g1v0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_srl75") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e2qgg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23mlx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lbqrn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6tcv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jmunp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7kd6g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c0jye") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k648n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmvb6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o4l2o") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xcs6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rjdth") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lyuf8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eiyj6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2xvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_krdry") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60sos") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h2swg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poae5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pdnc2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykbj4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ts6f3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_36mio") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_osiua") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_beny4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w7g3s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hebk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yw11l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxvu1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaxob") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovtaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rwpux") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5tnw8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8wun8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_06drj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tkwrt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_65x4s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fqix8") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3leku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_slugg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c08st") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bm0rh") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wygu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nrgfw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v2fes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_makyr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wutix") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l33nq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rdi0p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_to5wg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c35no") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bkev2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w8g16") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_27bg2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_16flf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gg6u7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yap2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u6ktv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8r6tq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ucv7u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xus4h") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_eqtdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_icia1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n6it6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0surk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4l3u6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a2b2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_onvxk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nidg3") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zenrui.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zenrui.tres new file mode 100644 index 0000000..e9d6587 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zenrui.tres @@ -0,0 +1,603 @@ +[gd_resource type="SpriteFrames" load_steps=83 format=3 uid="uid://jx27b03kqevq"] + +[ext_resource type="Texture2D" uid="uid://8gtuavybleq3" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png" id="1_krgcx"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1r0j"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v55fy"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ijjn"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jf2hi"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6hy5n"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m4w4b"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jnrjd"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xiwgv"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p3qlw"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q70lp"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ue8km"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fed03"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vja1p"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2uw8t"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nliql"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c5gxb"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5165v"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u02qi"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hl40d"] +atlas = ExtResource("1_krgcx") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qaoys"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5t1gj"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke4xs"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dts6h"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b4uru"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yklfu"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2nvnp"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t3v1l"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_84lpx"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wwydr"] +atlas = ExtResource("1_krgcx") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0y43"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6bowb"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vbq7"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xw1f8"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j0wso"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_drnpk"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7j80e"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x1x4o"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ivws"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wnird"] +atlas = ExtResource("1_krgcx") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_he3lb"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phjdu"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v41w5"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_an3vr"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ql7qb"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ekw71"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ihnvw"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx6k4"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tcrcu"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8lwkl"] +atlas = ExtResource("1_krgcx") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kllqa"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3011"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8qw5v"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nc7xm"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_60x57"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wkigw"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6dxql"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xkp2y"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnsg3"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wvrhl"] +atlas = ExtResource("1_krgcx") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l64ih"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kd4mo"] +atlas = ExtResource("1_krgcx") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7uxf"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kujyo"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unqjw"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_noerv"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm4xe"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1w4iq"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80hnl"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tosk4"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8u57u"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bdjvg"] +atlas = ExtResource("1_krgcx") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fgkm4"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_amr0t"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ftc4b"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3op3v"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3780b"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_obuct"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q3w46"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqcgl"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjswu"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ollc"] +atlas = ExtResource("1_krgcx") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1r0j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v55fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ijjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jf2hi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6hy5n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_m4w4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jnrjd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xiwgv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p3qlw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q70lp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ue8km") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fed03") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vja1p") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2uw8t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nliql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c5gxb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5165v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u02qi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hl40d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qaoys") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5t1gj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke4xs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dts6h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b4uru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yklfu") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_2nvnp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t3v1l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_84lpx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wwydr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0y43") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6bowb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vbq7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xw1f8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j0wso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_drnpk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7j80e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x1x4o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ivws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wnird") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_he3lb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phjdu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v41w5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_an3vr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ql7qb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ekw71") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ihnvw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx6k4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tcrcu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8lwkl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kllqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3011") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8qw5v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nc7xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_60x57") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wkigw") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_6dxql") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xkp2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnsg3") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_wvrhl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l64ih") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kd4mo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7uxf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kujyo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unqjw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_noerv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm4xe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1w4iq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80hnl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tosk4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8u57u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bdjvg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fgkm4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_amr0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ftc4b") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3op3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3780b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_obuct") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q3w46") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqcgl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjswu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ollc") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zukong.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zukong.tres new file mode 100644 index 0000000..1f5be96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zukong.tres @@ -0,0 +1,778 @@ +[gd_resource type="SpriteFrames" load_steps=108 format=3 uid="uid://cxt6cfjbq1eax"] + +[ext_resource type="Texture2D" uid="uid://brxdpww861mo" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png" id="1_bqwck"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_7qq1r"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wupuw"] +atlas = ExtResource("1_bqwck") +region = Rect2(1010, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xhvu"] +atlas = ExtResource("1_bqwck") +region = Rect2(1010, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_go14k"] +atlas = ExtResource("1_bqwck") +region = Rect2(1010, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_314fa"] +atlas = ExtResource("1_bqwck") +region = Rect2(1010, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hs0na"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85g5j"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ws35f"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fdavc"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jebed"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_23p4b"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tu8n2"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ke4ox"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y8lls"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xoi0y"] +atlas = ExtResource("1_bqwck") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8k5ca"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q26xr"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_223ka"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r8ki4"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_by86o"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7a61"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8khuv"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iwq5u"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f6kwe"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_punu4"] +atlas = ExtResource("1_bqwck") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_am0a3"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2frh4"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y85ui"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fm0lm"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g5omk"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_teotx"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qmx57"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_axw2d"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_likng"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gu7re"] +atlas = ExtResource("1_bqwck") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4qqwm"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ms4hn"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p73x4"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0pp3h"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2iqts"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1n1iw"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tklyd"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bundt"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5dye5"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bs55f"] +atlas = ExtResource("1_bqwck") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08i42"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5284o"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l1x7c"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1e27h"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q0ivm"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j55cg"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jaqx3"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ueeuw"] +atlas = ExtResource("1_bqwck") +region = Rect2(1010, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_83sow"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_207vd"] +atlas = ExtResource("1_bqwck") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kdsc7"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5567g"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_otvso"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i4s07"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cjly0"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2yoso"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5aw4"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kaqi2"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ses3d"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_87235"] +atlas = ExtResource("1_bqwck") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jlr8q"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_owrqa"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_muvyd"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4a2y"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_p0rim"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sjl2u"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ak62"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wquwa"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7nflv"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mbxmj"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jheb3"] +atlas = ExtResource("1_bqwck") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2v6yq"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vjvws"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mga6d"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmu5f"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hp20"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1hk8s"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ljyac"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31ndm"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uh73"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1txt2"] +atlas = ExtResource("1_bqwck") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ffb0"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vbcjt"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d03su"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yx3vt"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3dyqx"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2jd0t"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iploa"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w1lyq"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gnseh"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l6gfk"] +atlas = ExtResource("1_bqwck") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gfvo3"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxry3"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sv61k"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y5qgb"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vemku"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wx64c"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ndqgp"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ewsfq"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tqt6u"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6m2pv"] +atlas = ExtResource("1_bqwck") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_7qq1r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wupuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xhvu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_go14k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_314fa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hs0na") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85g5j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ws35f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fdavc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jebed") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_23p4b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tu8n2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ke4ox") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y8lls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xoi0y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8k5ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q26xr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_223ka") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r8ki4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_by86o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7a61") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8khuv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iwq5u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f6kwe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_punu4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_am0a3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2frh4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y85ui") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fm0lm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g5omk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_teotx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qmx57") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_axw2d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_likng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gu7re") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4qqwm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ms4hn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p73x4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0pp3h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2iqts") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1n1iw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tklyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bundt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5dye5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bs55f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08i42") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_5284o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l1x7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1e27h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q0ivm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j55cg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jaqx3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ueeuw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_83sow") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_207vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kdsc7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5567g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_otvso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i4s07") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cjly0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2yoso") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5aw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kaqi2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ses3d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_87235") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jlr8q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_owrqa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_muvyd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4a2y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_p0rim") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sjl2u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ak62") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wquwa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7nflv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mbxmj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jheb3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2v6yq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_vjvws") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mga6d") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmu5f") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hp20") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1hk8s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ljyac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_31ndm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uh73") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1txt2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ffb0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vbcjt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d03su") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yx3vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3dyqx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2jd0t") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iploa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w1lyq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gnseh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l6gfk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gfvo3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxry3") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_sv61k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y5qgb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vemku") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wx64c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ndqgp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ewsfq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tqt6u") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6m2pv") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zurael.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zurael.tres new file mode 100644 index 0000000..99f1cdc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zurael.tres @@ -0,0 +1,673 @@ +[gd_resource type="SpriteFrames" load_steps=93 format=3 uid="uid://b41i58hghn4g7"] + +[ext_resource type="Texture2D" uid="uid://cnfav3wb81o32" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png" id="1_bewoc"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xblg"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4g1h5"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2ob3a"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j2cug"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yqak2"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c3e1x"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q7t2a"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ybcw4"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r1hpo"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kvh3f"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4wuai"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pmlpa"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hebsr"] +atlas = ExtResource("1_bewoc") +region = Rect2(242, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2k5ca"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jwge1"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ueho"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qo18j"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_730rm"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vbes"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_t10sc"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_snj51"] +atlas = ExtResource("1_bewoc") +region = Rect2(121, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ovpcy"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k7tcf"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6lmx4"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bo8gk"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpt7m"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_peoaq"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojelo"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nk6gl"] +atlas = ExtResource("1_bewoc") +region = Rect2(0, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ormlq"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_67eet"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ptce7"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_66tuo"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ufs6s"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pm8my"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1u3ad"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unrod"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g7b2s"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1x5v7"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_olib0"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_082xm"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s7rlv"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_oxvjp"] +atlas = ExtResource("1_bewoc") +region = Rect2(363, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qljds"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gc2xy"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7gikn"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b1h14"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_meebo"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b10ml"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6pc7l"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wda3v"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s52sj"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6w38q"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uak1e"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vwans"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vc8n"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5g652"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k8str"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_su8ao"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tfk3v"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qrv0c"] +atlas = ExtResource("1_bewoc") +region = Rect2(605, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_sywy6"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_psxnt"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xa5mb"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_03rdt"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fr71b"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0dv1h"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8mcxr"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7ubck"] +atlas = ExtResource("1_bewoc") +region = Rect2(726, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_24fqt"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6nkb2"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ayhi"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ve6m6"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lxnir"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s0g8r"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cryit"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nn8ib"] +atlas = ExtResource("1_bewoc") +region = Rect2(968, 0, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_547c2"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1p5hg"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k4qot"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl8w3"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcvww"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bjjqq"] +atlas = ExtResource("1_bewoc") +region = Rect2(847, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xqud4"] +atlas = ExtResource("1_bewoc") +region = Rect2(484, 847, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_h81f6"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 726, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hphrv"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 605, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r7ge7"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 484, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6xdus"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 363, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6e8kb"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 242, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ytbxx"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 121, 120, 120) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5y0ua"] +atlas = ExtResource("1_bewoc") +region = Rect2(1089, 0, 120, 120) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xblg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4g1h5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2ob3a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j2cug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yqak2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c3e1x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q7t2a") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ybcw4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r1hpo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kvh3f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4wuai") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pmlpa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hebsr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2k5ca") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jwge1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ueho") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qo18j") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_730rm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vbes") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_t10sc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_snj51") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ovpcy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k7tcf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6lmx4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bo8gk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpt7m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_peoaq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojelo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nk6gl") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ormlq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_67eet") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ptce7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_66tuo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ufs6s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pm8my") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1u3ad") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unrod") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g7b2s") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1x5v7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_olib0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_082xm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s7rlv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_oxvjp") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_qljds") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gc2xy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7gikn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b1h14") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_meebo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b10ml") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6pc7l") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wda3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s52sj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6w38q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uak1e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vwans") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vc8n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5g652") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k8str") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_su8ao") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tfk3v") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qrv0c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_sywy6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_psxnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xa5mb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_03rdt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fr71b") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_0dv1h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8mcxr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7ubck") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_24fqt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6nkb2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ayhi") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ve6m6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lxnir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s0g8r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cryit") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nn8ib") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_547c2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1p5hg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k4qot") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl8w3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcvww") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bjjqq") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_xqud4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_h81f6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hphrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r7ge7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6xdus") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6e8kb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ytbxx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5y0ua") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyx.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyx.tres new file mode 100644 index 0000000..35d286a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyx.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://bmrsx2cn1iw2o"] + +[ext_resource type="Texture2D" uid="uid://6s7uj16hduhg" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png" id="1_7rv0t"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_btfls"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jsson"] +atlas = ExtResource("1_7rv0t") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3xeqc"] +atlas = ExtResource("1_7rv0t") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5joyk"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7c1s0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pwsnn"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hlnf3"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_atk4n"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iqws3"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hox3y"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eij6f"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_54bu0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xe1bg"] +atlas = ExtResource("1_7rv0t") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u5ssb"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiax1"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xandd"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ilgo"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hxsiu"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hnse2"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8kotw"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_80cx6"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5rtt8"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l4nmr"] +atlas = ExtResource("1_7rv0t") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7csri"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qw5rd"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1jokw"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uub7r"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n100k"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dd565"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_scgqy"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8g8ti"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kop1o"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_feot1"] +atlas = ExtResource("1_7rv0t") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jejin"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ykx7c"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mn74k"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x7w3y"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s1gno"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yli50"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_3vmvy"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g4wkr"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ml3fy"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_duxqr"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ojs4c"] +atlas = ExtResource("1_7rv0t") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_xu2cs"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pgkk0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f3xtg"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e6h8b"] +atlas = ExtResource("1_7rv0t") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ai6b"] +atlas = ExtResource("1_7rv0t") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w3vwx"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fayjn"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jp65m"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_eeu8m"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rhejv"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ntcg0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8oxtx"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4khh"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_043x0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgn0h"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nslt0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4gcfj"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_quqas"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kf00x"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i7ns7"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yk818"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v1mwy"] +atlas = ExtResource("1_7rv0t") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_q5jrv"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6id0x"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kxnl0"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rkkdd"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_htnlq"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_petbt"] +atlas = ExtResource("1_7rv0t") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_u3iwf"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y88vm"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ciouq"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o1rv5"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_roqug"] +atlas = ExtResource("1_7rv0t") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tb700"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1grsc"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_43mir"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tt1rb"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hfnt3"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ux5ep"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o3cn7"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1al2g"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5o17h"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o6wnr"] +atlas = ExtResource("1_7rv0t") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5kgaj"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mgfhd"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_it3p5"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_c8ofw"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_34w2b"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gug4e"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_uxtac"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nmhgx"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4ifhp"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e168i"] +atlas = ExtResource("1_7rv0t") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_btfls") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jsson") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_3xeqc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5joyk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7c1s0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pwsnn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hlnf3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_atk4n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iqws3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hox3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eij6f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_54bu0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xe1bg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u5ssb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiax1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xandd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ilgo") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hxsiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hnse2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8kotw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_80cx6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5rtt8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l4nmr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7csri") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qw5rd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1jokw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uub7r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n100k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_dd565") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_scgqy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8g8ti") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kop1o") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_feot1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jejin") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ykx7c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mn74k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x7w3y") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s1gno") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yli50") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_3vmvy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g4wkr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ml3fy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_duxqr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ojs4c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_xu2cs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pgkk0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f3xtg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e6h8b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ai6b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w3vwx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fayjn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jp65m") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_eeu8m") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_rhejv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ntcg0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8oxtx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4khh") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_043x0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgn0h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nslt0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4gcfj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_quqas") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kf00x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i7ns7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yk818") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v1mwy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_q5jrv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6id0x") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kxnl0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rkkdd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_htnlq") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_petbt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_u3iwf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y88vm") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_ciouq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o1rv5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_roqug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tb700") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1grsc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_43mir") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tt1rb") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hfnt3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ux5ep") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o3cn7") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1al2g") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5o17h") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o6wnr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5kgaj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mgfhd") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_it3p5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_c8ofw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_34w2b") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gug4e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_uxtac") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nmhgx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4ifhp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e168i") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyxfestive.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyxfestive.tres new file mode 100644 index 0000000..7338c39 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/neutral_zyxfestive.tres @@ -0,0 +1,715 @@ +[gd_resource type="SpriteFrames" load_steps=99 format=3 uid="uid://c5nh24y5sk5f1"] + +[ext_resource type="Texture2D" uid="uid://vtrxhg2fxn13" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png" id="1_44g1s"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_57ayj"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_igxqd"] +atlas = ExtResource("1_44g1s") +region = Rect2(909, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_s88u0"] +atlas = ExtResource("1_44g1s") +region = Rect2(909, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_j8y56"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pbtau"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5uffr"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o60vd"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hiwdm"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_v4hd2"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_516pl"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_w6ybe"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_on3kj"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_fv0mt"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mycg3"] +atlas = ExtResource("1_44g1s") +region = Rect2(808, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_iiy3n"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_0ld41"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2awa1"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ck5k"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7vngq"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_f5r3e"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_te4rx"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bu7hr"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85din"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_b48h4"] +atlas = ExtResource("1_44g1s") +region = Rect2(707, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_r58x8"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_phfiu"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yb1h4"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bvywk"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_jak1f"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_y1rbn"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_vpaoa"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_rq1fw"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pacab"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_8ghvt"] +atlas = ExtResource("1_44g1s") +region = Rect2(606, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_e1pf0"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qqym6"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6vbre"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_i2jxc"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_laaeb"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_dt6bl"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lrm02"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_k2ml5"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_88j7n"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_thw44"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_2gl37"] +atlas = ExtResource("1_44g1s") +region = Rect2(505, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ckbug"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ossp2"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1g60q"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_caakp"] +atlas = ExtResource("1_44g1s") +region = Rect2(909, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_82jru"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_08vfy"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_x2sq5"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g6at6"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_36gg4"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cbqce"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_n3fta"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nhcnt"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_poofn"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lthvx"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_pnejw"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_4p5cp"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_85yxg"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_30hbv"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5ndar"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_l7vhe"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_me5nx"] +atlas = ExtResource("1_44g1s") +region = Rect2(303, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_unqgy"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_o2big"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yjs35"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nnq72"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_keeqj"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_31c15"] +atlas = ExtResource("1_44g1s") +region = Rect2(404, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_bxox3"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_7js7e"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_m31tc"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lux5c"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tchoq"] +atlas = ExtResource("1_44g1s") +region = Rect2(202, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_mfp5r"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6ye3n"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_nfdxs"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_coqk5"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qeth6"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wbujg"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_lnvng"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_yet0r"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_blsiu"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ey0vt"] +atlas = ExtResource("1_44g1s") +region = Rect2(101, 0, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_cy3av"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 909, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_5v7fy"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 808, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gqsms"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 707, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_1engj"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 606, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_d3vqf"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 505, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ik4la"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 404, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hqalw"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 303, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_hdgyf"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 202, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_qm0cd"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 101, 100, 100) + +[sub_resource type="AtlasTexture" id="AtlasTexture_a37wf"] +atlas = ExtResource("1_44g1s") +region = Rect2(0, 0, 100, 100) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_57ayj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_igxqd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_s88u0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_j8y56") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pbtau") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5uffr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o60vd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hiwdm") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_v4hd2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_516pl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_w6ybe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_on3kj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_fv0mt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mycg3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_iiy3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_0ld41") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2awa1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ck5k") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7vngq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_f5r3e") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_te4rx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bu7hr") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85din") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_b48h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_r58x8") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_phfiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yb1h4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bvywk") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_jak1f") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_y1rbn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_vpaoa") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_rq1fw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pacab") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_8ghvt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_e1pf0") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qqym6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6vbre") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_i2jxc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_laaeb") +}], +"loop": true, +"name": &"attack", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_dt6bl") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lrm02") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_k2ml5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_88j7n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_thw44") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_2gl37") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ckbug") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ossp2") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1g60q") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_caakp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_82jru") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_08vfy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_x2sq5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g6at6") +}], +"loop": true, +"name": &"breathing", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_36gg4") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cbqce") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_n3fta") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nhcnt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_poofn") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lthvx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_pnejw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_4p5cp") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_85yxg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_30hbv") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5ndar") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_l7vhe") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_me5nx") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_unqgy") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_o2big") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yjs35") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nnq72") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_keeqj") +}], +"loop": true, +"name": &"death", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_31c15") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_bxox3") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_7js7e") +}], +"loop": true, +"name": &"hit", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_m31tc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lux5c") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tchoq") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_mfp5r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6ye3n") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_nfdxs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_coqk5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qeth6") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wbujg") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_lnvng") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_yet0r") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_blsiu") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ey0vt") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_cy3av") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_5v7fy") +}], +"loop": true, +"name": &"idle", +"speed": 9.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_gqsms") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_1engj") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_d3vqf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ik4la") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hqalw") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_hdgyf") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_qm0cd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_a37wf") +}], +"loop": true, +"name": &"run", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spriteframes/units/prop_cranewisp.tres b/addons/duelyst_animated_sprites/assets/spriteframes/units/prop_cranewisp.tres new file mode 100644 index 0000000..2e369e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spriteframes/units/prop_cranewisp.tres @@ -0,0 +1,67 @@ +[gd_resource type="SpriteFrames" load_steps=10 format=3 uid="uid://bcqkyfo6vvspv"] + +[ext_resource type="Texture2D" uid="uid://kdtom3w6mrr1" path="res://addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png" id="1_hbbg4"] + +[sub_resource type="AtlasTexture" id="AtlasTexture_y7bnc"] +atlas = ExtResource("1_hbbg4") +region = Rect2(67, 0, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_gv082"] +atlas = ExtResource("1_hbbg4") +region = Rect2(134, 0, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_tusnd"] +atlas = ExtResource("1_hbbg4") +region = Rect2(67, 74, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_g40gs"] +atlas = ExtResource("1_hbbg4") +region = Rect2(67, 37, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_wl5j5"] +atlas = ExtResource("1_hbbg4") +region = Rect2(134, 37, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_kcyj1"] +atlas = ExtResource("1_hbbg4") +region = Rect2(0, 74, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_6enl5"] +atlas = ExtResource("1_hbbg4") +region = Rect2(0, 37, 66, 36) + +[sub_resource type="AtlasTexture" id="AtlasTexture_ipjd0"] +atlas = ExtResource("1_hbbg4") +region = Rect2(0, 0, 66, 36) + +[resource] +animations = [{ +"frames": [{ +"duration": 1.0, +"texture": SubResource("AtlasTexture_y7bnc") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_gv082") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_tusnd") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_g40gs") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_wl5j5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_kcyj1") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_6enl5") +}, { +"duration": 1.0, +"texture": SubResource("AtlasTexture_ipjd0") +}], +"loop": true, +"name": &"cranewisp", +"speed": 9.0 +}] diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png new file mode 100644 index 0000000..d534988 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png.import new file mode 100644 index 0000000..1e5f6ed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwwfe2uei3u6e" +path="res://.godot/imported/f3_fx_circleofdessication.png-94854579ded7d45138942be79fc907d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_circleofdessication.png" +dest_files=["res://.godot/imported/f3_fx_circleofdessication.png-94854579ded7d45138942be79fc907d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png new file mode 100644 index 0000000..8434be2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png.import new file mode 100644 index 0000000..e51bf24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iifmvvbn0r6o" +path="res://.godot/imported/f3_fx_entropicdecay.png-e830d247afc456c2dabddb5d62529634.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f3_fx_entropicdecay.png" +dest_files=["res://.godot/imported/f3_fx_entropicdecay.png-e830d247afc456c2dabddb5d62529634.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png new file mode 100644 index 0000000..dcbd105 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png.import new file mode 100644 index 0000000..45b8c0b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbbf5yb61falk" +path="res://.godot/imported/f5_fx_flamingstampede.png-ae91ed915495d4ca20d2052bbd626181.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f5_fx_flamingstampede.png" +dest_files=["res://.godot/imported/f5_fx_flamingstampede.png-ae91ed915495d4ca20d2052bbd626181.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png new file mode 100644 index 0000000..3308013 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png.import new file mode 100644 index 0000000..6796310 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfw4rk3s877hf" +path="res://.godot/imported/f6_flashfreeze.png-8923ef0e63239386afb01d1abc2a842e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_flashfreeze.png" +dest_files=["res://.godot/imported/f6_flashfreeze.png-8923ef0e63239386afb01d1abc2a842e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png new file mode 100644 index 0000000..002abe0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png.import new file mode 100644 index 0000000..4e5aef4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brqme5brwjy8g" +path="res://.godot/imported/f6_fx_winterswake.png-95efe39ac251a95b25abed78b08774b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/f6_fx_winterswake.png" +dest_files=["res://.godot/imported/f6_fx_winterswake.png-95efe39ac251a95b25abed78b08774b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png new file mode 100644 index 0000000..20c664c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png.import new file mode 100644 index 0000000..2f223e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djgeyduwk30xw" +path="res://.godot/imported/fx_animalslash.png-1cc760fdca7cf079e8c5c4dc9863a7b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_animalslash.png" +dest_files=["res://.godot/imported/fx_animalslash.png-1cc760fdca7cf079e8c5c4dc9863a7b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png new file mode 100644 index 0000000..af7dc40 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png.import new file mode 100644 index 0000000..f796176 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4dnesi2iojy1" +path="res://.godot/imported/fx_artifactbreak.png-d24d63b6a5c75775582e1cf970363fa9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifactbreak.png" +dest_files=["res://.godot/imported/fx_artifactbreak.png-d24d63b6a5c75775582e1cf970363fa9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png new file mode 100644 index 0000000..e38bd78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png.import new file mode 100644 index 0000000..12ed194 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd12smd5rakhf" +path="res://.godot/imported/fx_artifacthit.png-a1067b2bc902ca73184a0c3a768028d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_artifacthit.png" +dest_files=["res://.godot/imported/fx_artifacthit.png-a1067b2bc902ca73184a0c3a768028d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png new file mode 100644 index 0000000..b7c70ff Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png.import new file mode 100644 index 0000000..b840bfa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blleqcnnyqomj" +path="res://.godot/imported/fx_attackplus.png-4a642d1cc5934fdd6ce283ff5122727d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_attackplus.png" +dest_files=["res://.godot/imported/fx_attackplus.png-4a642d1cc5934fdd6ce283ff5122727d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png new file mode 100644 index 0000000..55f1e33 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png.import new file mode 100644 index 0000000..e53ff4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2an7hpcyi82t" +path="res://.godot/imported/fx_beamfire.png-4f1d37f89679dbba658ace9326870f7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamfire.png" +dest_files=["res://.godot/imported/fx_beamfire.png-4f1d37f89679dbba658ace9326870f7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png new file mode 100644 index 0000000..408aff0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png.import new file mode 100644 index 0000000..51a9ff3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cldf4le6x0jny" +path="res://.godot/imported/fx_beamlaser.png-cb8915e68e62a8b2217fc60387205176.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamlaser.png" +dest_files=["res://.godot/imported/fx_beamlaser.png-cb8915e68e62a8b2217fc60387205176.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png new file mode 100644 index 0000000..a881efb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png.import new file mode 100644 index 0000000..8dd8ccf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1jr632xwta76" +path="res://.godot/imported/fx_beamtesla.png-3b068d09718a13646ff7651908d4f555.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_beamtesla.png" +dest_files=["res://.godot/imported/fx_beamtesla.png-3b068d09718a13646ff7651908d4f555.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png new file mode 100644 index 0000000..ec8156d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png.import new file mode 100644 index 0000000..b8c6e2b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dba0fs0q35c0h" +path="res://.godot/imported/fx_bigfirehitspark.png-d8179bb28424760269283ade32e16d5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bigfirehitspark.png" +dest_files=["res://.godot/imported/fx_bigfirehitspark.png-d8179bb28424760269283ade32e16d5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png new file mode 100644 index 0000000..dab7031 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png.import new file mode 100644 index 0000000..c9f6de1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct78k2dlpx43v" +path="res://.godot/imported/fx_bladebreaker.png-6eff03359377096392f12615a50c747b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladebreaker.png" +dest_files=["res://.godot/imported/fx_bladebreaker.png-6eff03359377096392f12615a50c747b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png new file mode 100644 index 0000000..00b707b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png.import new file mode 100644 index 0000000..a859b23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5dcxm7p7nxda" +path="res://.godot/imported/fx_bladestorm.png-626e7ee8a480599dbeb9ed56d6cd75b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bladestorm.png" +dest_files=["res://.godot/imported/fx_bladestorm.png-626e7ee8a480599dbeb9ed56d6cd75b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png new file mode 100644 index 0000000..1e63975 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png.import new file mode 100644 index 0000000..49d7a9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djkms4x3ajnhx" +path="res://.godot/imported/fx_blood_explosion.png-0771539975328fcd50a863b0793ed6d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blood_explosion.png" +dest_files=["res://.godot/imported/fx_blood_explosion.png-0771539975328fcd50a863b0793ed6d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png new file mode 100644 index 0000000..96670e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png.import new file mode 100644 index 0000000..716bd18 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqrf4y2qwr1d4" +path="res://.godot/imported/fx_bloodground.png-0dd1043d7ee80fdeecbf0080a0ed2717.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bloodground.png" +dest_files=["res://.godot/imported/fx_bloodground.png-0dd1043d7ee80fdeecbf0080a0ed2717.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png new file mode 100644 index 0000000..e44472f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png.import new file mode 100644 index 0000000..820274a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8m4buvfxgabh" +path="res://.godot/imported/fx_blueplasma_vertical.png-400f1c8033d9b499b46c24aebd33dfe0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_blueplasma_vertical.png" +dest_files=["res://.godot/imported/fx_blueplasma_vertical.png-400f1c8033d9b499b46c24aebd33dfe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png new file mode 100644 index 0000000..04088f1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png.import new file mode 100644 index 0000000..a0655c4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1xhcpmvjvwri" +path="res://.godot/imported/fx_bluewatersplash.png-05be729ba2e73f6f7756e875bc902cd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bluewatersplash.png" +dest_files=["res://.godot/imported/fx_bluewatersplash.png-05be729ba2e73f6f7756e875bc902cd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png new file mode 100644 index 0000000..0129cae Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png.import new file mode 100644 index 0000000..536eb26 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmllq427gah5i" +path="res://.godot/imported/fx_bouldersphere.png-982de0f8138787c268b88892c449c23d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_bouldersphere.png" +dest_files=["res://.godot/imported/fx_bouldersphere.png-982de0f8138787c268b88892c449c23d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png new file mode 100644 index 0000000..b84f30f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png.import new file mode 100644 index 0000000..dc38171 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyjp44nsgi4h2" +path="res://.godot/imported/fx_buff.png-8512407d525d3fd228618fa858ecde43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_buff.png" +dest_files=["res://.godot/imported/fx_buff.png-8512407d525d3fd228618fa858ecde43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png new file mode 100644 index 0000000..73f6e66 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png.import new file mode 100644 index 0000000..cddc4cc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxrb4xverqqlq" +path="res://.godot/imported/fx_carddraw.png-ef43e6eb6b3f88d8244f4bf26b7048c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw.png" +dest_files=["res://.godot/imported/fx_carddraw.png-ef43e6eb6b3f88d8244f4bf26b7048c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png new file mode 100644 index 0000000..eba1431 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png.import new file mode 100644 index 0000000..5ac6059 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://necim6ja3gy8" +path="res://.godot/imported/fx_carddraw@2x.png-ff6cb48367d47f986251a1493563d9d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_carddraw@2x.png" +dest_files=["res://.godot/imported/fx_carddraw@2x.png-ff6cb48367d47f986251a1493563d9d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png new file mode 100644 index 0000000..8f60c7a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png.import new file mode 100644 index 0000000..3312f2f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce3u4xieq2ggj" +path="res://.godot/imported/fx_chainlightning.png-012b1a16c9e83b7fc796e6b3258173cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_chainlightning.png" +dest_files=["res://.godot/imported/fx_chainlightning.png-012b1a16c9e83b7fc796e6b3258173cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png new file mode 100644 index 0000000..dc7272e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png.import new file mode 100644 index 0000000..92d335e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://th317sxkxgxl" +path="res://.godot/imported/fx_clawslash.png-7f308d434bedf32b4a207fc8dd9b9835.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_clawslash.png" +dest_files=["res://.godot/imported/fx_clawslash.png-7f308d434bedf32b4a207fc8dd9b9835.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png new file mode 100644 index 0000000..f34b621 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png.import new file mode 100644 index 0000000..6188016 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnwxhfugjbdv2" +path="res://.godot/imported/fx_cleanse.png-d57e25565ac70889eab07a5370b2b1dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_cleanse.png" +dest_files=["res://.godot/imported/fx_cleanse.png-d57e25565ac70889eab07a5370b2b1dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png new file mode 100644 index 0000000..3254cbc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png.import new file mode 100644 index 0000000..cbfb87d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1rcdt5che7w2" +path="res://.godot/imported/fx_collision.png-01ff9c7674cdd6a45529aabb7219117f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collision.png" +dest_files=["res://.godot/imported/fx_collision.png-01ff9c7674cdd6a45529aabb7219117f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png new file mode 100644 index 0000000..d70ca53 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png.import new file mode 100644 index 0000000..42a028d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdkm52g6l1crv" +path="res://.godot/imported/fx_collisionsparkgreen.png-3c436656bf8e4a1644ef79f602b0fcb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkgreen.png" +dest_files=["res://.godot/imported/fx_collisionsparkgreen.png-3c436656bf8e4a1644ef79f602b0fcb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png new file mode 100644 index 0000000..5012907 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png.import new file mode 100644 index 0000000..7e7f56e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yjox78t0i6fd" +path="res://.godot/imported/fx_collisionsparkpurple.png-c0a77f0c2a136b184037b2ebae151e6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkpurple.png" +dest_files=["res://.godot/imported/fx_collisionsparkpurple.png-c0a77f0c2a136b184037b2ebae151e6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png new file mode 100644 index 0000000..afdfa30 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png.import new file mode 100644 index 0000000..e279f67 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds1sit3el0jwx" +path="res://.godot/imported/fx_collisionsparkred.png-5e444c4a67908c792322855e3c40653c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_collisionsparkred.png" +dest_files=["res://.godot/imported/fx_collisionsparkred.png-5e444c4a67908c792322855e3c40653c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png new file mode 100644 index 0000000..dc22cb2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png.import new file mode 100644 index 0000000..c85dbf1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4w70vc8mwqrk" +path="res://.godot/imported/fx_crossslash.png-e420828f2183fb269e4a3630bab8dd82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash.png" +dest_files=["res://.godot/imported/fx_crossslash.png-e420828f2183fb269e4a3630bab8dd82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png new file mode 100644 index 0000000..bd9022d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png.import new file mode 100644 index 0000000..0aeddfd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2x887a5hlf0v" +path="res://.godot/imported/fx_crossslash_x.png-4d590fb34bb89e21976a42ddc2c5a435.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_crossslash_x.png" +dest_files=["res://.godot/imported/fx_crossslash_x.png-4d590fb34bb89e21976a42ddc2c5a435.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png new file mode 100644 index 0000000..ffd59b4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png.import new file mode 100644 index 0000000..f24fb5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsvksrx6tnnlw" +path="res://.godot/imported/fx_damagedecal.png-8f252a0bafdee593c3d08820c6d894f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal.png" +dest_files=["res://.godot/imported/fx_damagedecal.png-8f252a0bafdee593c3d08820c6d894f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png new file mode 100644 index 0000000..5c29659 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png.import new file mode 100644 index 0000000..0c1c847 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8rnyebyunx8r" +path="res://.godot/imported/fx_damagedecal@2x.png-e456810224f0203606a4cdc197c95007.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_damagedecal@2x.png" +dest_files=["res://.godot/imported/fx_damagedecal@2x.png-e456810224f0203606a4cdc197c95007.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png new file mode 100644 index 0000000..77c8d87 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png.import new file mode 100644 index 0000000..c650a24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wfaalqsksty2" +path="res://.godot/imported/fx_deathplagueicon.png-46bbf9deaf89ba42f5de3b0bc55271e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_deathplagueicon.png" +dest_files=["res://.godot/imported/fx_deathplagueicon.png-46bbf9deaf89ba42f5de3b0bc55271e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png new file mode 100644 index 0000000..ef27e54 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png.import new file mode 100644 index 0000000..b37f8ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlgc4c838k0fg" +path="res://.godot/imported/fx_defense.png-171ea01d5f931fe8853c1a85da1d8af2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_defense.png" +dest_files=["res://.godot/imported/fx_defense.png-171ea01d5f931fe8853c1a85da1d8af2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png new file mode 100644 index 0000000..5017253 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png.import new file mode 100644 index 0000000..8bf2214 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beoov6tt5q37s" +path="res://.godot/imported/fx_disintegrate.png-879e293ea5467214a018b4be04069734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_disintegrate.png" +dest_files=["res://.godot/imported/fx_disintegrate.png-879e293ea5467214a018b4be04069734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png new file mode 100644 index 0000000..3739176 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png.import new file mode 100644 index 0000000..c3ac8e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://decxslew8c1ym" +path="res://.godot/imported/fx_distortion_hex_shield.png-bf2c5f525398e5c3925665f94e61e56b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield.png" +dest_files=["res://.godot/imported/fx_distortion_hex_shield.png-bf2c5f525398e5c3925665f94e61e56b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png new file mode 100644 index 0000000..aa80e02 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png.import new file mode 100644 index 0000000..a517bfd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu06gcb0xp22u" +path="res://.godot/imported/fx_distortion_hex_shield@2x.png-d56eeec13b59a7d7eb59e32eb6659d2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_hex_shield@2x.png" +dest_files=["res://.godot/imported/fx_distortion_hex_shield@2x.png-d56eeec13b59a7d7eb59e32eb6659d2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png new file mode 100644 index 0000000..4ee2116 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png.import new file mode 100644 index 0000000..5c651e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6pe8hp2wggjg" +path="res://.godot/imported/fx_distortion_water_bubble.png-04c2c4b6f8ec61f9a0f0b677a96a4d57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble.png" +dest_files=["res://.godot/imported/fx_distortion_water_bubble.png-04c2c4b6f8ec61f9a0f0b677a96a4d57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png new file mode 100644 index 0000000..ac842df Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png.import new file mode 100644 index 0000000..d5d5717 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn6gcxcbvurn3" +path="res://.godot/imported/fx_distortion_water_bubble@2x.png-4bb2fb21d78801e048c0408dad7ec966.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_distortion_water_bubble@2x.png" +dest_files=["res://.godot/imported/fx_distortion_water_bubble@2x.png-4bb2fb21d78801e048c0408dad7ec966.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png new file mode 100644 index 0000000..96f2b22 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png.import new file mode 100644 index 0000000..e18b522 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2a7y65ogwuag" +path="res://.godot/imported/fx_doom.png-7e8154dfe95099beff12b47635f30600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_doom.png" +dest_files=["res://.godot/imported/fx_doom.png-7e8154dfe95099beff12b47635f30600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png new file mode 100644 index 0000000..a3e458c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png.import new file mode 100644 index 0000000..a1bcf7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du8op2rv6rxvy" +path="res://.godot/imported/fx_electrical.png-3fb9e163907f5a51733cc789e9988359.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electrical.png" +dest_files=["res://.godot/imported/fx_electrical.png-3fb9e163907f5a51733cc789e9988359.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png new file mode 100644 index 0000000..4fa5b6e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png.import new file mode 100644 index 0000000..e491066 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3kptken03vb4" +path="res://.godot/imported/fx_electricsphere.png-07d03901a3fa8bd6d3545f0b6f4cf908.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_electricsphere.png" +dest_files=["res://.godot/imported/fx_electricsphere.png-07d03901a3fa8bd6d3545f0b6f4cf908.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png new file mode 100644 index 0000000..d2d48c5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png.import new file mode 100644 index 0000000..0a08915 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwcu4nbunctkf" +path="res://.godot/imported/fx_energyhaloground.png-d52567c16f0763305b00513e7f6a7eda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_energyhaloground.png" +dest_files=["res://.godot/imported/fx_energyhaloground.png-d52567c16f0763305b00513e7f6a7eda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png new file mode 100644 index 0000000..db8f66b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png.import new file mode 100644 index 0000000..04eb07e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwoccrtw83nmh" +path="res://.godot/imported/fx_explosionblue.png-08e5f379ed1883609508bfbb5f8ee622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblue.png" +dest_files=["res://.godot/imported/fx_explosionblue.png-08e5f379ed1883609508bfbb5f8ee622.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png new file mode 100644 index 0000000..0108fda Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png.import new file mode 100644 index 0000000..799f7a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6os8r06dbfsc" +path="res://.godot/imported/fx_explosionblueelectrical.png-ff0dc4c1e8821e0c01cfb811d4e20aa5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionblueelectrical.png" +dest_files=["res://.godot/imported/fx_explosionblueelectrical.png-ff0dc4c1e8821e0c01cfb811d4e20aa5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png new file mode 100644 index 0000000..676d6f3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png.import new file mode 100644 index 0000000..f5ed75d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l4bn3b1v6eq4" +path="res://.godot/imported/fx_explosiongreenelectrical.png-3c676f78c404381d3960e9942b8bb608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosiongreenelectrical.png" +dest_files=["res://.godot/imported/fx_explosiongreenelectrical.png-3c676f78c404381d3960e9942b8bb608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png new file mode 100644 index 0000000..57011c3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png.import new file mode 100644 index 0000000..7c8c274 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diibufmp8qawl" +path="res://.godot/imported/fx_explosionorangesmoke.png-ee5889e8bd4065dcb2f5fec8f5c61919.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionorangesmoke.png" +dest_files=["res://.godot/imported/fx_explosionorangesmoke.png-ee5889e8bd4065dcb2f5fec8f5c61919.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png new file mode 100644 index 0000000..4f86a01 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png.import new file mode 100644 index 0000000..df410a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pqjb00jjcn6f" +path="res://.godot/imported/fx_explosionpurplesmoke.png-c2fd6e57f3e0a4eeb6761154c4da711a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionpurplesmoke.png" +dest_files=["res://.godot/imported/fx_explosionpurplesmoke.png-c2fd6e57f3e0a4eeb6761154c4da711a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png new file mode 100644 index 0000000..33137c0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png.import new file mode 100644 index 0000000..590a0a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bldu0g1jn743m" +path="res://.godot/imported/fx_explosionredelectrical.png-fb6c5162fd828cfaa960567a9a03d71c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionredelectrical.png" +dest_files=["res://.godot/imported/fx_explosionredelectrical.png-fb6c5162fd828cfaa960567a9a03d71c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png new file mode 100644 index 0000000..a3e458c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png.import new file mode 100644 index 0000000..a56788a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwv8qv7551dll" +path="res://.godot/imported/fx_explosionyellowelectrical.png-23beb349fdc32400d9c146765cd2a36e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_explosionyellowelectrical.png" +dest_files=["res://.godot/imported/fx_explosionyellowelectrical.png-23beb349fdc32400d9c146765cd2a36e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png new file mode 100644 index 0000000..18ceb35 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png.import new file mode 100644 index 0000000..969306f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk4mcsi8cvpji" +path="res://.godot/imported/fx_f1_aperionssurge.png-5b9456dd3d6a48e46eb6b55043496323.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aperionssurge.png" +dest_files=["res://.godot/imported/fx_f1_aperionssurge.png-5b9456dd3d6a48e46eb6b55043496323.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png new file mode 100644 index 0000000..f473553 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png.import new file mode 100644 index 0000000..ae832a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vkodm0h7jmgo" +path="res://.godot/imported/fx_f1_aurynnexus.png-73cf53380f3a3345b77f3ce7029a042b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_aurynnexus.png" +dest_files=["res://.godot/imported/fx_f1_aurynnexus.png-73cf53380f3a3345b77f3ce7029a042b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png new file mode 100644 index 0000000..186b5b0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png.import new file mode 100644 index 0000000..6dca0b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqx20w08qso08" +path="res://.godot/imported/fx_f1_bbs_afterglow.png-9d0b81ae1c1a0110df3154b2e8727630.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_afterglow.png" +dest_files=["res://.godot/imported/fx_f1_bbs_afterglow.png-9d0b81ae1c1a0110df3154b2e8727630.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png new file mode 100644 index 0000000..8e44634 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png.import new file mode 100644 index 0000000..2033403 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsyagblbpvryv" +path="res://.godot/imported/fx_f1_bbs_kingsguard.png-bbfa17f0f352d629ad4bd9297809c562.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_kingsguard.png" +dest_files=["res://.godot/imported/fx_f1_bbs_kingsguard.png-bbfa17f0f352d629ad4bd9297809c562.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png new file mode 100644 index 0000000..babe550 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png.import new file mode 100644 index 0000000..eb2629d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://css81mceancyw" +path="res://.godot/imported/fx_f1_bbs_roar.png-b87483b8f91e07105e2467e99f4d1fb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_bbs_roar.png" +dest_files=["res://.godot/imported/fx_f1_bbs_roar.png-b87483b8f91e07105e2467e99f4d1fb2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png new file mode 100644 index 0000000..b824539 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png.import new file mode 100644 index 0000000..fcf9e54 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmgfjh1sxt0gh" +path="res://.godot/imported/fx_f1_casterprojectile.png-1a3d40722f08e9bee056cc45feaef2e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_casterprojectile.png" +dest_files=["res://.godot/imported/fx_f1_casterprojectile.png-1a3d40722f08e9bee056cc45feaef2e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png new file mode 100644 index 0000000..5bfd2f8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png.import new file mode 100644 index 0000000..ac72cfa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhkshsu1w0h8x" +path="res://.godot/imported/fx_f1_circlelife.png-94091564341ee0f341e5f2a80ec1cc7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_circlelife.png" +dest_files=["res://.godot/imported/fx_f1_circlelife.png-94091564341ee0f341e5f2a80ec1cc7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png new file mode 100644 index 0000000..6b9ec48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png.import new file mode 100644 index 0000000..b614c3e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c67wqo5a3gewj" +path="res://.godot/imported/fx_f1_decimate.png-f563d12bd0a4451a4c58f416ea52911b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_decimate.png" +dest_files=["res://.godot/imported/fx_f1_decimate.png-f563d12bd0a4451a4c58f416ea52911b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png new file mode 100644 index 0000000..23e921b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png.import new file mode 100644 index 0000000..133007e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf06w1k7jgg0k" +path="res://.godot/imported/fx_f1_divinebond.png-ddddf89399b09458f210e12eb22cf6b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_divinebond.png" +dest_files=["res://.godot/imported/fx_f1_divinebond.png-ddddf89399b09458f210e12eb22cf6b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png new file mode 100644 index 0000000..19612d6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png.import new file mode 100644 index 0000000..449eb4c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyinmck60wwyb" +path="res://.godot/imported/fx_f1_hallowedground.png-5a199cfb0807a76fd65d0531cd2c37cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_hallowedground.png" +dest_files=["res://.godot/imported/fx_f1_hallowedground.png-5a199cfb0807a76fd65d0531cd2c37cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png new file mode 100644 index 0000000..652f3d1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png.import new file mode 100644 index 0000000..dca1b5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdu73bqbcnth2" +path="res://.godot/imported/fx_f1_inmolation.png-9f5a01f08d553e87acbb958d153e8a63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_inmolation.png" +dest_files=["res://.godot/imported/fx_f1_inmolation.png-9f5a01f08d553e87acbb958d153e8a63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png new file mode 100644 index 0000000..a5cbe00 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png.import new file mode 100644 index 0000000..50bdaec --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cevts3dfvfjb2" +path="res://.godot/imported/fx_f1_lasting_judgment.png-f92bcab2f85ede2f602dc4674638d1a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lasting_judgment.png" +dest_files=["res://.godot/imported/fx_f1_lasting_judgment.png-f92bcab2f85ede2f602dc4674638d1a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png new file mode 100644 index 0000000..14d1146 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png.import new file mode 100644 index 0000000..717b105 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2l7p6jwe525y" +path="res://.godot/imported/fx_f1_lionheartblessing.png-714ca22bc8dd8181a1e8cbb7ea2657ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_lionheartblessing.png" +dest_files=["res://.godot/imported/fx_f1_lionheartblessing.png-714ca22bc8dd8181a1e8cbb7ea2657ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png new file mode 100644 index 0000000..598785a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png.import new file mode 100644 index 0000000..afbd9c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl6mv0rb3pjfh" +path="res://.godot/imported/fx_f1_martyrdom.png-e6812ede726468d7a72e69e762f5a074.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_martyrdom.png" +dest_files=["res://.godot/imported/fx_f1_martyrdom.png-e6812ede726468d7a72e69e762f5a074.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png new file mode 100644 index 0000000..c037f3a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png.import new file mode 100644 index 0000000..e6f2b2d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb73wspf7anfw" +path="res://.godot/imported/fx_f1_skyphalanx.png-ad3aa86813a1235a0722968ca2a7f0ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_skyphalanx.png" +dest_files=["res://.godot/imported/fx_f1_skyphalanx.png-ad3aa86813a1235a0722968ca2a7f0ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png new file mode 100644 index 0000000..2dbcee4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png.import new file mode 100644 index 0000000..06bcb96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clk0rg3evaef3" +path="res://.godot/imported/fx_f1_sunbloom.png-79c6fb031c1627abe9db41135242a9a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_sunbloom.png" +dest_files=["res://.godot/imported/fx_f1_sunbloom.png-79c6fb031c1627abe9db41135242a9a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png new file mode 100644 index 0000000..5d466e0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png.import new file mode 100644 index 0000000..dcae422 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdm2hk6r3dhph" +path="res://.godot/imported/fx_f1_truestrike.png-c7fc187a37df72f1ea5d804797b2ab5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_truestrike.png" +dest_files=["res://.godot/imported/fx_f1_truestrike.png-c7fc187a37df72f1ea5d804797b2ab5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png new file mode 100644 index 0000000..63b95c6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png.import new file mode 100644 index 0000000..c37cc8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd23khnijcs8o" +path="res://.godot/imported/fx_f1_warsurge.png-66fa1fba516a8751b60462a5389853b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f1_warsurge.png" +dest_files=["res://.godot/imported/fx_f1_warsurge.png-66fa1fba516a8751b60462a5389853b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png new file mode 100644 index 0000000..3231053 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png.import new file mode 100644 index 0000000..978acc7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3iy08crmrrjw" +path="res://.godot/imported/fx_f2.png-10c7041c28a1c1c178ecdc38729784dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2.png" +dest_files=["res://.godot/imported/fx_f2.png-10c7041c28a1c1c178ecdc38729784dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png new file mode 100644 index 0000000..6c44fcc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png.import new file mode 100644 index 0000000..e5f3f74 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbi22akrq7o8k" +path="res://.godot/imported/fx_f2_ancestralpact.png-5d088be43404a0e00f8e2cb99b8a48f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_ancestralpact.png" +dest_files=["res://.godot/imported/fx_f2_ancestralpact.png-5d088be43404a0e00f8e2cb99b8a48f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png new file mode 100644 index 0000000..f124681 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png.import new file mode 100644 index 0000000..a57c3fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxgn85d0yso1r" +path="res://.godot/imported/fx_f2_backstab.png-0436a1aa746bb86b8ee8aca141e1606e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_backstab.png" +dest_files=["res://.godot/imported/fx_f2_backstab.png-0436a1aa746bb86b8ee8aca141e1606e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png new file mode 100644 index 0000000..ad244f8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png.import new file mode 100644 index 0000000..7b47df0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj10lb02qp23a" +path="res://.godot/imported/fx_f2_bbs_arcaneheart.png-10b6d21abee3986d12bb17c22bae6285.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_arcaneheart.png" +dest_files=["res://.godot/imported/fx_f2_bbs_arcaneheart.png-10b6d21abee3986d12bb17c22bae6285.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png new file mode 100644 index 0000000..737d07b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png.import new file mode 100644 index 0000000..411055b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://752naa4ybnyf" +path="res://.godot/imported/fx_f2_bbs_blink.png-c0186dade1268d647a56cb42b71ccae8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_blink.png" +dest_files=["res://.godot/imported/fx_f2_bbs_blink.png-c0186dade1268d647a56cb42b71ccae8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png new file mode 100644 index 0000000..b12a60b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png.import new file mode 100644 index 0000000..c64c149 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8uo2dh1hu4mj" +path="res://.godot/imported/fx_f2_bbs_spellsword.png-11c5ae724b2b54f0a218bef52376a48f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_bbs_spellsword.png" +dest_files=["res://.godot/imported/fx_f2_bbs_spellsword.png-11c5ae724b2b54f0a218bef52376a48f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png new file mode 100644 index 0000000..d03b8ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png.import new file mode 100644 index 0000000..c08d526 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ptuagap5lbu" +path="res://.godot/imported/fx_f2_deathstrikeseal.png-6a7435f2f9d5d93cb088cb4737a639fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_deathstrikeseal.png" +dest_files=["res://.godot/imported/fx_f2_deathstrikeseal.png-6a7435f2f9d5d93cb088cb4737a639fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png new file mode 100644 index 0000000..6ae29ba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png.import new file mode 100644 index 0000000..3494821 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6jlfb6kpyfao" +path="res://.godot/imported/fx_f2_eightgates_bluelotus.png-40d45aafb21a9fbc7b747ab41623fe06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_bluelotus.png" +dest_files=["res://.godot/imported/fx_f2_eightgates_bluelotus.png-40d45aafb21a9fbc7b747ab41623fe06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png new file mode 100644 index 0000000..ef036c2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png.import new file mode 100644 index 0000000..2d68f20 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1n4um1561mjs" +path="res://.godot/imported/fx_f2_eightgates_purpleflame.png-3d3b4a362f2c7c4d1e30674fb7b39558.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_purpleflame.png" +dest_files=["res://.godot/imported/fx_f2_eightgates_purpleflame.png-3d3b4a362f2c7c4d1e30674fb7b39558.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png new file mode 100644 index 0000000..3765e8b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png.import new file mode 100644 index 0000000..2eb48dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by6wpdc5hpuud" +path="res://.godot/imported/fx_f2_eightgates_teallotus.png-df8ec53aae7500aa73418a6fb6ba8bcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_eightgates_teallotus.png" +dest_files=["res://.godot/imported/fx_f2_eightgates_teallotus.png-df8ec53aae7500aa73418a6fb6ba8bcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png new file mode 100644 index 0000000..37657d4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png.import new file mode 100644 index 0000000..b51fcf2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvcddycvh7ir0" +path="res://.godot/imported/fx_f2_heavenseclipse.png-07eb0255e84a851d707494892e8f37fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_heavenseclipse.png" +dest_files=["res://.godot/imported/fx_f2_heavenseclipse.png-07eb0255e84a851d707494892e8f37fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png new file mode 100644 index 0000000..4abea8f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png.import new file mode 100644 index 0000000..7a19cb8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://braw8byvcyma" +path="res://.godot/imported/fx_f2_innerfocus.png-f188a13adfe239276573945d6c4a0cfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_innerfocus.png" +dest_files=["res://.godot/imported/fx_f2_innerfocus.png-f188a13adfe239276573945d6c4a0cfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png new file mode 100644 index 0000000..7af1a65 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png.import new file mode 100644 index 0000000..ccaa29b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c82lqmrnaslvf" +path="res://.godot/imported/fx_f2_killingedge.png-ddf20998d63ea0ee0e39125cce32c2ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_killingedge.png" +dest_files=["res://.godot/imported/fx_f2_killingedge.png-ddf20998d63ea0ee0e39125cce32c2ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png new file mode 100644 index 0000000..7b5396d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png.import new file mode 100644 index 0000000..e215b1a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clxgo880lhagv" +path="res://.godot/imported/fx_f2_koanofhorns.png-5dfd904c0cb5fa83ecb5b2ccda06f240.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_koanofhorns.png" +dest_files=["res://.godot/imported/fx_f2_koanofhorns.png-5dfd904c0cb5fa83ecb5b2ccda06f240.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png new file mode 100644 index 0000000..1295e15 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png.import new file mode 100644 index 0000000..0320b13 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbwj668pg5yv6" +path="res://.godot/imported/fx_f2_manavortex.png-6dc90c8f8422b3feac10028ef5cdf997.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_manavortex.png" +dest_files=["res://.godot/imported/fx_f2_manavortex.png-6dc90c8f8422b3feac10028ef5cdf997.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png new file mode 100644 index 0000000..a86303c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png.import new file mode 100644 index 0000000..645db98 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djw8goaxogrqn" +path="res://.godot/imported/fx_f2_mistdragonseal.png-3685824aa9b2fc36fd3e70ab1ac33d25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_mistdragonseal.png" +dest_files=["res://.godot/imported/fx_f2_mistdragonseal.png-3685824aa9b2fc36fd3e70ab1ac33d25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png new file mode 100644 index 0000000..464a801 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png.import new file mode 100644 index 0000000..59972f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4glb5wbcusey" +path="res://.godot/imported/fx_f2_onyxbearseal.png-f2762835c1e149a2e069752ac8d23d16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_onyxbearseal.png" +dest_files=["res://.godot/imported/fx_f2_onyxbearseal.png-f2762835c1e149a2e069752ac8d23d16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png new file mode 100644 index 0000000..a497559 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png.import new file mode 100644 index 0000000..8e68771 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4bnm1fowo7ny" +path="res://.godot/imported/fx_f2_phoenixfire.png-2ffe4472e7c2677fb573918567cb7842.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_phoenixfire.png" +dest_files=["res://.godot/imported/fx_f2_phoenixfire.png-2ffe4472e7c2677fb573918567cb7842.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png new file mode 100644 index 0000000..b420982 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png.import new file mode 100644 index 0000000..791abcf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5eg24s5mk7nv" +path="res://.godot/imported/fx_f2_saberspineseal.png-41dad314d963b339f76cc340e43dd95d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_saberspineseal.png" +dest_files=["res://.godot/imported/fx_f2_saberspineseal.png-41dad314d963b339f76cc340e43dd95d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png new file mode 100644 index 0000000..332277b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png.import new file mode 100644 index 0000000..b891259 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn3tymhu2ecjq" +path="res://.godot/imported/fx_f2_spiraltechnique02.png-80cf7ed914e573318c64caa37ec3237a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_spiraltechnique02.png" +dest_files=["res://.godot/imported/fx_f2_spiraltechnique02.png-80cf7ed914e573318c64caa37ec3237a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png new file mode 100644 index 0000000..7e1359a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png.import new file mode 100644 index 0000000..52df118 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d34jewkdmbssw" +path="res://.godot/imported/fx_f2_teleport.png-23f5e1a0a451c854d08e5d12cccb5a85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_teleport.png" +dest_files=["res://.godot/imported/fx_f2_teleport.png-23f5e1a0a451c854d08e5d12cccb5a85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png new file mode 100644 index 0000000..d90808c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png.import new file mode 100644 index 0000000..7f9f36b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cookw67a2m3bx" +path="res://.godot/imported/fx_f2_twilightreiki.png-85733e5ae203fd1c4797c2783c6bd87e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twilightreiki.png" +dest_files=["res://.godot/imported/fx_f2_twilightreiki.png-85733e5ae203fd1c4797c2783c6bd87e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png new file mode 100644 index 0000000..fbe9f09 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png.import new file mode 100644 index 0000000..320281f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1osl68iqk5cy" +path="res://.godot/imported/fx_f2_twinstrike.png-92d1046ed417b60c8ab56049d12f5ece.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike.png" +dest_files=["res://.godot/imported/fx_f2_twinstrike.png-92d1046ed417b60c8ab56049d12f5ece.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png new file mode 100644 index 0000000..8c5e4f2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png.import new file mode 100644 index 0000000..7fa329b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlp6cv87duodv" +path="res://.godot/imported/fx_f2_twinstrike_part2.png-32ace880b8506194111e3d8a1a7f9638.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f2_twinstrike_part2.png" +dest_files=["res://.godot/imported/fx_f2_twinstrike_part2.png-32ace880b8506194111e3d8a1a7f9638.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png new file mode 100644 index 0000000..82e4629 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png.import new file mode 100644 index 0000000..2296bdf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfqlsccgmrdh7" +path="res://.godot/imported/fx_f3_aurorastears.png-2cbabf805f83baa0282b258b6930562e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_aurorastears.png" +dest_files=["res://.godot/imported/fx_f3_aurorastears.png-2cbabf805f83baa0282b258b6930562e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png new file mode 100644 index 0000000..4c8549d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png.import new file mode 100644 index 0000000..2be7527 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqlpuce8nxhiu" +path="res://.godot/imported/fx_f3_bbs_hex.png-bc230040b05d2158eab69a3859c7ffe7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_hex.png" +dest_files=["res://.godot/imported/fx_f3_bbs_hex.png-bc230040b05d2158eab69a3859c7ffe7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png new file mode 100644 index 0000000..01e9731 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png.import new file mode 100644 index 0000000..6f5838c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3xg3hue8t43n" +path="res://.godot/imported/fx_f3_bbs_ironshroud.png-30cec7b33a13378e3f05f186e1677072.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_ironshroud.png" +dest_files=["res://.godot/imported/fx_f3_bbs_ironshroud.png-30cec7b33a13378e3f05f186e1677072.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png new file mode 100644 index 0000000..27114ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png.import new file mode 100644 index 0000000..5b84279 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eptqlfmuhcqb" +path="res://.godot/imported/fx_f3_bbs_psyonicstrike.png-29ca0f3dd01d8d0eed36f9138fc3bfff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_bbs_psyonicstrike.png" +dest_files=["res://.godot/imported/fx_f3_bbs_psyonicstrike.png-29ca0f3dd01d8d0eed36f9138fc3bfff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png new file mode 100644 index 0000000..ebeb8af Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png.import new file mode 100644 index 0000000..79d1864 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tqxsv47o40l1" +path="res://.godot/imported/fx_f3_blast.png-7bec07837fcfae07ef5d77746e2191a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blast.png" +dest_files=["res://.godot/imported/fx_f3_blast.png-7bec07837fcfae07ef5d77746e2191a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png new file mode 100644 index 0000000..1a1e929 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png.import new file mode 100644 index 0000000..8d4c439 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cucvj4rd5r01i" +path="res://.godot/imported/fx_f3_blaststarfire.png-70670f7f0d35dc3e9403470981a08ffc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blaststarfire.png" +dest_files=["res://.godot/imported/fx_f3_blaststarfire.png-70670f7f0d35dc3e9403470981a08ffc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png new file mode 100644 index 0000000..08f89a4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png.import new file mode 100644 index 0000000..9cdc34c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdxv5wm4typkr" +path="res://.godot/imported/fx_f3_blindscorch.png-1865010bd37dcf68ed477d22113a87e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_blindscorch.png" +dest_files=["res://.godot/imported/fx_f3_blindscorch.png-1865010bd37dcf68ed477d22113a87e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png new file mode 100644 index 0000000..f854c3f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png.import new file mode 100644 index 0000000..71d4b99 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqk6cswusywsn" +path="res://.godot/imported/fx_f3_boneswarm.png-2405869c339b3d7d3f8b0912ffa409df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_boneswarm.png" +dest_files=["res://.godot/imported/fx_f3_boneswarm.png-2405869c339b3d7d3f8b0912ffa409df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png new file mode 100644 index 0000000..6ee9435 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png.import new file mode 100644 index 0000000..7782b82 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7nd7ogtlw1r" +path="res://.godot/imported/fx_f3_cataclysmicfault.png-9dcf4d32d82a3634269cfe1035f26db3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cataclysmicfault.png" +dest_files=["res://.godot/imported/fx_f3_cataclysmicfault.png-9dcf4d32d82a3634269cfe1035f26db3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png new file mode 100644 index 0000000..73c6a3d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png.import new file mode 100644 index 0000000..64809f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cogpa3g0u1q1e" +path="res://.godot/imported/fx_f3_cosmicflesh.png-c33a4650eaba27090e3164c275b67dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_cosmicflesh.png" +dest_files=["res://.godot/imported/fx_f3_cosmicflesh.png-c33a4650eaba27090e3164c275b67dbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png new file mode 100644 index 0000000..2f35426 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png.import new file mode 100644 index 0000000..3f7b3a3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csu8uyupx68jo" +path="res://.godot/imported/fx_f3_dominatewill.png-cfb7d39b4614f8c6f3e7ddb699afa164.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_dominatewill.png" +dest_files=["res://.godot/imported/fx_f3_dominatewill.png-cfb7d39b4614f8c6f3e7ddb699afa164.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png new file mode 100644 index 0000000..b069dbb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png.import new file mode 100644 index 0000000..9c911b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csx8aha74ki2q" +path="res://.godot/imported/fx_f3_drainmorale.png-cdc1aef3fe81b02852e64425295bdc75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_drainmorale.png" +dest_files=["res://.godot/imported/fx_f3_drainmorale.png-cdc1aef3fe81b02852e64425295bdc75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png new file mode 100644 index 0000000..9887ff1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png.import new file mode 100644 index 0000000..013cb39 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mis7pev7euhh" +path="res://.godot/imported/fx_f3_fountainofyouth.png-e72b38c784b27ae4faf90aa192a619ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_fountainofyouth.png" +dest_files=["res://.godot/imported/fx_f3_fountainofyouth.png-e72b38c784b27ae4faf90aa192a619ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png new file mode 100644 index 0000000..b30b0e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png.import new file mode 100644 index 0000000..0158cfe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7veuqyva5t1m" +path="res://.godot/imported/fx_f3_rashascurse.png-e9dedf46aeb8f2d3f99b1654f8da05dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_rashascurse.png" +dest_files=["res://.godot/imported/fx_f3_rashascurse.png-e9dedf46aeb8f2d3f99b1654f8da05dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png new file mode 100644 index 0000000..2182252 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png.import new file mode 100644 index 0000000..b388233 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bma71ppp0vbdr" +path="res://.godot/imported/fx_f3_sandportal.png-f6f0f8f39b81059707b107defd6d06aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_sandportal.png" +dest_files=["res://.godot/imported/fx_f3_sandportal.png-f6f0f8f39b81059707b107defd6d06aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png new file mode 100644 index 0000000..98e2468 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png.import new file mode 100644 index 0000000..40a07fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dot433jdrqy3n" +path="res://.godot/imported/fx_f3_scionsfirstwish.png-8918dd48718b7678b1b7bc282115f773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsfirstwish.png" +dest_files=["res://.godot/imported/fx_f3_scionsfirstwish.png-8918dd48718b7678b1b7bc282115f773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png new file mode 100644 index 0000000..ebc5575 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png.import new file mode 100644 index 0000000..251794e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do3ellcmqt22q" +path="res://.godot/imported/fx_f3_scionssecondwish.png-23f75e51158ba882f76d3cddae10d3be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionssecondwish.png" +dest_files=["res://.godot/imported/fx_f3_scionssecondwish.png-23f75e51158ba882f76d3cddae10d3be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png new file mode 100644 index 0000000..a996a56 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png.import new file mode 100644 index 0000000..985e6ca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bov7hbqnvcacg" +path="res://.godot/imported/fx_f3_scionsthirdwish.png-d946359a0d4e0ebb4df21430bcd96a29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_scionsthirdwish.png" +dest_files=["res://.godot/imported/fx_f3_scionsthirdwish.png-d946359a0d4e0ebb4df21430bcd96a29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png new file mode 100644 index 0000000..8b617bc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png.import new file mode 100644 index 0000000..bf88a77 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqvx2rhcks7qh" +path="res://.godot/imported/fx_f3_starsfury.png-da5bf2a94cf540c4dfb51d683a3aaf31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f3_starsfury.png" +dest_files=["res://.godot/imported/fx_f3_starsfury.png-da5bf2a94cf540c4dfb51d683a3aaf31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png new file mode 100644 index 0000000..10ee8f9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png.import new file mode 100644 index 0000000..5bed62d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i010ngagerjg" +path="res://.godot/imported/fx_f4_bbs_abyssalscar.png-6fe8c943e2e0f4b8d2159c46969de20d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_abyssalscar.png" +dest_files=["res://.godot/imported/fx_f4_bbs_abyssalscar.png-6fe8c943e2e0f4b8d2159c46969de20d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png new file mode 100644 index 0000000..dca725a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png.import new file mode 100644 index 0000000..9d6e105 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db78gruy4t5p3" +path="res://.godot/imported/fx_f4_bbs_husk.png-676155095290936515dc0f05b85b37b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_husk.png" +dest_files=["res://.godot/imported/fx_f4_bbs_husk.png-676155095290936515dc0f05b85b37b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png new file mode 100644 index 0000000..002e63a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png.import new file mode 100644 index 0000000..05c969b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlytxnr5achto" +path="res://.godot/imported/fx_f4_bbs_shadowspawn.png-cae427ae8a24c14f70fadbc6dce58009.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_bbs_shadowspawn.png" +dest_files=["res://.godot/imported/fx_f4_bbs_shadowspawn.png-cae427ae8a24c14f70fadbc6dce58009.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png new file mode 100644 index 0000000..369a77f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png.import new file mode 100644 index 0000000..b47cce1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qpoqcmw8sqfi" +path="res://.godot/imported/fx_f4_consumingrebirth.png-30106194abafe60875f0b404c4d2572b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_consumingrebirth.png" +dest_files=["res://.godot/imported/fx_f4_consumingrebirth.png-30106194abafe60875f0b404c4d2572b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png new file mode 100644 index 0000000..9ac5b0a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png.import new file mode 100644 index 0000000..40bd37b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1ph76xsdpww3" +path="res://.godot/imported/fx_f4_curseofagony.png-8fed5d043ef079564d671c891aa1f2a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_curseofagony.png" +dest_files=["res://.godot/imported/fx_f4_curseofagony.png-8fed5d043ef079564d671c891aa1f2a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png new file mode 100644 index 0000000..699403c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png.import new file mode 100644 index 0000000..7e57fef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctfkpfkuyvdhh" +path="res://.godot/imported/fx_f4_daemoniclure.png-46c2eff96039f93b9de49fe95eccf304.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_daemoniclure.png" +dest_files=["res://.godot/imported/fx_f4_daemoniclure.png-46c2eff96039f93b9de49fe95eccf304.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png new file mode 100644 index 0000000..1785075 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png.import new file mode 100644 index 0000000..0c4a31c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cho57xe2svpmj" +path="res://.godot/imported/fx_f4_darkfiresacrifice.png-f80698cac32c13f418d458023c5c0052.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiresacrifice.png" +dest_files=["res://.godot/imported/fx_f4_darkfiresacrifice.png-f80698cac32c13f418d458023c5c0052.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png new file mode 100644 index 0000000..cc3c2e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png.import new file mode 100644 index 0000000..6d9b1a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p5yhclx2d507" +path="res://.godot/imported/fx_f4_darkfiretransformation.png-3c9430be6be2ad0922d0300325560dbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkfiretransformation.png" +dest_files=["res://.godot/imported/fx_f4_darkfiretransformation.png-3c9430be6be2ad0922d0300325560dbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png new file mode 100644 index 0000000..d24dad3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png.import new file mode 100644 index 0000000..df68644 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxgn28qpucjel" +path="res://.godot/imported/fx_f4_darkseed.png-45dfcf16dc10abe84403f31a98617a94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_darkseed.png" +dest_files=["res://.godot/imported/fx_f4_darkseed.png-45dfcf16dc10abe84403f31a98617a94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png new file mode 100644 index 0000000..fc52b85 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png.import new file mode 100644 index 0000000..e795bf2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbw6j7ao7ir16" +path="res://.godot/imported/fx_f4_deathfire_crescendo.png-c75a7b36298376d5377c2d43cafab5fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_deathfire_crescendo.png" +dest_files=["res://.godot/imported/fx_f4_deathfire_crescendo.png-c75a7b36298376d5377c2d43cafab5fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png new file mode 100644 index 0000000..88cb971 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png.import new file mode 100644 index 0000000..5a90f4e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://der0hebd6h4l5" +path="res://.godot/imported/fx_f4_doom.png-7815c8a67dc1d75309dc12969182c517.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_doom.png" +dest_files=["res://.godot/imported/fx_f4_doom.png-7815c8a67dc1d75309dc12969182c517.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png new file mode 100644 index 0000000..c2aa83d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png.import new file mode 100644 index 0000000..f5f9452 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0hwxndwmj30t" +path="res://.godot/imported/fx_f4_nethersummoning.png-342f020563e0c86fc4c63ba8e5a20769.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_nethersummoning.png" +dest_files=["res://.godot/imported/fx_f4_nethersummoning.png-342f020563e0c86fc4c63ba8e5a20769.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png new file mode 100644 index 0000000..89bdc15 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png.import new file mode 100644 index 0000000..15e2a3e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx01capi5e4sl" +path="res://.godot/imported/fx_f4_obliterate.png-1d26afb793274c56d99133e48f654d14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_obliterate.png" +dest_files=["res://.godot/imported/fx_f4_obliterate.png-1d26afb793274c56d99133e48f654d14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png new file mode 100644 index 0000000..87859ef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png.import new file mode 100644 index 0000000..6ea910f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7etijwdmpguv" +path="res://.godot/imported/fx_f4_riteundervault.png-d7213bbe0ea388113d83720f15ddc047.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_riteundervault.png" +dest_files=["res://.godot/imported/fx_f4_riteundervault.png-d7213bbe0ea388113d83720f15ddc047.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png new file mode 100644 index 0000000..d44aeea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png.import new file mode 100644 index 0000000..1ab7460 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3gegnc5sxxbc" +path="res://.godot/imported/fx_f4_shadownova.png-4f76ccc3e3f8739e6a66134d284107fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadownova.png" +dest_files=["res://.godot/imported/fx_f4_shadownova.png-4f76ccc3e3f8739e6a66134d284107fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png new file mode 100644 index 0000000..3a0e736 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png.import new file mode 100644 index 0000000..d206cfe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cin3t1v5pq51e" +path="res://.godot/imported/fx_f4_shadowreflection.png-cdef474539d0c3fbee2ddea20a5127ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_shadowreflection.png" +dest_files=["res://.godot/imported/fx_f4_shadowreflection.png-cdef474539d0c3fbee2ddea20a5127ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png new file mode 100644 index 0000000..43bc1f5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png.import new file mode 100644 index 0000000..e535288 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mwnd270bbca8" +path="res://.godot/imported/fx_f4_soulshatterpact.png-04be83c501cf1af07ee80f464609c19a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_soulshatterpact.png" +dest_files=["res://.godot/imported/fx_f4_soulshatterpact.png-04be83c501cf1af07ee80f464609c19a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png new file mode 100644 index 0000000..c67a3fb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png.import new file mode 100644 index 0000000..209ee03 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pfw8l055hq6x" +path="res://.godot/imported/fx_f4_voidpulse.png-6c0538d062d5dbb180f3242f40b0f2a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_voidpulse.png" +dest_files=["res://.godot/imported/fx_f4_voidpulse.png-6c0538d062d5dbb180f3242f40b0f2a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png new file mode 100644 index 0000000..4837f4c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png.import new file mode 100644 index 0000000..8b68580 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvvhf7k12t66w" +path="res://.godot/imported/fx_f4_wraithlingfury.png-9f73e37bf6273f507c00e26a869963ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f4_wraithlingfury.png" +dest_files=["res://.godot/imported/fx_f4_wraithlingfury.png-9f73e37bf6273f507c00e26a869963ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png new file mode 100644 index 0000000..1d4a4eb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png.import new file mode 100644 index 0000000..db19dee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnmon34nr3sfi" +path="res://.godot/imported/fx_f5_amplification.png-05696154de54a241b87be7b689f44aa8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_amplification.png" +dest_files=["res://.godot/imported/fx_f5_amplification.png-05696154de54a241b87be7b689f44aa8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png new file mode 100644 index 0000000..47eeb94 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png.import new file mode 100644 index 0000000..4674dc7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhxgm521owhjj" +path="res://.godot/imported/fx_f5_bbs_egg.png-435f1787211fa57e2d35423daed4b9dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_egg.png" +dest_files=["res://.godot/imported/fx_f5_bbs_egg.png-435f1787211fa57e2d35423daed4b9dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png new file mode 100644 index 0000000..f906ee8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png.import new file mode 100644 index 0000000..303b7e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbrvl3ax6rghr" +path="res://.godot/imported/fx_f5_bbs_overload.png-16278a3c4a708c517b8917d94e644edf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_overload.png" +dest_files=["res://.godot/imported/fx_f5_bbs_overload.png-16278a3c4a708c517b8917d94e644edf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png new file mode 100644 index 0000000..83d9372 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png.import new file mode 100644 index 0000000..4d60c83 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8hp0h131isqo" +path="res://.godot/imported/fx_f5_bbs_seekingeye.png-1f3cebb5844c693dc6b545005dd2b4fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_bbs_seekingeye.png" +dest_files=["res://.godot/imported/fx_f5_bbs_seekingeye.png-1f3cebb5844c693dc6b545005dd2b4fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png new file mode 100644 index 0000000..ba407e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png.import new file mode 100644 index 0000000..3fdc972 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhdmsoh7spjn" +path="res://.godot/imported/fx_f5_boundedlife.png-03da5a56321db53008fbf7755dbbda43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_boundedlife.png" +dest_files=["res://.godot/imported/fx_f5_boundedlife.png-03da5a56321db53008fbf7755dbbda43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png new file mode 100644 index 0000000..b62cdd7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png.import new file mode 100644 index 0000000..a0d94b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlwrlbjjm3fjq" +path="res://.godot/imported/fx_f5_earthsphere.png-a5825230c0b985757cdd2fb98625e32c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere.png" +dest_files=["res://.godot/imported/fx_f5_earthsphere.png-a5825230c0b985757cdd2fb98625e32c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png new file mode 100644 index 0000000..452b76c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png.import new file mode 100644 index 0000000..a8e555c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn65f04cy5i0b" +path="res://.godot/imported/fx_f5_earthsphere_blue.png-d758483a2e2303577dbff95eb7354c0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_blue.png" +dest_files=["res://.godot/imported/fx_f5_earthsphere_blue.png-d758483a2e2303577dbff95eb7354c0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png new file mode 100644 index 0000000..9b67060 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png.import new file mode 100644 index 0000000..d703a4b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q04e7ho0xb35" +path="res://.godot/imported/fx_f5_earthsphere_orange.png-c24772a6162073dd8468e4945b5fde92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_earthsphere_orange.png" +dest_files=["res://.godot/imported/fx_f5_earthsphere_orange.png-c24772a6162073dd8468e4945b5fde92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png new file mode 100644 index 0000000..41495e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png.import new file mode 100644 index 0000000..6d17e39 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k1t0fsb2x0fi" +path="res://.godot/imported/fx_f5_evolutionaryapex.png-4bea029d8172bfb6d37e711d36179bd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_evolutionaryapex.png" +dest_files=["res://.godot/imported/fx_f5_evolutionaryapex.png-4bea029d8172bfb6d37e711d36179bd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png new file mode 100644 index 0000000..db15edc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png.import new file mode 100644 index 0000000..e4a7a02 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgi3vdpsveysw" +path="res://.godot/imported/fx_f5_flashreincarnation.png-7673c5da3ffa52196f69f9f9f3c7ccb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_flashreincarnation.png" +dest_files=["res://.godot/imported/fx_f5_flashreincarnation.png-7673c5da3ffa52196f69f9f9f3c7ccb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png new file mode 100644 index 0000000..885432a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png.import new file mode 100644 index 0000000..ae41317 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3n7blakwdwnb" +path="res://.godot/imported/fx_f5_fractalreplication.png-2c3d7b0747666dba7e500f738bcad966.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_fractalreplication.png" +dest_files=["res://.godot/imported/fx_f5_fractalreplication.png-2c3d7b0747666dba7e500f738bcad966.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png new file mode 100644 index 0000000..d837f04 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png.import new file mode 100644 index 0000000..83af957 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cff1rf17svu3p" +path="res://.godot/imported/fx_f5_kinectequilibrium.png-0863e76afb8142ac222682d638eb158a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_kinectequilibrium.png" +dest_files=["res://.godot/imported/fx_f5_kinectequilibrium.png-0863e76afb8142ac222682d638eb158a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png new file mode 100644 index 0000000..85ff043 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png.import new file mode 100644 index 0000000..832205d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3na2vu1hdpon" +path="res://.godot/imported/fx_f5_manaburn.png-705363eb7b03051552e88b748794c324.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_manaburn.png" +dest_files=["res://.godot/imported/fx_f5_manaburn.png-705363eb7b03051552e88b748794c324.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png new file mode 100644 index 0000000..f899bcd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png.import new file mode 100644 index 0000000..d502b37 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvqdn8f718yxf" +path="res://.godot/imported/fx_f5_mindsteal.png-7dd60e016aa6f7f0b58b50a04f209d42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_mindsteal.png" +dest_files=["res://.godot/imported/fx_f5_mindsteal.png-7dd60e016aa6f7f0b58b50a04f209d42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png new file mode 100644 index 0000000..9297079 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png.import new file mode 100644 index 0000000..b82b64c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp41x0rb23w" +path="res://.godot/imported/fx_f5_naturalselection.png-5e7b502838f77c27d6c8b951fa7de0df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_naturalselection.png" +dest_files=["res://.godot/imported/fx_f5_naturalselection.png-5e7b502838f77c27d6c8b951fa7de0df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png new file mode 100644 index 0000000..2619755 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png.import new file mode 100644 index 0000000..3aa4118 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccupffqafp6be" +path="res://.godot/imported/fx_f5_primalmojo.png-dbc49c241677ddbd88bcc9e01148b911.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_primalmojo.png" +dest_files=["res://.godot/imported/fx_f5_primalmojo.png-dbc49c241677ddbd88bcc9e01148b911.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png new file mode 100644 index 0000000..ba13dab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png.import new file mode 100644 index 0000000..34c88ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfseqq66x3wqh" +path="res://.godot/imported/fx_f5_tremor.png-57405e38715fa2807acba578703a96c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f5_tremor.png" +dest_files=["res://.godot/imported/fx_f5_tremor.png-57405e38715fa2807acba578703a96c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png new file mode 100644 index 0000000..d70247d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png.import new file mode 100644 index 0000000..d5304ec --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh6qyfohv7k33" +path="res://.godot/imported/fx_f6_bbs_kinectsurge.png-7c6293c1ce53024d5a6991d318f7ad8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_kinectsurge.png" +dest_files=["res://.godot/imported/fx_f6_bbs_kinectsurge.png-7c6293c1ce53024d5a6991d318f7ad8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png new file mode 100644 index 0000000..88b3bda Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png.import new file mode 100644 index 0000000..27b885e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hly58t8k3prh" +path="res://.godot/imported/fx_f6_bbs_stun.png-ae96f40710a8e9b493c6e68134b90f27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_stun.png" +dest_files=["res://.godot/imported/fx_f6_bbs_stun.png-ae96f40710a8e9b493c6e68134b90f27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png new file mode 100644 index 0000000..558ebaf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png.import new file mode 100644 index 0000000..4f42240 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds5d25sx1udpf" +path="res://.godot/imported/fx_f6_bbs_warbird.png-d3634d39458e6d2a6a285eabaaba8b5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_bbs_warbird.png" +dest_files=["res://.godot/imported/fx_f6_bbs_warbird.png-d3634d39458e6d2a6a285eabaaba8b5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png new file mode 100644 index 0000000..345df67 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png.import new file mode 100644 index 0000000..7c14d31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwjwq6cem41ye" +path="res://.godot/imported/fx_f6_chromaticcold.png-a79fc9a8ced9c6ba675b50112040bc4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_chromaticcold.png" +dest_files=["res://.godot/imported/fx_f6_chromaticcold.png-a79fc9a8ced9c6ba675b50112040bc4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png new file mode 100644 index 0000000..4124a4b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png.import new file mode 100644 index 0000000..6c4e5b4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwbwwwpoj5hbc" +path="res://.godot/imported/fx_f6_cryogenesis.png-3f4da050fef782ef88cc66a51b16c91d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_cryogenesis.png" +dest_files=["res://.godot/imported/fx_f6_cryogenesis.png-3f4da050fef782ef88cc66a51b16c91d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png new file mode 100644 index 0000000..4f81adb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png.import new file mode 100644 index 0000000..6d90765 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c62hq2fymyfra" +path="res://.godot/imported/fx_f6_hailstoneprison.png-faacb439b9a669419b3b7d348bd1fb52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_hailstoneprison.png" +dest_files=["res://.godot/imported/fx_f6_hailstoneprison.png-faacb439b9a669419b3b7d348bd1fb52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png new file mode 100644 index 0000000..4a35aa4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png.import new file mode 100644 index 0000000..4c30655 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcb51v8gmcux6" +path="res://.godot/imported/fx_f6_markofsolitude.png-745f861187ba0e489b461b021c011584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_markofsolitude.png" +dest_files=["res://.godot/imported/fx_f6_markofsolitude.png-745f861187ba0e489b461b021c011584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png new file mode 100644 index 0000000..6485ea3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png.import new file mode 100644 index 0000000..706e95c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsfb1rbk3peu4" +path="res://.godot/imported/fx_f6_mesmerize.png-a869154022e39224148fb85b49b467e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_mesmerize.png" +dest_files=["res://.godot/imported/fx_f6_mesmerize.png-a869154022e39224148fb85b49b467e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png new file mode 100644 index 0000000..476c5c0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png.import new file mode 100644 index 0000000..71e8baa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8sj0jllvr6uj" +path="res://.godot/imported/fx_f6_perfectreflection.png-8913e46122c567ad9eab3d81c8a96997.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_perfectreflection.png" +dest_files=["res://.godot/imported/fx_f6_perfectreflection.png-8913e46122c567ad9eab3d81c8a96997.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png new file mode 100644 index 0000000..758dc57 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png.import new file mode 100644 index 0000000..28682b3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2jec6uqxtiyi" +path="res://.godot/imported/fx_f6_spiritofthewild.png-30a375137994ae926c3548f670c7db9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_f6_spiritofthewild.png" +dest_files=["res://.godot/imported/fx_f6_spiritofthewild.png-30a375137994ae926c3548f670c7db9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png new file mode 100644 index 0000000..df0e8ea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png.import new file mode 100644 index 0000000..62e6552 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkyhbrwwfa3m7" +path="res://.godot/imported/fx_fairiefire.png-dada23a4bcdbea8b9b91ed904054a666.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire.png" +dest_files=["res://.godot/imported/fx_fairiefire.png-dada23a4bcdbea8b9b91ed904054a666.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png new file mode 100644 index 0000000..d8f1897 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png.import new file mode 100644 index 0000000..a625c08 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1lffx7hve5mt" +path="res://.godot/imported/fx_fairiefire_old.png-4616fda7e50923c06d5467730b5d0755.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fairiefire_old.png" +dest_files=["res://.godot/imported/fx_fairiefire_old.png-4616fda7e50923c06d5467730b5d0755.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png new file mode 100644 index 0000000..2b32ca3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png.import new file mode 100644 index 0000000..02b8efd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cay322xh44q66" +path="res://.godot/imported/fx_firefallground.png-36cd3c7a46cf948a847abfdc157ecb24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firefallground.png" +dest_files=["res://.godot/imported/fx_firefallground.png-36cd3c7a46cf948a847abfdc157ecb24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png new file mode 100644 index 0000000..79ccf3f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png.import new file mode 100644 index 0000000..ff29108 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l5nun7n8isgm" +path="res://.godot/imported/fx_fireimpact.png-48cbd8b8e82b09be428785b15d558c2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireimpact.png" +dest_files=["res://.godot/imported/fx_fireimpact.png-48cbd8b8e82b09be428785b15d558c2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png new file mode 100644 index 0000000..beb870c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png.import new file mode 100644 index 0000000..a24b779 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkd4t8tkowje0" +path="res://.godot/imported/fx_fireslash.png-270827868511e056537b9fb4a5a3eed4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_fireslash.png" +dest_files=["res://.godot/imported/fx_fireslash.png-270827868511e056537b9fb4a5a3eed4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png new file mode 100644 index 0000000..941df92 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png.import new file mode 100644 index 0000000..4b8af4d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlr1uq1qbiyy3" +path="res://.godot/imported/fx_firetornado.png-009d28325076ff07e5945e2618f34638.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_firetornado.png" +dest_files=["res://.godot/imported/fx_firetornado.png-009d28325076ff07e5945e2618f34638.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png new file mode 100644 index 0000000..de809d6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png.import new file mode 100644 index 0000000..db3c623 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b11qbupxdccwq" +path="res://.godot/imported/fx_flamesphere.png-2ea1f12788cd428359730cbfa6c71b94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_flamesphere.png" +dest_files=["res://.godot/imported/fx_flamesphere.png-2ea1f12788cd428359730cbfa6c71b94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png new file mode 100644 index 0000000..234714c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png.import new file mode 100644 index 0000000..a0e9182 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ll2nxcsvk4wu" +path="res://.godot/imported/fx_frozen.png-cd98e78babaa55de0a30127fc0161880.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_frozen.png" +dest_files=["res://.godot/imported/fx_frozen.png-cd98e78babaa55de0a30127fc0161880.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png new file mode 100644 index 0000000..767d702 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png.import new file mode 100644 index 0000000..c909643 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ostptudamb7q" +path="res://.godot/imported/fx_heal.png-298b40b09f48af714e2305dd17a67c4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heal.png" +dest_files=["res://.godot/imported/fx_heal.png-298b40b09f48af714e2305dd17a67c4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png new file mode 100644 index 0000000..3e77008 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png.import new file mode 100644 index 0000000..e115731 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0nd4aby0kacf" +path="res://.godot/imported/fx_heavenlystrike.png-8fd8197a0190e4dd744571aa124074d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_heavenlystrike.png" +dest_files=["res://.godot/imported/fx_heavenlystrike.png-8fd8197a0190e4dd744571aa124074d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png new file mode 100644 index 0000000..cc748f1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png.import new file mode 100644 index 0000000..53289a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj144x41orwdq" +path="res://.godot/imported/fx_impact.png-4014bb80293a8e63f5710d601557ba39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact.png" +dest_files=["res://.godot/imported/fx_impact.png-4014bb80293a8e63f5710d601557ba39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png new file mode 100644 index 0000000..6a31fd7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png.import new file mode 100644 index 0000000..57af6be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3vgqck72x3jt" +path="res://.godot/imported/fx_impact2.png-13d461eede2d6539d555ad534eb9b01d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact2.png" +dest_files=["res://.godot/imported/fx_impact2.png-13d461eede2d6539d555ad534eb9b01d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png new file mode 100644 index 0000000..29f4ef4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png.import new file mode 100644 index 0000000..b9d44ae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwr4p4ry7rj5a" +path="res://.godot/imported/fx_impact_verticalring.png-5409097dfbae97cf3dbeeca04473207f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impact_verticalring.png" +dest_files=["res://.godot/imported/fx_impact_verticalring.png-5409097dfbae97cf3dbeeca04473207f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png new file mode 100644 index 0000000..8b7d13d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png.import new file mode 100644 index 0000000..4052a66 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://utwyebkpsm6f" +path="res://.godot/imported/fx_impactblue.png-d7e830211ff6ea4114c4680cfbec4954.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactblue.png" +dest_files=["res://.godot/imported/fx_impactblue.png-d7e830211ff6ea4114c4680cfbec4954.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png new file mode 100644 index 0000000..f2944ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png.import new file mode 100644 index 0000000..4adf8b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b61h2rsavxgbg" +path="res://.godot/imported/fx_impactgreen.png-4af5f347d4565a872658dd579c755cd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactgreen.png" +dest_files=["res://.godot/imported/fx_impactgreen.png-4af5f347d4565a872658dd579c755cd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png new file mode 100644 index 0000000..d2ac9bf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png.import new file mode 100644 index 0000000..c5b37a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkwy5wgfiweec" +path="res://.godot/imported/fx_impactred.png-b372fd052e5278757e10538738e18e83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_impactred.png" +dest_files=["res://.godot/imported/fx_impactred.png-b372fd052e5278757e10538738e18e83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png new file mode 100644 index 0000000..c8317b7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png.import new file mode 100644 index 0000000..152ced4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj5vkwk6o3x8t" +path="res://.godot/imported/fx_lightninghitgreen.png-2b4d4460ac8215d170757ca1528b4e60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_lightninghitgreen.png" +dest_files=["res://.godot/imported/fx_lightninghitgreen.png-2b4d4460ac8215d170757ca1528b4e60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png new file mode 100644 index 0000000..9b0b824 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png.import new file mode 100644 index 0000000..e379a7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpwvermjserpb" +path="res://.godot/imported/fx_martyrdom.png-05ced1635c8357dde60bd256aa222851.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_martyrdom.png" +dest_files=["res://.godot/imported/fx_martyrdom.png-05ced1635c8357dde60bd256aa222851.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png new file mode 100644 index 0000000..199098f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png.import new file mode 100644 index 0000000..c58fe87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfbl10nbrws8" +path="res://.godot/imported/fx_multislash_full.png-7366d93d1457e7654d77081c477d9c96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_full.png" +dest_files=["res://.godot/imported/fx_multislash_full.png-7366d93d1457e7654d77081c477d9c96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png new file mode 100644 index 0000000..35d56e6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png.import new file mode 100644 index 0000000..1915be0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqgegy3okto8" +path="res://.godot/imported/fx_multislash_intro.png-e1e2f5e1939af83ac1ed7fb777e3df47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_intro.png" +dest_files=["res://.godot/imported/fx_multislash_intro.png-e1e2f5e1939af83ac1ed7fb777e3df47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png new file mode 100644 index 0000000..4c29b80 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png.import new file mode 100644 index 0000000..8172748 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hw7pc3uf4aqm" +path="res://.godot/imported/fx_multislash_outro.png-503d4f45846a0ae0db01400660d5a93e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_multislash_outro.png" +dest_files=["res://.godot/imported/fx_multislash_outro.png-503d4f45846a0ae0db01400660d5a93e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png new file mode 100644 index 0000000..6b2a09f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png.import new file mode 100644 index 0000000..be64767 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqsn65hvhhn7s" +path="res://.godot/imported/fx_neutral_riddle.png-ec060b65ac69c7bd98e9bb1150b697ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_neutral_riddle.png" +dest_files=["res://.godot/imported/fx_neutral_riddle.png-ec060b65ac69c7bd98e9bb1150b697ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png new file mode 100644 index 0000000..c87301e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png.import new file mode 100644 index 0000000..c10d22c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csxapnkg31384" +path="res://.godot/imported/fx_plasma.png-32a49421d4bc3d7232ad0d573099bd76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_plasma.png" +dest_files=["res://.godot/imported/fx_plasma.png-32a49421d4bc3d7232ad0d573099bd76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png new file mode 100644 index 0000000..2c880cc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png.import new file mode 100644 index 0000000..c076c2c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1g4fn78i6tgl" +path="res://.godot/imported/fx_radial_bluenoise.png-4624a5c980b7b7d5f6bfd27c93994412.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise.png" +dest_files=["res://.godot/imported/fx_radial_bluenoise.png-4624a5c980b7b7d5f6bfd27c93994412.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png new file mode 100644 index 0000000..6b405d2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png.import new file mode 100644 index 0000000..3b68a40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j3j1jlmk6h6a" +path="res://.godot/imported/fx_radial_bluenoise@2x.png-1c884afec1254230c6e1be7f6e4fab8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_radial_bluenoise@2x.png" +dest_files=["res://.godot/imported/fx_radial_bluenoise@2x.png-1c884afec1254230c6e1be7f6e4fab8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png new file mode 100644 index 0000000..520f2ba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png.import new file mode 100644 index 0000000..c8393b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doa8x2ufe8j46" +path="res://.godot/imported/fx_redlightning.png-2e0cfec82158531b2518ca2f5d93b79a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redlightning.png" +dest_files=["res://.godot/imported/fx_redlightning.png-2e0cfec82158531b2518ca2f5d93b79a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png new file mode 100644 index 0000000..d9d9bbf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png.import new file mode 100644 index 0000000..fb9cde0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv24ohkyc7ny7" +path="res://.godot/imported/fx_redplasma_vertical.png-a57fa9744a8b7d5d698c683dc812cf9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_redplasma_vertical.png" +dest_files=["res://.godot/imported/fx_redplasma_vertical.png-a57fa9744a8b7d5d698c683dc812cf9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png new file mode 100644 index 0000000..9a24df0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png.import new file mode 100644 index 0000000..10f69a6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2rqca0kij81i" +path="res://.godot/imported/fx_ringswirl.png-2dadca65a16ef7ac50d3bcefee8be137.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_ringswirl.png" +dest_files=["res://.godot/imported/fx_ringswirl.png-2dadca65a16ef7ac50d3bcefee8be137.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png new file mode 100644 index 0000000..b6640cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png.import new file mode 100644 index 0000000..2d80786 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hct6jeynals6" +path="res://.godot/imported/fx_roots.png-61c13b5632cd2cfd6cf7f8fba8772ee4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_roots.png" +dest_files=["res://.godot/imported/fx_roots.png-61c13b5632cd2cfd6cf7f8fba8772ee4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png new file mode 100644 index 0000000..975b15d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png.import new file mode 100644 index 0000000..480017f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckv4a2rip44dj" +path="res://.godot/imported/fx_sandportal.png-e606b8b6b2956ef20b90064a080c85e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_sandportal.png" +dest_files=["res://.godot/imported/fx_sandportal.png-e606b8b6b2956ef20b90064a080c85e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png new file mode 100644 index 0000000..fce0660 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png.import new file mode 100644 index 0000000..164f28e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbql7elqp7p1e" +path="res://.godot/imported/fx_searingchasm.png-585b2a38035394093ced3dde4e11c8fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_searingchasm.png" +dest_files=["res://.godot/imported/fx_searingchasm.png-585b2a38035394093ced3dde4e11c8fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png new file mode 100644 index 0000000..daf8dab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png.import new file mode 100644 index 0000000..095f249 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvr6st4wl5gac" +path="res://.godot/imported/fx_shadowcreep.png-4422bf20ed5b9c02678962e5bc915d90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_shadowcreep.png" +dest_files=["res://.godot/imported/fx_shadowcreep.png-4422bf20ed5b9c02678962e5bc915d90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png new file mode 100644 index 0000000..c416699 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png.import new file mode 100644 index 0000000..ecd4401 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxy0bpge3cy5c" +path="res://.godot/imported/fx_slashfrenzy.png-82916b17318a4d4ec3efef92ece46b34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_slashfrenzy.png" +dest_files=["res://.godot/imported/fx_slashfrenzy.png-82916b17318a4d4ec3efef92ece46b34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png new file mode 100644 index 0000000..692e7a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png.import new file mode 100644 index 0000000..4b05221 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqjni7a8uyew6" +path="res://.godot/imported/fx_smoke.png-5c821747d70b3ed381bb81e3264341ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke.png" +dest_files=["res://.godot/imported/fx_smoke.png-5c821747d70b3ed381bb81e3264341ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png new file mode 100644 index 0000000..49bf2ef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png.import new file mode 100644 index 0000000..f12e021 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccnwgwu8ldy4m" +path="res://.godot/imported/fx_smoke2.png-1e48b33ed251342e82cd3e9a241b83e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_smoke2.png" +dest_files=["res://.godot/imported/fx_smoke2.png-1e48b33ed251342e82cd3e9a241b83e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png new file mode 100644 index 0000000..b9250ec Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png.import new file mode 100644 index 0000000..aa76b1e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t1wxxsrqhbsi" +path="res://.godot/imported/fx_summonlegendary.png-972e6ea1c689db060bdf660aecb18781.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonlegendary.png" +dest_files=["res://.godot/imported/fx_summonlegendary.png-972e6ea1c689db060bdf660aecb18781.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png new file mode 100644 index 0000000..3fe7ba3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png.import new file mode 100644 index 0000000..a4f4b5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkbv00mvjfq8q" +path="res://.godot/imported/fx_summonmythron.png-9a4cc7af60813b5a4abb43a15b3c8892.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_summonmythron.png" +dest_files=["res://.godot/imported/fx_summonmythron.png-9a4cc7af60813b5a4abb43a15b3c8892.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png new file mode 100644 index 0000000..816c29b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png.import new file mode 100644 index 0000000..3e23395 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djo366n4wh816" +path="res://.godot/imported/fx_swirl.png-d1550994475b1473744af128401eea1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_swirl.png" +dest_files=["res://.godot/imported/fx_swirl.png-d1550994475b1473744af128401eea1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png new file mode 100644 index 0000000..e2c64ff Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png.import new file mode 100644 index 0000000..90d1cd8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc6wm7vucg4tt" +path="res://.godot/imported/fx_teleportblueorb.png-8f07609430f40db9daff81a702472396.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportblueorb.png" +dest_files=["res://.godot/imported/fx_teleportblueorb.png-8f07609430f40db9daff81a702472396.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png new file mode 100644 index 0000000..dbb3975 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png.import new file mode 100644 index 0000000..63f52bc5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daggnuql0tqxu" +path="res://.godot/imported/fx_teleportorangeorb.png-f6c665cbfe387e97904a7606d1c9a2c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportorangeorb.png" +dest_files=["res://.godot/imported/fx_teleportorangeorb.png-f6c665cbfe387e97904a7606d1c9a2c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png new file mode 100644 index 0000000..8e4e7b3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png.import new file mode 100644 index 0000000..fcdec93 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbxy487l41741" +path="res://.godot/imported/fx_teleportpurpleorb.png-9b83e3def0a65bedc94bc7156c441b03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportpurpleorb.png" +dest_files=["res://.godot/imported/fx_teleportpurpleorb.png-9b83e3def0a65bedc94bc7156c441b03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png new file mode 100644 index 0000000..a596756 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png.import new file mode 100644 index 0000000..27877cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2bngmycrdbop" +path="res://.godot/imported/fx_teleportrecall.png-6cf26ea12ebb73760ea0a38185e86a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall.png" +dest_files=["res://.godot/imported/fx_teleportrecall.png-6cf26ea12ebb73760ea0a38185e86a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png new file mode 100644 index 0000000..4741ea1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png.import new file mode 100644 index 0000000..93a3322 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs4es0b1xim0k" +path="res://.godot/imported/fx_teleportrecall2.png-f4269c4dc5e273f132d3745ea1dadb79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecall2.png" +dest_files=["res://.godot/imported/fx_teleportrecall2.png-f4269c4dc5e273f132d3745ea1dadb79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png new file mode 100644 index 0000000..a92013d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png.import new file mode 100644 index 0000000..4533e33 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjfdebovx72cw" +path="res://.godot/imported/fx_teleportrecallblue.png-9335dfaa71366510b3e5083d9f3f4c63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallblue.png" +dest_files=["res://.godot/imported/fx_teleportrecallblue.png-9335dfaa71366510b3e5083d9f3f4c63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png new file mode 100644 index 0000000..bed7967 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png.import new file mode 100644 index 0000000..d924d55 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh5ua6lf6paww" +path="res://.godot/imported/fx_teleportrecallgreen.png-daf46f1e925a24e8b6284fc2a673cf08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallgreen.png" +dest_files=["res://.godot/imported/fx_teleportrecallgreen.png-daf46f1e925a24e8b6284fc2a673cf08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png new file mode 100644 index 0000000..77de7d5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png.import new file mode 100644 index 0000000..d2c37b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b56y5dsihoq1m" +path="res://.godot/imported/fx_teleportrecallred.png-9f796d90f28e9ee5c796bfbfe9dfe1f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallred.png" +dest_files=["res://.godot/imported/fx_teleportrecallred.png-9f796d90f28e9ee5c796bfbfe9dfe1f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png new file mode 100644 index 0000000..f362b8c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png.import new file mode 100644 index 0000000..d506371 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwcapm4v0tbcl" +path="res://.godot/imported/fx_teleportrecallwhite.png-ad56c39753df217f64ffd9f902cba04a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportrecallwhite.png" +dest_files=["res://.godot/imported/fx_teleportrecallwhite.png-ad56c39753df217f64ffd9f902cba04a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png new file mode 100644 index 0000000..0949db3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png.import new file mode 100644 index 0000000..d8eae81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dosyop6ht542r" +path="res://.godot/imported/fx_teleportyelloworb.png-f97879643b9104cf64f9ac83c635922d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_teleportyelloworb.png" +dest_files=["res://.godot/imported/fx_teleportyelloworb.png-f97879643b9104cf64f9ac83c635922d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png new file mode 100644 index 0000000..bee4ee4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png.import new file mode 100644 index 0000000..51b6e73 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqx4lgkedwajr" +path="res://.godot/imported/fx_tornadoswirl.png-8ec673f0d7e3a0037f57badc053a8f55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_tornadoswirl.png" +dest_files=["res://.godot/imported/fx_tornadoswirl.png-8ec673f0d7e3a0037f57badc053a8f55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png new file mode 100644 index 0000000..4587754 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png.import new file mode 100644 index 0000000..6205396 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv7vdssdd0vvx" +path="res://.godot/imported/fx_vortexswirl.png-eb0295af2e109d87bbfbb3fbc6c4bbc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_vortexswirl.png" +dest_files=["res://.godot/imported/fx_vortexswirl.png-eb0295af2e109d87bbfbb3fbc6c4bbc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png new file mode 100644 index 0000000..cfaaa60 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png.import new file mode 100644 index 0000000..33dbf6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbs3542n6i3ij" +path="res://.godot/imported/fx_whiteexplosion.png-8d92711402348e32e2bdc7596c026319.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_whiteexplosion.png" +dest_files=["res://.godot/imported/fx_whiteexplosion.png-8d92711402348e32e2bdc7596c026319.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png new file mode 100644 index 0000000..743315d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png.import new file mode 100644 index 0000000..4d93c31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be5rajo75m7qr" +path="res://.godot/imported/fx_winner.png-765a8b0822867e950d24b75d5daae177.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/fx/fx_winner.png" +dest_files=["res://.godot/imported/fx_winner.png-765a8b0822867e950d24b75d5daae177.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png new file mode 100644 index 0000000..af4288d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png.import new file mode 100644 index 0000000..7653b6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b470x2fmkg6p6" +path="res://.godot/imported/artifact_boss_frostarmor.png-617299641db33aa18abdea2a52ae7557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_boss_frostarmor.png" +dest_files=["res://.godot/imported/artifact_boss_frostarmor.png-617299641db33aa18abdea2a52ae7557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png new file mode 100644 index 0000000..ae356a5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png.import new file mode 100644 index 0000000..5899b58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqy135p0opd3f" +path="res://.godot/imported/artifact_f1_arclyteregalia.png-8a6cbf0d028f68ebe23538fbb28640c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_arclyteregalia.png" +dest_files=["res://.godot/imported/artifact_f1_arclyteregalia.png-8a6cbf0d028f68ebe23538fbb28640c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png new file mode 100644 index 0000000..8d5ecd4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png.import new file mode 100644 index 0000000..6f5cb14 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n3gcal6mfraa" +path="res://.godot/imported/artifact_f1_bigshield.png-3fec9876ce0cb86a62a5a7971854e095.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_bigshield.png" +dest_files=["res://.godot/imported/artifact_f1_bigshield.png-3fec9876ce0cb86a62a5a7971854e095.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png new file mode 100644 index 0000000..a61b4f3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png.import new file mode 100644 index 0000000..5765df5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjhe45pj2uepm" +path="res://.godot/imported/artifact_f1_dawnseye.png-f0c7eef1b91a6dfc2648708952877a06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_dawnseye.png" +dest_files=["res://.godot/imported/artifact_f1_dawnseye.png-f0c7eef1b91a6dfc2648708952877a06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png new file mode 100644 index 0000000..ec4a1e1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png.import new file mode 100644 index 0000000..1bda036 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcf6ulagm8k2s" +path="res://.godot/imported/artifact_f1_goldenvitriol.png-fe620fc2e1f77913ec173e9460f1c365.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_goldenvitriol.png" +dest_files=["res://.godot/imported/artifact_f1_goldenvitriol.png-fe620fc2e1f77913ec173e9460f1c365.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png new file mode 100644 index 0000000..1d3ca9f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png.import new file mode 100644 index 0000000..4f2521c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://72iswmv5vank" +path="res://.godot/imported/artifact_f1_ironbanner.png-5ff1cd82984c85e5c6a17231696269ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_ironbanner.png" +dest_files=["res://.godot/imported/artifact_f1_ironbanner.png-5ff1cd82984c85e5c6a17231696269ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png new file mode 100644 index 0000000..4f61bcf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png.import new file mode 100644 index 0000000..5a9468b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqtyxaqhasfsi" +path="res://.godot/imported/artifact_f1_shieldofphalanx.png-c42ab0a0ce6e501e615ef332d1e9f63f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_shieldofphalanx.png" +dest_files=["res://.godot/imported/artifact_f1_shieldofphalanx.png-c42ab0a0ce6e501e615ef332d1e9f63f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png new file mode 100644 index 0000000..4696ca1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png.import new file mode 100644 index 0000000..69409aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://burtxy7lwaxyk" +path="res://.godot/imported/artifact_f1_skywindglaives.png-2c0ca0a4fe312943a22e18be826151ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_skywindglaives.png" +dest_files=["res://.godot/imported/artifact_f1_skywindglaives.png-2c0ca0a4fe312943a22e18be826151ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png new file mode 100644 index 0000000..5ab35cb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png.import new file mode 100644 index 0000000..9253f23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baeodoshpy7qv" +path="res://.godot/imported/artifact_f1_sunstonebracers.png-a99afaecade49e3c686951b8b3d4b920.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f1_sunstonebracers.png" +dest_files=["res://.godot/imported/artifact_f1_sunstonebracers.png-a99afaecade49e3c686951b8b3d4b920.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png new file mode 100644 index 0000000..64d71ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png.import new file mode 100644 index 0000000..45ae4f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2d5x762e8cks" +path="res://.godot/imported/artifact_f2_bloodleechmask.png-30047deddc30defb5a6dbd01f87b1a35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_bloodleechmask.png" +dest_files=["res://.godot/imported/artifact_f2_bloodleechmask.png-30047deddc30defb5a6dbd01f87b1a35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png new file mode 100644 index 0000000..09f6fbe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png.import new file mode 100644 index 0000000..7367ce6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s62q0m4osy38" +path="res://.godot/imported/artifact_f2_braceletblidingstrike.png-1dc0077b83e937c2683b6d2a83c91d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletblidingstrike.png" +dest_files=["res://.godot/imported/artifact_f2_braceletblidingstrike.png-1dc0077b83e937c2683b6d2a83c91d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png new file mode 100644 index 0000000..a1bfcc4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png.import new file mode 100644 index 0000000..cd01232 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bstkial7qw2sc" +path="res://.godot/imported/artifact_f2_braceletofblinding.png-4138af1880be84503cef062b0d61e057.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_braceletofblinding.png" +dest_files=["res://.godot/imported/artifact_f2_braceletofblinding.png-4138af1880be84503cef062b0d61e057.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png new file mode 100644 index 0000000..2e6be18 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png.import new file mode 100644 index 0000000..838c8b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciwu3qq3to38l" +path="res://.godot/imported/artifact_f2_crescentspear.png-597f6e65f372c29917449c5b7e8c9436.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_crescentspear.png" +dest_files=["res://.godot/imported/artifact_f2_crescentspear.png-597f6e65f372c29917449c5b7e8c9436.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png new file mode 100644 index 0000000..b8bca5f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png.import new file mode 100644 index 0000000..af425c6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbck4syubbo1w" +path="res://.godot/imported/artifact_f2_cyclonemask.png-2e1de434ef13feab676750c987632790.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_cyclonemask.png" +dest_files=["res://.godot/imported/artifact_f2_cyclonemask.png-2e1de434ef13feab676750c987632790.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png new file mode 100644 index 0000000..1503371 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png.import new file mode 100644 index 0000000..2df75be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c65radaoomaau" +path="res://.godot/imported/artifact_f2_markgorehorn.png-5b416212e865195b71f9d8638a59fb2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_markgorehorn.png" +dest_files=["res://.godot/imported/artifact_f2_markgorehorn.png-5b416212e865195b71f9d8638a59fb2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png new file mode 100644 index 0000000..6a2b343 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png.import new file mode 100644 index 0000000..7eb649c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lqcjl1i0816s" +path="res://.godot/imported/artifact_f2_maskofshadows.png-c955bc890f952d46a085cdca12cf5f48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_maskofshadows.png" +dest_files=["res://.godot/imported/artifact_f2_maskofshadows.png-c955bc890f952d46a085cdca12cf5f48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png new file mode 100644 index 0000000..af8480f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png.import new file mode 100644 index 0000000..1c752ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6a27dw6c1sn2" +path="res://.godot/imported/artifact_f2_spellfan.png-6312e610a6c242137d3a7afc777a9d78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_spellfan.png" +dest_files=["res://.godot/imported/artifact_f2_spellfan.png-6312e610a6c242137d3a7afc777a9d78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png new file mode 100644 index 0000000..776bf4f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png.import new file mode 100644 index 0000000..1f57968 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n6hfx4dnbuqx" +path="res://.godot/imported/artifact_f2_unboundedenergyamulet.png-66322709c359a5bf464e8d60ad13b055.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f2_unboundedenergyamulet.png" +dest_files=["res://.godot/imported/artifact_f2_unboundedenergyamulet.png-66322709c359a5bf464e8d60ad13b055.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png new file mode 100644 index 0000000..52ebf87 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png.import new file mode 100644 index 0000000..2f21161 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doub04t7ea42q" +path="res://.godot/imported/artifact_f3_hexblade.png-a02deddb7e80cf955b34dc1c39189649.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_hexblade.png" +dest_files=["res://.godot/imported/artifact_f3_hexblade.png-a02deddb7e80cf955b34dc1c39189649.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png new file mode 100644 index 0000000..fcd93ea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png.import new file mode 100644 index 0000000..af41f38 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s8a7uwo0d1rp" +path="res://.godot/imported/artifact_f3_repairstaff.png-9ad774f5e4d29a8c461532f7b7e99348.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_repairstaff.png" +dest_files=["res://.godot/imported/artifact_f3_repairstaff.png-9ad774f5e4d29a8c461532f7b7e99348.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png new file mode 100644 index 0000000..05a4f87 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png.import new file mode 100644 index 0000000..0c4c0c3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djxyxokbbc6yt" +path="res://.godot/imported/artifact_f3_sajjreredemption.png-41a89e50d632200745b2c788cdb0c695.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sajjreredemption.png" +dest_files=["res://.godot/imported/artifact_f3_sajjreredemption.png-41a89e50d632200745b2c788cdb0c695.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png new file mode 100644 index 0000000..8342890 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png.import new file mode 100644 index 0000000..1fd6b1e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkwuth0qelu6w" +path="res://.godot/imported/artifact_f3_sandscepter.png-f9467ea2fbfb24728d7d227e05c82b73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_sandscepter.png" +dest_files=["res://.godot/imported/artifact_f3_sandscepter.png-f9467ea2fbfb24728d7d227e05c82b73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png new file mode 100644 index 0000000..173fb51 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png.import new file mode 100644 index 0000000..d82e71e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxnxk0edsej05" +path="res://.godot/imported/artifact_f3_spinecleaver.png-4f32da8f0e4972e72402aa87f8bc5312.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_spinecleaver.png" +dest_files=["res://.godot/imported/artifact_f3_spinecleaver.png-4f32da8f0e4972e72402aa87f8bc5312.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png new file mode 100644 index 0000000..fd255f3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png.import new file mode 100644 index 0000000..dc2209d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqcmijcdoj2w1" +path="res://.godot/imported/artifact_f3_staffofykir.png-4bda763b1ba15302c192e95871bc65dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_staffofykir.png" +dest_files=["res://.godot/imported/artifact_f3_staffofykir.png-4bda763b1ba15302c192e95871bc65dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png new file mode 100644 index 0000000..302ef29 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png.import new file mode 100644 index 0000000..ba5b5f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byqsvc5gkms5u" +path="res://.godot/imported/artifact_f3_thunderclap.png-c83ebe978f58042091bd0995d5bd53d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_thunderclap.png" +dest_files=["res://.godot/imported/artifact_f3_thunderclap.png-c83ebe978f58042091bd0995d5bd53d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png new file mode 100644 index 0000000..8f1c0b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png.import new file mode 100644 index 0000000..32acc89 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ywy8dyxyh82u" +path="res://.godot/imported/artifact_f3_wildfireankh.png-2ec6607c0839316887a63f48f8210f80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f3_wildfireankh.png" +dest_files=["res://.godot/imported/artifact_f3_wildfireankh.png-2ec6607c0839316887a63f48f8210f80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png new file mode 100644 index 0000000..b4c6ae3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png.import new file mode 100644 index 0000000..f64e54f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chh80qn5qpg76" +path="res://.godot/imported/artifact_f4_darkstonering.png-68bd4612d4c688b555bb777e83f7b889.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_darkstonering.png" +dest_files=["res://.godot/imported/artifact_f4_darkstonering.png-68bd4612d4c688b555bb777e83f7b889.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png new file mode 100644 index 0000000..6d879b0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png.import new file mode 100644 index 0000000..fa42218 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcpsi7obn3y06" +path="res://.godot/imported/artifact_f4_ghostazalea.png-f34807a397205ac3d1538a4be699f29f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ghostazalea.png" +dest_files=["res://.godot/imported/artifact_f4_ghostazalea.png-f34807a397205ac3d1538a4be699f29f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png new file mode 100644 index 0000000..025edbc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png.import new file mode 100644 index 0000000..4440f11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1k60g3fhxld7" +path="res://.godot/imported/artifact_f4_heartborrower.png-de471c82a01a08f7ec3fbad4d5d07db3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_heartborrower.png" +dest_files=["res://.godot/imported/artifact_f4_heartborrower.png-de471c82a01a08f7ec3fbad4d5d07db3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png new file mode 100644 index 0000000..1215804 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png.import new file mode 100644 index 0000000..05f9e8f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkkqng31ocwyu" +path="res://.godot/imported/artifact_f4_hornofforsaken.png-00fab60cc2c3a473f72d6b78decab99f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_hornofforsaken.png" +dest_files=["res://.godot/imported/artifact_f4_hornofforsaken.png-00fab60cc2c3a473f72d6b78decab99f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png new file mode 100644 index 0000000..24772df Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png.import new file mode 100644 index 0000000..f727ee2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vj3ja5i4hj2w" +path="res://.godot/imported/artifact_f4_ragechackram.png-dc42a56fab55d1682b00bc9e17904d7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_ragechackram.png" +dest_files=["res://.godot/imported/artifact_f4_ragechackram.png-dc42a56fab55d1682b00bc9e17904d7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png new file mode 100644 index 0000000..6595f4b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png.import new file mode 100644 index 0000000..e9a5d6d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv3okmxjm7agg" +path="res://.godot/imported/artifact_f4_soulgrimwar.png-dc20d55cbdd4646ceea13512413cb5f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_soulgrimwar.png" +dest_files=["res://.godot/imported/artifact_f4_soulgrimwar.png-dc20d55cbdd4646ceea13512413cb5f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png new file mode 100644 index 0000000..92d2be9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png.import new file mode 100644 index 0000000..168c9c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buru53slr5j42" +path="res://.godot/imported/artifact_f4_spectralblade.png-63440043eb200bdaa9b6874c129be547.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_spectralblade.png" +dest_files=["res://.godot/imported/artifact_f4_spectralblade.png-63440043eb200bdaa9b6874c129be547.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png new file mode 100644 index 0000000..f23a11c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png.import new file mode 100644 index 0000000..cd92f67 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf1ceer48ubmr" +path="res://.godot/imported/artifact_f4_thereleaser.png-3887bb7dc47e5a3d30c8d25e047b6601.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f4_thereleaser.png" +dest_files=["res://.godot/imported/artifact_f4_thereleaser.png-3887bb7dc47e5a3d30c8d25e047b6601.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png new file mode 100644 index 0000000..11dc077 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png.import new file mode 100644 index 0000000..2ea77de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6ldhgbpgdby" +path="res://.godot/imported/artifact_f5_adamantineclaws.png-433357585accceffa44b006734587c48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_adamantineclaws.png" +dest_files=["res://.godot/imported/artifact_f5_adamantineclaws.png-433357585accceffa44b006734587c48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png new file mode 100644 index 0000000..997befb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png.import new file mode 100644 index 0000000..a000f30 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oq67j3njwibw" +path="res://.godot/imported/artifact_f5_eggsoul.png-d564fbca733043821a518e012c375d00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eggsoul.png" +dest_files=["res://.godot/imported/artifact_f5_eggsoul.png-d564fbca733043821a518e012c375d00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png new file mode 100644 index 0000000..8d4cf72 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png.import new file mode 100644 index 0000000..96df3d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo7dqgdp1s1av" +path="res://.godot/imported/artifact_f5_eternalheart.png-440f529f7ee4e28464277cc228dbad50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_eternalheart.png" +dest_files=["res://.godot/imported/artifact_f5_eternalheart.png-440f529f7ee4e28464277cc228dbad50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png new file mode 100644 index 0000000..26551d8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png.import new file mode 100644 index 0000000..d27c149 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjibdr40x6aoc" +path="res://.godot/imported/artifact_f5_godhammer.png-bb999d5eaaa4d8add1d7b5ff9234aeac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_godhammer.png" +dest_files=["res://.godot/imported/artifact_f5_godhammer.png-bb999d5eaaa4d8add1d7b5ff9234aeac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png new file mode 100644 index 0000000..5366cb2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png.import new file mode 100644 index 0000000..b83d34b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5b6f67iw3dys" +path="res://.godot/imported/artifact_f5_irridiumscale.png-1e8a8750e759b37d1a11c75867fceb34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_irridiumscale.png" +dest_files=["res://.godot/imported/artifact_f5_irridiumscale.png-1e8a8750e759b37d1a11c75867fceb34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png new file mode 100644 index 0000000..1e2c37b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png.import new file mode 100644 index 0000000..9f163cd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dacmtep3s1g7n" +path="res://.godot/imported/artifact_f5_morinkhur.png-1dfdf6a2d8a70c18b87163e10aae0bc4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_morinkhur.png" +dest_files=["res://.godot/imported/artifact_f5_morinkhur.png-1dfdf6a2d8a70c18b87163e10aae0bc4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png new file mode 100644 index 0000000..7ea063c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png.import new file mode 100644 index 0000000..ddd536b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyt7bwqihuiep" +path="res://.godot/imported/artifact_f5_thegibblecup.png-242d0b30d478800b3474b7b42369bdb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_thegibblecup.png" +dest_files=["res://.godot/imported/artifact_f5_thegibblecup.png-242d0b30d478800b3474b7b42369bdb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png new file mode 100644 index 0000000..4704cf0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png.import new file mode 100644 index 0000000..eb6a7fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkcw2ga8cmufv" +path="res://.godot/imported/artifact_f5_twinfang.png-d4e34d693843822dc379351f433db92e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f5_twinfang.png" +dest_files=["res://.godot/imported/artifact_f5_twinfang.png-d4e34d693843822dc379351f433db92e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png new file mode 100644 index 0000000..3b8824c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png.import new file mode 100644 index 0000000..2818926 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh3ggicsxef5y" +path="res://.godot/imported/artifact_f6_frostbiter.png-883ea22c31081a7c717d449b7ca45f18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostbiter.png" +dest_files=["res://.godot/imported/artifact_f6_frostbiter.png-883ea22c31081a7c717d449b7ca45f18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png new file mode 100644 index 0000000..435e9fe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png.import new file mode 100644 index 0000000..9539f8e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c31k4l7dq1slt" +path="res://.godot/imported/artifact_f6_frostplate.png-6bc8458fcaba7458fb34277dfaa07152.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_frostplate.png" +dest_files=["res://.godot/imported/artifact_f6_frostplate.png-6bc8458fcaba7458fb34277dfaa07152.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png new file mode 100644 index 0000000..0e60ae1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png.import new file mode 100644 index 0000000..50b0995 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl55e8v8kqhy3" +path="res://.godot/imported/artifact_f6_iceshatter.png-14b8fe771015485e3abb11c67922c656.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_iceshatter.png" +dest_files=["res://.godot/imported/artifact_f6_iceshatter.png-14b8fe771015485e3abb11c67922c656.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png new file mode 100644 index 0000000..88f09e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png.import new file mode 100644 index 0000000..f5ba417 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq5lu5s0xg0ob" +path="res://.godot/imported/artifact_f6_scycicle.png-2307b49ed9480c4edfb85603adc74469.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_scycicle.png" +dest_files=["res://.godot/imported/artifact_f6_scycicle.png-2307b49ed9480c4edfb85603adc74469.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png new file mode 100644 index 0000000..131f783 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png.import new file mode 100644 index 0000000..14658ab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbxoub7evrvsc" +path="res://.godot/imported/artifact_f6_snowpiercer.png-485535bead064c28a392efcd1e0c793f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowpiercer.png" +dest_files=["res://.godot/imported/artifact_f6_snowpiercer.png-485535bead064c28a392efcd1e0c793f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png new file mode 100644 index 0000000..3c248d9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png.import new file mode 100644 index 0000000..62c7bfc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1kyydqkmp5cx" +path="res://.godot/imported/artifact_f6_snowshovel.png-031a46e5e2ca00b675ee4778b81a4be9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_snowshovel.png" +dest_files=["res://.godot/imported/artifact_f6_snowshovel.png-031a46e5e2ca00b675ee4778b81a4be9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png new file mode 100644 index 0000000..3631672 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png.import new file mode 100644 index 0000000..32543b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqkm2faclu7pq" +path="res://.godot/imported/artifact_f6_whiteasp.png-ed4714279e42a43f64195a8c3debcc0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_whiteasp.png" +dest_files=["res://.godot/imported/artifact_f6_whiteasp.png-ed4714279e42a43f64195a8c3debcc0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png new file mode 100644 index 0000000..67a481c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png.import new file mode 100644 index 0000000..ef3df36 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br2aixuggo58" +path="res://.godot/imported/artifact_f6_winterblade.png-7783085f3c0e3008b4b7c1fec2695680.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_f6_winterblade.png" +dest_files=["res://.godot/imported/artifact_f6_winterblade.png-7783085f3c0e3008b4b7c1fec2695680.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png new file mode 100644 index 0000000..28221ff Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png.import new file mode 100644 index 0000000..e7aedeb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duq35i6a3u8rd" +path="res://.godot/imported/artifact_neutral_f1_goldenhammer.png-069a8110e3b1b32c1bd430204ddf3176.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f1_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f1_goldenhammer.png-069a8110e3b1b32c1bd430204ddf3176.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png new file mode 100644 index 0000000..de7db18 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png.import new file mode 100644 index 0000000..8cc1315 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfpj4vccvxu20" +path="res://.godot/imported/artifact_neutral_f2_goldenhammer.png-18b85386b3edfffab57e76406b75bf20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f2_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f2_goldenhammer.png-18b85386b3edfffab57e76406b75bf20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png new file mode 100644 index 0000000..5aae9d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png.import new file mode 100644 index 0000000..3e0b333 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb8jcgjfpec5u" +path="res://.godot/imported/artifact_neutral_f3_goldenhammer.png-28a5983a2932ed75dfb94d81c3fcd672.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f3_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f3_goldenhammer.png-28a5983a2932ed75dfb94d81c3fcd672.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png new file mode 100644 index 0000000..0024635 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png.import new file mode 100644 index 0000000..efa1bbf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drhl26ci4ijue" +path="res://.godot/imported/artifact_neutral_f4_goldenhammer.png-9670e17dd5b653d06a21ff70dc5c77d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f4_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f4_goldenhammer.png-9670e17dd5b653d06a21ff70dc5c77d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png new file mode 100644 index 0000000..d797601 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png.import new file mode 100644 index 0000000..5acc035 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfrlytkjq0jma" +path="res://.godot/imported/artifact_neutral_f5_goldenhammer.png-55b58c4bec741fcd91021cbfbbc47d01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f5_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f5_goldenhammer.png-55b58c4bec741fcd91021cbfbbc47d01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png new file mode 100644 index 0000000..9e767ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png.import new file mode 100644 index 0000000..09d7406 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qahvfh08omxx" +path="res://.godot/imported/artifact_neutral_f6_goldenhammer.png-e1614cb49600614cf30db35e5568ce4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_f6_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_f6_goldenhammer.png-e1614cb49600614cf30db35e5568ce4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png new file mode 100644 index 0000000..0380ed8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png.import new file mode 100644 index 0000000..73bad49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://get2efno6itw" +path="res://.godot/imported/artifact_neutral_neutral_goldenhammer.png-35c7d4eaa41ad2e3757ce3bd2c78cabb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/artifact_neutral_neutral_goldenhammer.png" +dest_files=["res://.godot/imported/artifact_neutral_neutral_goldenhammer.png-35c7d4eaa41ad2e3757ce3bd2c78cabb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png new file mode 100644 index 0000000..b946420 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png.import new file mode 100644 index 0000000..72ba4b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fcp3mlh73o4q" +path="res://.godot/imported/boss_christmas_coal.png-a1b6878e6457a385f712c18ca1402125.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_coal.png" +dest_files=["res://.godot/imported/boss_christmas_coal.png-a1b6878e6457a385f712c18ca1402125.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png new file mode 100644 index 0000000..fcd04f5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png.import new file mode 100644 index 0000000..227053f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpuve6xghy5w" +path="res://.godot/imported/boss_christmas_jinglebells.png-0829e76a8baf006d5f38abd2c2d38738.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_jinglebells.png" +dest_files=["res://.godot/imported/boss_christmas_jinglebells.png-0829e76a8baf006d5f38abd2c2d38738.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png new file mode 100644 index 0000000..11ac74e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png.import new file mode 100644 index 0000000..6f81ecb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6id1bta2g0i2" +path="res://.godot/imported/boss_christmas_mistletoe.png-d2095bb1d38bb6d223783a84cb85c784.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_mistletoe.png" +dest_files=["res://.godot/imported/boss_christmas_mistletoe.png-d2095bb1d38bb6d223783a84cb85c784.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png new file mode 100644 index 0000000..407f1c9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png.import new file mode 100644 index 0000000..5811d76 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpnjghhkla1fg" +path="res://.godot/imported/boss_christmas_present.png-88889e0b1d1f0621f06b02ed8aa4b10e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_present.png" +dest_files=["res://.godot/imported/boss_christmas_present.png-88889e0b1d1f0621f06b02ed8aa4b10e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png new file mode 100644 index 0000000..94a9619 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png.import new file mode 100644 index 0000000..c9cd7d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhhcid2mj601k" +path="res://.godot/imported/boss_christmas_snowball.png-3cf14f33e03042253fb30192aebd6dd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/boss_christmas_snowball.png" +dest_files=["res://.godot/imported/boss_christmas_snowball.png-3cf14f33e03042253fb30192aebd6dd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png new file mode 100644 index 0000000..42e26f7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png.import new file mode 100644 index 0000000..415747c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://td65mm4fmjsb" +path="res://.godot/imported/bossspell_ancientknowledge.png-049d4b7ba7913885904c5fed2c452b8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_ancientknowledge.png" +dest_files=["res://.godot/imported/bossspell_ancientknowledge.png-049d4b7ba7913885904c5fed2c452b8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png new file mode 100644 index 0000000..f119fdf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png.import new file mode 100644 index 0000000..fd34d34 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6itmxnrtce4c" +path="res://.godot/imported/bossspell_cultivatingdark.png-ed6c1ecf0db624d1e09cebbdc8c2df88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_cultivatingdark.png" +dest_files=["res://.godot/imported/bossspell_cultivatingdark.png-ed6c1ecf0db624d1e09cebbdc8c2df88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png new file mode 100644 index 0000000..3d83361 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png.import new file mode 100644 index 0000000..e36801a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8sggvag1wcmh" +path="res://.godot/imported/bossspell_etherealwind.png-35543b41b3b75d87f198f76542675ea3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_etherealwind.png" +dest_files=["res://.godot/imported/bossspell_etherealwind.png-35543b41b3b75d87f198f76542675ea3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png new file mode 100644 index 0000000..296a147 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png.import new file mode 100644 index 0000000..2bb2c52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6andx8vr2ket" +path="res://.godot/imported/bossspell_laceratingfrost.png-fdc1288627a9b4fd6ec6758b607704f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_laceratingfrost.png" +dest_files=["res://.godot/imported/bossspell_laceratingfrost.png-fdc1288627a9b4fd6ec6758b607704f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png new file mode 100644 index 0000000..eca5920 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png.import new file mode 100644 index 0000000..15c2373 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6xw2deav7yc6" +path="res://.godot/imported/bossspell_livingflame.png-4e06f7cf29020370695287683f7cf410.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_livingflame.png" +dest_files=["res://.godot/imported/bossspell_livingflame.png-4e06f7cf29020370695287683f7cf410.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png new file mode 100644 index 0000000..82349fe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png.import new file mode 100644 index 0000000..e123ce9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lm4r2r1opkm7" +path="res://.godot/imported/bossspell_moldingearth.png-693814b1b512f69816795a27d94ad120.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_moldingearth.png" +dest_files=["res://.godot/imported/bossspell_moldingearth.png-693814b1b512f69816795a27d94ad120.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png new file mode 100644 index 0000000..59af067 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png.import new file mode 100644 index 0000000..aa81567 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwfn2hkkyyt5t" +path="res://.godot/imported/bossspell_restoringlight.png-1b1233711d134e2f5cc6573329cd18e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/bossspell_restoringlight.png" +dest_files=["res://.godot/imported/bossspell_restoringlight.png-1b1233711d134e2f5cc6573329cd18e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png new file mode 100644 index 0000000..1861337 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png.import new file mode 100644 index 0000000..cf7a7e2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hsv5fcvjfhl4" +path="res://.godot/imported/f1_ironcliffeheart.png-1785479b5f1cf18026e672fba9dda0d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f1_ironcliffeheart.png" +dest_files=["res://.godot/imported/f1_ironcliffeheart.png-1785479b5f1cf18026e672fba9dda0d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png new file mode 100644 index 0000000..00647b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png.import new file mode 100644 index 0000000..bb8917f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di0rr3hdufw6q" +path="res://.godot/imported/f3_thoughtexchange.png-95764f3013a489a20fe21bc59d90eae4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f3_thoughtexchange.png" +dest_files=["res://.godot/imported/f3_thoughtexchange.png-95764f3013a489a20fe21bc59d90eae4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png new file mode 100644 index 0000000..8e1f25e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png.import new file mode 100644 index 0000000..edc1faa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn23lm8vteqa1" +path="res://.godot/imported/f4_shadowblossom.png-22576ec52a7f522d8c186f4c15784518.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/f4_shadowblossom.png" +dest_files=["res://.godot/imported/f4_shadowblossom.png-22576ec52a7f522d8c186f4c15784518.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png new file mode 100644 index 0000000..bf0be60 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png.import new file mode 100644 index 0000000..c9e4082 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvrfwfhgui710" +path="res://.godot/imported/generalspell_f1_afterglow.png-f9c1e117b8238d59d17326537077f7cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_afterglow.png" +dest_files=["res://.godot/imported/generalspell_f1_afterglow.png-f9c1e117b8238d59d17326537077f7cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png new file mode 100644 index 0000000..8d60dd7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png.import new file mode 100644 index 0000000..ccde244 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e5ek6mcm3dtw" +path="res://.godot/imported/generalspell_f1_kingsguard.png-2d9ba085c39d01e633518b4542e84835.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_kingsguard.png" +dest_files=["res://.godot/imported/generalspell_f1_kingsguard.png-2d9ba085c39d01e633518b4542e84835.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png new file mode 100644 index 0000000..fd814e7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png.import new file mode 100644 index 0000000..0406071 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k1drxwgn2quh" +path="res://.godot/imported/generalspell_f1_roar.png-77f318e9ca94abd80aa51213119540a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_roar.png" +dest_files=["res://.godot/imported/generalspell_f1_roar.png-77f318e9ca94abd80aa51213119540a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png new file mode 100644 index 0000000..6ceb0a5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png.import new file mode 100644 index 0000000..8e3fb8b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnh3331n3nlnn" +path="res://.godot/imported/generalspell_f1_tesmpest.png-d39023a1941b9fb6170c8942e7525662.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f1_tesmpest.png" +dest_files=["res://.godot/imported/generalspell_f1_tesmpest.png-d39023a1941b9fb6170c8942e7525662.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png new file mode 100644 index 0000000..92a97b0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png.import new file mode 100644 index 0000000..1b68107 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnixxp6f1ukkl" +path="res://.godot/imported/generalspell_f2_blink.png-0d29beb93d040a4c221dfe175706f27b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_blink.png" +dest_files=["res://.godot/imported/generalspell_f2_blink.png-0d29beb93d040a4c221dfe175706f27b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png new file mode 100644 index 0000000..2c71806 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png.import new file mode 100644 index 0000000..56fae04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bruxs81b2pwnc" +path="res://.godot/imported/generalspell_f2_phoenixfire.png-31fa8067341783ad9c9dfdadd976f166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_phoenixfire.png" +dest_files=["res://.godot/imported/generalspell_f2_phoenixfire.png-31fa8067341783ad9c9dfdadd976f166.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png new file mode 100644 index 0000000..07e2ae7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png.import new file mode 100644 index 0000000..987b01e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jds7x6wyovif" +path="res://.godot/imported/generalspell_f2_spellsword.png-8e1c0a200fbdd91865b6a99e208d1954.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_spellsword.png" +dest_files=["res://.godot/imported/generalspell_f2_spellsword.png-8e1c0a200fbdd91865b6a99e208d1954.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png new file mode 100644 index 0000000..1d25be7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png.import new file mode 100644 index 0000000..8caa7c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7a402xc4ru4k" +path="res://.godot/imported/generalspell_f2_twilightsurge.png-8cae246466acb74dda9984a320446769.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f2_twilightsurge.png" +dest_files=["res://.godot/imported/generalspell_f2_twilightsurge.png-8cae246466acb74dda9984a320446769.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png new file mode 100644 index 0000000..dedeb2b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png.import new file mode 100644 index 0000000..3307050 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blyhr5oojg71u" +path="res://.godot/imported/generalspell_f3_hex.png-3c032a9125082a505c2cd1e8b8df99f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_hex.png" +dest_files=["res://.godot/imported/generalspell_f3_hex.png-3c032a9125082a505c2cd1e8b8df99f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png new file mode 100644 index 0000000..d0d0441 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png.import new file mode 100644 index 0000000..e278136 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7ja76m8jsyh" +path="res://.godot/imported/generalspell_f3_psionicrecall.png-99a0d512567930317b157f2dc0753009.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_psionicrecall.png" +dest_files=["res://.godot/imported/generalspell_f3_psionicrecall.png-99a0d512567930317b157f2dc0753009.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png new file mode 100644 index 0000000..511521c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png.import new file mode 100644 index 0000000..db2ad1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djcffxy778wlq" +path="res://.godot/imported/generalspell_f3_windshroud2.png-8ffa6b458216575f3c46884b48d5c929.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f3_windshroud2.png" +dest_files=["res://.godot/imported/generalspell_f3_windshroud2.png-8ffa6b458216575f3c46884b48d5c929.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png new file mode 100644 index 0000000..ed2f579 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png.import new file mode 100644 index 0000000..179e304 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b42oddciumg35" +path="res://.godot/imported/generalspell_f4_husk.png-23b1e4f197989bbf5bcf1d9dc79b1583.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_husk.png" +dest_files=["res://.godot/imported/generalspell_f4_husk.png-23b1e4f197989bbf5bcf1d9dc79b1583.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png new file mode 100644 index 0000000..caf8355 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png.import new file mode 100644 index 0000000..a5e5958 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djpc3s50eqnd6" +path="res://.godot/imported/generalspell_f4_shadowspawn.png-0b9cbc95009e7f0d2eb1765837c65065.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_shadowspawn.png" +dest_files=["res://.godot/imported/generalspell_f4_shadowspawn.png-0b9cbc95009e7f0d2eb1765837c65065.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png new file mode 100644 index 0000000..7ad22cc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png.import new file mode 100644 index 0000000..90ba1f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1ubiq4rpibm5" +path="res://.godot/imported/generalspell_f4_superhusk.png-b4cda9b162d5916093981a7f63366b14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_superhusk.png" +dest_files=["res://.godot/imported/generalspell_f4_superhusk.png-b4cda9b162d5916093981a7f63366b14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png new file mode 100644 index 0000000..38f637d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png.import new file mode 100644 index 0000000..7a7b85b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bstkkqx5h2xgm" +path="res://.godot/imported/generalspell_f4_supershadowspawn.png-00612d37abc2367f7cb475cef4aecb4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supershadowspawn.png" +dest_files=["res://.godot/imported/generalspell_f4_supershadowspawn.png-00612d37abc2367f7cb475cef4aecb4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png new file mode 100644 index 0000000..d82d88c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png.import new file mode 100644 index 0000000..fa1fa0c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c12bfg02ahify" +path="res://.godot/imported/generalspell_f4_supertaint.png-19cfb44c7b2693822fd35c8e2614659b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_supertaint.png" +dest_files=["res://.godot/imported/generalspell_f4_supertaint.png-19cfb44c7b2693822fd35c8e2614659b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png new file mode 100644 index 0000000..82f63bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png.import new file mode 100644 index 0000000..0ef9dac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qha13ngew08p" +path="res://.godot/imported/generalspell_f4_taint.png-963d5eb9cf196a1f92922e81192e644f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f4_taint.png" +dest_files=["res://.godot/imported/generalspell_f4_taint.png-963d5eb9cf196a1f92922e81192e644f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png new file mode 100644 index 0000000..cd1d5e8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png.import new file mode 100644 index 0000000..cfced61 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be8ph0dxn4cdx" +path="res://.godot/imported/generalspell_f5_egg.png-d68d78e98e46980c48e99d9a0964e6cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_egg.png" +dest_files=["res://.godot/imported/generalspell_f5_egg.png-d68d78e98e46980c48e99d9a0964e6cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png new file mode 100644 index 0000000..0454b70 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png.import new file mode 100644 index 0000000..04aebcc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjnm7ofolcd4l" +path="res://.godot/imported/generalspell_f5_overload.png-ddbc4989431a11cd8e9490e077a9ece8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_overload.png" +dest_files=["res://.godot/imported/generalspell_f5_overload.png-ddbc4989431a11cd8e9490e077a9ece8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png new file mode 100644 index 0000000..9d6d609 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png.import new file mode 100644 index 0000000..2866713 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy27cveqm8t30" +path="res://.godot/imported/generalspell_f5_seekingeye.png-0ae1e0e52f2a1769bf98e8715f1b6411.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f5_seekingeye.png" +dest_files=["res://.godot/imported/generalspell_f5_seekingeye.png-0ae1e0e52f2a1769bf98e8715f1b6411.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png new file mode 100644 index 0000000..33f59b6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png.import new file mode 100644 index 0000000..3ee4c59 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy2cvkgue14fd" +path="res://.godot/imported/generalspell_f6_kinectcoil.png-06c74c11133543e0ddbace322c5bbfa6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_kinectcoil.png" +dest_files=["res://.godot/imported/generalspell_f6_kinectcoil.png-06c74c11133543e0ddbace322c5bbfa6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png new file mode 100644 index 0000000..44362a7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png.import new file mode 100644 index 0000000..983c516 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfrvkhg1ipkfd" +path="res://.godot/imported/generalspell_f6_stun.png-918db501e4319c209379cb4577bf8073.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_stun.png" +dest_files=["res://.godot/imported/generalspell_f6_stun.png-918db501e4319c209379cb4577bf8073.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png new file mode 100644 index 0000000..1066ce9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png.import new file mode 100644 index 0000000..72c01de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bltbj5rnty65u" +path="res://.godot/imported/generalspell_f6_warbird.png-e9f30e2d9f986404d5ab8a8fc2c3a856.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_warbird.png" +dest_files=["res://.godot/imported/generalspell_f6_warbird.png-e9f30e2d9f986404d5ab8a8fc2c3a856.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png new file mode 100644 index 0000000..4865289 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png.import new file mode 100644 index 0000000..0ca43fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfq2t6qsqgobv" +path="res://.godot/imported/generalspell_f6_waterball.png-24c3f9a3a9542884e862467316cec1c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/generalspell_f6_waterball.png" +dest_files=["res://.godot/imported/generalspell_f6_waterball.png-24c3f9a3a9542884e862467316cec1c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png new file mode 100644 index 0000000..2d723aa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png.import new file mode 100644 index 0000000..7cd6190 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctkswfm2wnokc" +path="res://.godot/imported/icon_f1_aegisbarrier.png-c0af1df53f61cb6b75ebebbb9caed17e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aegisbarrier.png" +dest_files=["res://.godot/imported/icon_f1_aegisbarrier.png-c0af1df53f61cb6b75ebebbb9caed17e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png new file mode 100644 index 0000000..88b555d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png.import new file mode 100644 index 0000000..450193e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhoguyd8s7bna" +path="res://.godot/imported/icon_f1_aerial_rift.png-2245f6cbf773606d1f5b3b758369bc4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aerial_rift.png" +dest_files=["res://.godot/imported/icon_f1_aerial_rift.png-2245f6cbf773606d1f5b3b758369bc4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png new file mode 100644 index 0000000..5be84ff Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png.import new file mode 100644 index 0000000..5495dbe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2axnxrasxbjh" +path="res://.godot/imported/icon_f1_afterglow.png-70288a29cff0f9bac3b237750e8abfb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_afterglow.png" +dest_files=["res://.godot/imported/icon_f1_afterglow.png-70288a29cff0f9bac3b237750e8abfb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png new file mode 100644 index 0000000..1647c2b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png.import new file mode 100644 index 0000000..06cea54 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7khy82jbexe2" +path="res://.godot/imported/icon_f1_aurynnexus.png-3cd2a6e1f40ff65480e6c462659c56e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_aurynnexus.png" +dest_files=["res://.godot/imported/icon_f1_aurynnexus.png-3cd2a6e1f40ff65480e6c462659c56e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png new file mode 100644 index 0000000..fefe99a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png.import new file mode 100644 index 0000000..a55fa31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccgrrjugkedjy" +path="res://.godot/imported/icon_f1_beamshock.png-1b4b70cacbf4aad798e8908adb88158c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_beamshock.png" +dest_files=["res://.godot/imported/icon_f1_beamshock.png-1b4b70cacbf4aad798e8908adb88158c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png new file mode 100644 index 0000000..daf14c9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png.import new file mode 100644 index 0000000..a2bf666 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fupwio5ps3cb" +path="res://.godot/imported/icon_f1_blessing.png-25aa627b869442ab8fda9eb30129e83c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_blessing.png" +dest_files=["res://.godot/imported/icon_f1_blessing.png-25aa627b869442ab8fda9eb30129e83c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png new file mode 100644 index 0000000..6162393 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png.import new file mode 100644 index 0000000..2ab85e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvlp8f03duhxn" +path="res://.godot/imported/icon_f1_breathoflife.png-d72b5f977910e05cc702b0766d7d7248.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_breathoflife.png" +dest_files=["res://.godot/imported/icon_f1_breathoflife.png-d72b5f977910e05cc702b0766d7d7248.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png new file mode 100644 index 0000000..bda8e39 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png.import new file mode 100644 index 0000000..88df941 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0cvfbm51hhkn" +path="res://.godot/imported/icon_f1_buffbloom.png-6849d3a811d3c71b7a807725d6d2f92b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_buffbloom.png" +dest_files=["res://.godot/imported/icon_f1_buffbloom.png-6849d3a811d3c71b7a807725d6d2f92b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png new file mode 100644 index 0000000..965b3c7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png.import new file mode 100644 index 0000000..1169895 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8nxnglahq0px" +path="res://.godot/imported/icon_f1_celestialconduit.png-a7624b23fef7f077dcea9269d1e9ef46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_celestialconduit.png" +dest_files=["res://.godot/imported/icon_f1_celestialconduit.png-a7624b23fef7f077dcea9269d1e9ef46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png new file mode 100644 index 0000000..702d301 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png.import new file mode 100644 index 0000000..3e99822 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cua8331a23ja6" +path="res://.godot/imported/icon_f1_chargeintobattle.png-fcfcf7f8993e0d55545fcb8f605c5cef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_chargeintobattle.png" +dest_files=["res://.godot/imported/icon_f1_chargeintobattle.png-fcfcf7f8993e0d55545fcb8f605c5cef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png new file mode 100644 index 0000000..c2ff392 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png.import new file mode 100644 index 0000000..3ab4bef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bctq5bijs0tbb" +path="res://.godot/imported/icon_f1_circleoflife.png-73b2e0dc2ec22a325faadcb6e232078b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_circleoflife.png" +dest_files=["res://.godot/imported/icon_f1_circleoflife.png-73b2e0dc2ec22a325faadcb6e232078b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png new file mode 100644 index 0000000..ecdc0ee Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png.import new file mode 100644 index 0000000..a4d0c7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bua0jb4lgwkgl" +path="res://.godot/imported/icon_f1_decimate.png-f70946d5ece8ec939c093d5341d2b1cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_decimate.png" +dest_files=["res://.godot/imported/icon_f1_decimate.png-f70946d5ece8ec939c093d5341d2b1cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png new file mode 100644 index 0000000..de9007e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png.import new file mode 100644 index 0000000..fa1ebf3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo2hddefx2jxq" +path="res://.godot/imported/icon_f1_divinebond.png-174d745026065d68de31b2a7a1b1a0d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinebond.png" +dest_files=["res://.godot/imported/icon_f1_divinebond.png-174d745026065d68de31b2a7a1b1a0d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png new file mode 100644 index 0000000..c9827d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png.import new file mode 100644 index 0000000..86d33d6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b716i1xysqwnj" +path="res://.godot/imported/icon_f1_divinestbond.png-5109af5b3880f4516ba051350134f97c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_divinestbond.png" +dest_files=["res://.godot/imported/icon_f1_divinestbond.png-5109af5b3880f4516ba051350134f97c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png new file mode 100644 index 0000000..f8adeef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png.import new file mode 100644 index 0000000..d3fb079 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c658ssss7r5iw" +path="res://.godot/imported/icon_f1_drainingwave.png-718e96988a613bb1e4fad4da470591d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_drainingwave.png" +dest_files=["res://.godot/imported/icon_f1_drainingwave.png-718e96988a613bb1e4fad4da470591d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png new file mode 100644 index 0000000..6cacd19 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png.import new file mode 100644 index 0000000..4de6e06 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clnckmpdblcni" +path="res://.godot/imported/icon_f1_enthrall.png-63aea9d015bd7003b37707cf5feeb98c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_enthrall.png" +dest_files=["res://.godot/imported/icon_f1_enthrall.png-63aea9d015bd7003b37707cf5feeb98c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png new file mode 100644 index 0000000..11ee3db Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png.import new file mode 100644 index 0000000..9d1dd23 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyylayxei464h" +path="res://.godot/imported/icon_f1_fortifiedassault.png-b9720b697e51220f0be5519acf0f9bf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_fortifiedassault.png" +dest_files=["res://.godot/imported/icon_f1_fortifiedassault.png-b9720b697e51220f0be5519acf0f9bf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png new file mode 100644 index 0000000..57579ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png.import new file mode 100644 index 0000000..2bd9324 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6fycjnkk4uci" +path="res://.godot/imported/icon_f1_greatergood.png-a0f1de25556b3c15397aaea62e481e97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_greatergood.png" +dest_files=["res://.godot/imported/icon_f1_greatergood.png-a0f1de25556b3c15397aaea62e481e97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png new file mode 100644 index 0000000..2efbe09 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png.import new file mode 100644 index 0000000..0b8d20e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfihkcbi67riv" +path="res://.godot/imported/icon_f1_holyimmolation.png-e5a4be538b5e61c6cf444452294e7596.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_holyimmolation.png" +dest_files=["res://.godot/imported/icon_f1_holyimmolation.png-e5a4be538b5e61c6cf444452294e7596.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png new file mode 100644 index 0000000..812b108 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png.import new file mode 100644 index 0000000..c0241b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b77qkmren11lq" +path="res://.godot/imported/icon_f1_increasingdominance.png-9fbd1c95adf84bc15f7535bbedef6ace.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_increasingdominance.png" +dest_files=["res://.godot/imported/icon_f1_increasingdominance.png-9fbd1c95adf84bc15f7535bbedef6ace.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png new file mode 100644 index 0000000..d30d1ae Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png.import new file mode 100644 index 0000000..40d1698 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqmrcindi05nw" +path="res://.godot/imported/icon_f1_invincible.png-6a274ea1d78c420be029460049cf4c21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_invincible.png" +dest_files=["res://.godot/imported/icon_f1_invincible.png-6a274ea1d78c420be029460049cf4c21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png new file mode 100644 index 0000000..0b438a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png.import new file mode 100644 index 0000000..e276af9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5tp4q46vb35" +path="res://.godot/imported/icon_f1_lastingjudgement.png-c1512f63ff5e4875f5c27cd3f178bf08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lastingjudgement.png" +dest_files=["res://.godot/imported/icon_f1_lastingjudgement.png-c1512f63ff5e4875f5c27cd3f178bf08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png new file mode 100644 index 0000000..09db8fc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png.import new file mode 100644 index 0000000..280671d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj1l63cg8x706" +path="res://.godot/imported/icon_f1_laststand.png-60b30bc867798abbdbd1eff35daeb581.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_laststand.png" +dest_files=["res://.godot/imported/icon_f1_laststand.png-60b30bc867798abbdbd1eff35daeb581.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png new file mode 100644 index 0000000..98e9068 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png.import new file mode 100644 index 0000000..93acdf2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ha8qk1w3a555" +path="res://.godot/imported/icon_f1_lifecoil.png-1d631a47260c7be01796fe3f45ebbb75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lifecoil.png" +dest_files=["res://.godot/imported/icon_f1_lifecoil.png-1d631a47260c7be01796fe3f45ebbb75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png new file mode 100644 index 0000000..543c20a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png.import new file mode 100644 index 0000000..c8d29f8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdamh0416dchi" +path="res://.godot/imported/icon_f1_lionheartblessing.png-d814ac9e5eede6c9fcd8e367dfebd349.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lionheartblessing.png" +dest_files=["res://.godot/imported/icon_f1_lionheartblessing.png-d814ac9e5eede6c9fcd8e367dfebd349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png new file mode 100644 index 0000000..2d6e927 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png.import new file mode 100644 index 0000000..c181a75 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e27d76q6h8fo" +path="res://.godot/imported/icon_f1_lucentbeam.png-902a27d56f0b318fd846bf5a8b5f134c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_lucentbeam.png" +dest_files=["res://.godot/imported/icon_f1_lucentbeam.png-902a27d56f0b318fd846bf5a8b5f134c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png new file mode 100644 index 0000000..899002f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png.import new file mode 100644 index 0000000..08537ed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2rushjlwct4f" +path="res://.godot/imported/icon_f1_magnetize.png-3ef0edb05490dda450a52e0fc772595e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_magnetize.png" +dest_files=["res://.godot/imported/icon_f1_magnetize.png-3ef0edb05490dda450a52e0fc772595e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png new file mode 100644 index 0000000..e3bf7c8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png.import new file mode 100644 index 0000000..752ef7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb8qt0u8ek5o4" +path="res://.godot/imported/icon_f1_martydom.png-130f4f367660bfcfba5cc2e6cbc5ebd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_martydom.png" +dest_files=["res://.godot/imported/icon_f1_martydom.png-130f4f367660bfcfba5cc2e6cbc5ebd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png new file mode 100644 index 0000000..a296d32 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png.import new file mode 100644 index 0000000..888df75 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvogqbf6w3byb" +path="res://.godot/imported/icon_f1_oncemore.png-4aee8f4342bd3c84d7beda14fdc501a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_oncemore.png" +dest_files=["res://.godot/imported/icon_f1_oncemore.png-4aee8f4342bd3c84d7beda14fdc501a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png new file mode 100644 index 0000000..5990426 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png.import new file mode 100644 index 0000000..99894af --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgb5fuqpkalih" +path="res://.godot/imported/icon_f1_presstheattack.png-57ee98728545521791036b07e88b4b19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_presstheattack.png" +dest_files=["res://.godot/imported/icon_f1_presstheattack.png-57ee98728545521791036b07e88b4b19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png new file mode 100644 index 0000000..2b449ec Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png.import new file mode 100644 index 0000000..0140b33 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba5imtju7a308" +path="res://.godot/imported/icon_f1_prismbarrier.png-015b0a45a4b87a9efd52b28597540162.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_prismbarrier.png" +dest_files=["res://.godot/imported/icon_f1_prismbarrier.png-015b0a45a4b87a9efd52b28597540162.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png new file mode 100644 index 0000000..6d65a23 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png.import new file mode 100644 index 0000000..f37ed4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cerdixxdjhjy8" +path="res://.godot/imported/icon_f1_rally.png-f4ad0e5152150aecb62bedda0c535230.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rally.png" +dest_files=["res://.godot/imported/icon_f1_rally.png-f4ad0e5152150aecb62bedda0c535230.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png new file mode 100644 index 0000000..7079ed4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png.import new file mode 100644 index 0000000..2865074 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3yvwsu10wq3v" +path="res://.godot/imported/icon_f1_rayoflight.png-408756891e219c9392b199f28b12ea87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_rayoflight.png" +dest_files=["res://.godot/imported/icon_f1_rayoflight.png-408756891e219c9392b199f28b12ea87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png new file mode 100644 index 0000000..25e639e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png.import new file mode 100644 index 0000000..e7feb52 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqu1beqj5cqvm" +path="res://.godot/imported/icon_f1_resilience.png-52339fd442d8574dd5917b6abe4e189e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_resilience.png" +dest_files=["res://.godot/imported/icon_f1_resilience.png-52339fd442d8574dd5917b6abe4e189e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png new file mode 100644 index 0000000..b8b6cde Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png.import new file mode 100644 index 0000000..f240bf4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q4o7vld3pskl" +path="res://.godot/imported/icon_f1_skyburial.png-8942c74348e83f6334b29845789fa0e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyburial.png" +dest_files=["res://.godot/imported/icon_f1_skyburial.png-8942c74348e83f6334b29845789fa0e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png new file mode 100644 index 0000000..dffd393 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png.import new file mode 100644 index 0000000..a01869d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv2t1sewykrcb" +path="res://.godot/imported/icon_f1_skyphalanx.png-3bedfb2231a0314a45dab8c29a73ed1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_skyphalanx.png" +dest_files=["res://.godot/imported/icon_f1_skyphalanx.png-3bedfb2231a0314a45dab8c29a73ed1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png new file mode 100644 index 0000000..0f8f2c9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png.import new file mode 100644 index 0000000..94d356f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tri5y5245deo" +path="res://.godot/imported/icon_f1_standtogether.png-f64c28d8308efb453cdd5dcbd98b0fc4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_standtogether.png" +dest_files=["res://.godot/imported/icon_f1_standtogether.png-f64c28d8308efb453cdd5dcbd98b0fc4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png new file mode 100644 index 0000000..85bcb16 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png.import new file mode 100644 index 0000000..b5b977f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt8brcupaydpe" +path="res://.godot/imported/icon_f1_sunbloom.png-5bb9b3d02bc476d92d8963218478b0f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sunbloom.png" +dest_files=["res://.godot/imported/icon_f1_sunbloom.png-5bb9b3d02bc476d92d8963218478b0f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png new file mode 100644 index 0000000..208fc6d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png.import new file mode 100644 index 0000000..9d66752 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1w02wvvuryrd" +path="res://.godot/imported/icon_f1_sundropelixir.png-3439923b0b4feacd53e00f03a9b2a1ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_sundropelixir.png" +dest_files=["res://.godot/imported/icon_f1_sundropelixir.png-3439923b0b4feacd53e00f03a9b2a1ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png new file mode 100644 index 0000000..60d95f3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png.import new file mode 100644 index 0000000..f233620 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy58ioq30pam6" +path="res://.godot/imported/icon_f1_tempest.png-a36ffdd61be9f708580fbaa00dd5542d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_tempest.png" +dest_files=["res://.godot/imported/icon_f1_tempest.png-a36ffdd61be9f708580fbaa00dd5542d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png new file mode 100644 index 0000000..da7e74f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png.import new file mode 100644 index 0000000..89af364 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rqjoqunuh3vd" +path="res://.godot/imported/icon_f1_togetherness.png-128b755e56378b404a9189a6f3ea38cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_togetherness.png" +dest_files=["res://.godot/imported/icon_f1_togetherness.png-128b755e56378b404a9189a6f3ea38cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png new file mode 100644 index 0000000..9e603f4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png.import new file mode 100644 index 0000000..968bc63 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drsr04gvsxbnx" +path="res://.godot/imported/icon_f1_trinityoath.png-10164166967d5180db946a0cdc6a422c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_trinityoath.png" +dest_files=["res://.godot/imported/icon_f1_trinityoath.png-10164166967d5180db946a0cdc6a422c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png new file mode 100644 index 0000000..be40f7e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png.import new file mode 100644 index 0000000..60d9553 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr7dwvo4qi015" +path="res://.godot/imported/icon_f1_truestrike.png-423e228f101c84940af3a6888291253b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_truestrike.png" +dest_files=["res://.godot/imported/icon_f1_truestrike.png-423e228f101c84940af3a6888291253b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png new file mode 100644 index 0000000..071a16c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png.import new file mode 100644 index 0000000..6147729 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bomife3takrim" +path="res://.godot/imported/icon_f1_warsurge.png-9a08def05224b2c569f6b3aac08da1df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f1_warsurge.png" +dest_files=["res://.godot/imported/icon_f1_warsurge.png-9a08def05224b2c569f6b3aac08da1df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png new file mode 100644 index 0000000..a64ca5c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png.import new file mode 100644 index 0000000..07da5e4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmn3ua6awbhq5" +path="res://.godot/imported/icon_f2_ancestralpact.png-485af3ef606698f2b5e12c50230ddcb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ancestralpact.png" +dest_files=["res://.godot/imported/icon_f2_ancestralpact.png-485af3ef606698f2b5e12c50230ddcb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png new file mode 100644 index 0000000..f9d5e5a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png.import new file mode 100644 index 0000000..61fbacf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3anwn18yq61v" +path="res://.godot/imported/icon_f2_artifact_defiler.png-a97782a6f34838132c4716c601d1493b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_artifact_defiler.png" +dest_files=["res://.godot/imported/icon_f2_artifact_defiler.png-a97782a6f34838132c4716c601d1493b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png new file mode 100644 index 0000000..b704fe5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png.import new file mode 100644 index 0000000..9fdce94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ubrucqibl45b" +path="res://.godot/imported/icon_f2_bombard.png-623d948b7661e2b2401847797a016285.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_bombard.png" +dest_files=["res://.godot/imported/icon_f2_bombard.png-623d948b7661e2b2401847797a016285.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png new file mode 100644 index 0000000..2780c7e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png.import new file mode 100644 index 0000000..2ee53da --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6iugf4153cwi" +path="res://.godot/imported/icon_f2_cobrastrike.png-7890f184edf03351809ae8d97a34854e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_cobrastrike.png" +dest_files=["res://.godot/imported/icon_f2_cobrastrike.png-7890f184edf03351809ae8d97a34854e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png new file mode 100644 index 0000000..060e9db Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png.import new file mode 100644 index 0000000..ecc7d2c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbd35rk4yesro" +path="res://.godot/imported/icon_f2_crimsoncoil.png-8c9271ded6e2e4c6f39d8b98cb4ba586.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_crimsoncoil.png" +dest_files=["res://.godot/imported/icon_f2_crimsoncoil.png-8c9271ded6e2e4c6f39d8b98cb4ba586.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png new file mode 100644 index 0000000..6eb1787 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png.import new file mode 100644 index 0000000..1880662 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq2468k0utelp" +path="res://.godot/imported/icon_f2_deathstrikeseal.png-3284c1ec6c18c7d753fce4c5ebb15d59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_deathstrikeseal.png" +dest_files=["res://.godot/imported/icon_f2_deathstrikeseal.png-3284c1ec6c18c7d753fce4c5ebb15d59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png new file mode 100644 index 0000000..16db769 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png.import new file mode 100644 index 0000000..98a338e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dae7ynpib4qnr" +path="res://.godot/imported/icon_f2_dejavu.png-62943a7158b54199516fb3f2c549d391.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_dejavu.png" +dest_files=["res://.godot/imported/icon_f2_dejavu.png-62943a7158b54199516fb3f2c549d391.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png new file mode 100644 index 0000000..ee9eaf6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png.import new file mode 100644 index 0000000..37c1f59 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkoewbq41vrvy" +path="res://.godot/imported/icon_f2_earthtwilight.png-c41ad1e51e773717315325170d490e39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_earthtwilight.png" +dest_files=["res://.godot/imported/icon_f2_earthtwilight.png-c41ad1e51e773717315325170d490e39.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png new file mode 100644 index 0000000..be97446 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png.import new file mode 100644 index 0000000..8eb845e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2ivhvvytpa4a" +path="res://.godot/imported/icon_f2_eightgates.png-a2548de8dc786f702e54178fe56e113b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_eightgates.png" +dest_files=["res://.godot/imported/icon_f2_eightgates.png-a2548de8dc786f702e54178fe56e113b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png new file mode 100644 index 0000000..239547d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png.import new file mode 100644 index 0000000..1954a99 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3hq3e2i3v61h" +path="res://.godot/imported/icon_f2_enpassant.png-e9765135431267e874797c6a1139c930.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_enpassant.png" +dest_files=["res://.godot/imported/icon_f2_enpassant.png-e9765135431267e874797c6a1139c930.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png new file mode 100644 index 0000000..318a73b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png.import new file mode 100644 index 0000000..b26e9f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba284iwemmafn" +path="res://.godot/imported/icon_f2_etherealblades.png-a9b133792b1ffd96764960dde677f105.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_etherealblades.png" +dest_files=["res://.godot/imported/icon_f2_etherealblades.png-a9b133792b1ffd96764960dde677f105.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png new file mode 100644 index 0000000..f29a99a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png.import new file mode 100644 index 0000000..eb35f97 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ikrb1mxdktn" +path="res://.godot/imported/icon_f2_firestormofagony.png-750e5c35543e4f512dbfa8807897b3bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_firestormofagony.png" +dest_files=["res://.godot/imported/icon_f2_firestormofagony.png-750e5c35543e4f512dbfa8807897b3bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png new file mode 100644 index 0000000..e7b36a4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png.import new file mode 100644 index 0000000..4a32363 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://detf2tak0u5kq" +path="res://.godot/imported/icon_f2_ghost_lightning.png-3f6b4ad80c9fde84ebaddc7affd24ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ghost_lightning.png" +dest_files=["res://.godot/imported/icon_f2_ghost_lightning.png-3f6b4ad80c9fde84ebaddc7affd24ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png new file mode 100644 index 0000000..d9ea755 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png.import new file mode 100644 index 0000000..978809b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4ksmr6lpo1t6" +path="res://.godot/imported/icon_f2_gogetem.png-faec30a5a9c3f98c77dcf07c6892c9b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gogetem.png" +dest_files=["res://.godot/imported/icon_f2_gogetem.png-faec30a5a9c3f98c77dcf07c6892c9b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png new file mode 100644 index 0000000..9c9089d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png.import new file mode 100644 index 0000000..da07a5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cecspu3t5lgkb" +path="res://.godot/imported/icon_f2_gotatsu.png-bea510852f6b584845d3c5526ac0fbcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_gotatsu.png" +dest_files=["res://.godot/imported/icon_f2_gotatsu.png-bea510852f6b584845d3c5526ac0fbcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png new file mode 100644 index 0000000..2ec4b33 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png.import new file mode 100644 index 0000000..310a78d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfcor173rxp0r" +path="res://.godot/imported/icon_f2_heavens_eclipse.png-4724aadfc58c1717d668f367f698ab89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_heavens_eclipse.png" +dest_files=["res://.godot/imported/icon_f2_heavens_eclipse.png-4724aadfc58c1717d668f367f698ab89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png new file mode 100644 index 0000000..d126c3c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png.import new file mode 100644 index 0000000..a4891df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1bvd5ymk4rxj" +path="res://.godot/imported/icon_f2_hellskitchen.png-1a7c011974aa454e6b62436dc210915d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hellskitchen.png" +dest_files=["res://.godot/imported/icon_f2_hellskitchen.png-1a7c011974aa454e6b62436dc210915d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png new file mode 100644 index 0000000..296a5ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png.import new file mode 100644 index 0000000..bb9270b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ijsxrgvfgafb" +path="res://.godot/imported/icon_f2_hollowvortex.png-ac1a82b5ec07c903dd9a9a3afc39d19a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_hollowvortex.png" +dest_files=["res://.godot/imported/icon_f2_hollowvortex.png-ac1a82b5ec07c903dd9a9a3afc39d19a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png new file mode 100644 index 0000000..0fee681 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png.import new file mode 100644 index 0000000..03bd397 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0dwu8xfl8o0e" +path="res://.godot/imported/icon_f2_inner_focus.png-e8db8a3e47e52f7d223b0a0e9a92d8a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_inner_focus.png" +dest_files=["res://.godot/imported/icon_f2_inner_focus.png-e8db8a3e47e52f7d223b0a0e9a92d8a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png new file mode 100644 index 0000000..eb961e6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png.import new file mode 100644 index 0000000..1732f3f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://88erj3qh6db5" +path="res://.godot/imported/icon_f2_joseki.png-db4a04ca2fee2de39e0458823f917ab2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_joseki.png" +dest_files=["res://.godot/imported/icon_f2_joseki.png-db4a04ca2fee2de39e0458823f917ab2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png new file mode 100644 index 0000000..a8ac0e7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png.import new file mode 100644 index 0000000..31bcf4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfcasj4psvepp" +path="res://.godot/imported/icon_f2_juxtaposition.png-7c115113ea102d89686ff61593a6653d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtaposition.png" +dest_files=["res://.godot/imported/icon_f2_juxtaposition.png-7c115113ea102d89686ff61593a6653d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png new file mode 100644 index 0000000..376ba56 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png.import new file mode 100644 index 0000000..c10996b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdey01nmbg0wg" +path="res://.godot/imported/icon_f2_juxtfriends.png-1ea268120d46148b70fe3d3238fbb71c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_juxtfriends.png" +dest_files=["res://.godot/imported/icon_f2_juxtfriends.png-1ea268120d46148b70fe3d3238fbb71c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png new file mode 100644 index 0000000..ca44d44 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png.import new file mode 100644 index 0000000..f3d57c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dil5bkor3vrj2" +path="res://.godot/imported/icon_f2_kagelightning.png-07278d0a0972663aed356c9ca8e4e896.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kagelightning.png" +dest_files=["res://.godot/imported/icon_f2_kagelightning.png-07278d0a0972663aed356c9ca8e4e896.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png new file mode 100644 index 0000000..82fdff7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png.import new file mode 100644 index 0000000..65b2ced --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsivs17pw4eec" +path="res://.godot/imported/icon_f2_killingedge.png-c2a13d4cc2fa49d5444587400d838d5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_killingedge.png" +dest_files=["res://.godot/imported/icon_f2_killingedge.png-c2a13d4cc2fa49d5444587400d838d5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png new file mode 100644 index 0000000..b1fa677 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png.import new file mode 100644 index 0000000..7ec9dc8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://epqkvjx2jmyv" +path="res://.godot/imported/icon_f2_kindle.png-ace28504d8a07f9cf0a2206720be211e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_kindle.png" +dest_files=["res://.godot/imported/icon_f2_kindle.png-ace28504d8a07f9cf0a2206720be211e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png new file mode 100644 index 0000000..047e00a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png.import new file mode 100644 index 0000000..fbf7976 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwa26flmdguo6" +path="res://.godot/imported/icon_f2_koanofhorns.png-dabe6790ba8421419ca0b2883083db8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_koanofhorns.png" +dest_files=["res://.godot/imported/icon_f2_koanofhorns.png-dabe6790ba8421419ca0b2883083db8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png new file mode 100644 index 0000000..1e7029e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png.import new file mode 100644 index 0000000..2d96c7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvju0765hdrvx" +path="res://.godot/imported/icon_f2_mana_vortex.png-6f2d178af00e84805f9b24daf9649aae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mana_vortex.png" +dest_files=["res://.godot/imported/icon_f2_mana_vortex.png-6f2d178af00e84805f9b24daf9649aae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png new file mode 100644 index 0000000..2861523 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png.import new file mode 100644 index 0000000..8fbbc01 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://shq14ow6eilq" +path="res://.godot/imported/icon_f2_mechprogress.png-94f1d289661e662ba86a87045ddb7d7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mechprogress.png" +dest_files=["res://.godot/imported/icon_f2_mechprogress.png-94f1d289661e662ba86a87045ddb7d7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png new file mode 100644 index 0000000..3caf7f4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png.import new file mode 100644 index 0000000..113122c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxov85lyvy238" +path="res://.godot/imported/icon_f2_mirrormeld.png-768f876b1423555ce48eb7818079fc75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mirrormeld.png" +dest_files=["res://.godot/imported/icon_f2_mirrormeld.png-768f876b1423555ce48eb7818079fc75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png new file mode 100644 index 0000000..7f03149 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png.import new file mode 100644 index 0000000..d66a59e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgy241s6q1j32" +path="res://.godot/imported/icon_f2_mistdragonseal.png-ca5427319ca1a940f0cba9dfc6da701b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistdragonseal.png" +dest_files=["res://.godot/imported/icon_f2_mistdragonseal.png-ca5427319ca1a940f0cba9dfc6da701b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png new file mode 100644 index 0000000..d0b13a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png.import new file mode 100644 index 0000000..86ef4b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3mylkdyb84q7" +path="res://.godot/imported/icon_f2_mistwalking.png-0e4e3e96d5683ce96d661aefda41c7a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_mistwalking.png" +dest_files=["res://.godot/imported/icon_f2_mistwalking.png-0e4e3e96d5683ce96d661aefda41c7a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png new file mode 100644 index 0000000..e33e003 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png.import new file mode 100644 index 0000000..b059ab5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g63jm0th5pxy" +path="res://.godot/imported/icon_f2_ninjutsumagics.png-ce4f146c95641323f43076acff134b46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ninjutsumagics.png" +dest_files=["res://.godot/imported/icon_f2_ninjutsumagics.png-ce4f146c95641323f43076acff134b46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png new file mode 100644 index 0000000..e580ffd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png.import new file mode 100644 index 0000000..4be5bb2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br04k8svoo5iy" +path="res://.godot/imported/icon_f2_obscuringblow.png-8867c2e18879b11119968a016ae0248a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_obscuringblow.png" +dest_files=["res://.godot/imported/icon_f2_obscuringblow.png-8867c2e18879b11119968a016ae0248a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png new file mode 100644 index 0000000..69e825a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png.import new file mode 100644 index 0000000..fc7aa3d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da6m7vyk8biw5" +path="res://.godot/imported/icon_f2_onyxbearseal.png-ed5013c00c5d41a5ca059db72f2aabff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_onyxbearseal.png" +dest_files=["res://.godot/imported/icon_f2_onyxbearseal.png-ed5013c00c5d41a5ca059db72f2aabff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png new file mode 100644 index 0000000..79c277e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png.import new file mode 100644 index 0000000..1256920 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctab1vv2manpw" +path="res://.godot/imported/icon_f2_pandajail.png-d46d77475ebf7fe75c0d6e7f30f5b45b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_pandajail.png" +dest_files=["res://.godot/imported/icon_f2_pandajail.png-d46d77475ebf7fe75c0d6e7f30f5b45b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png new file mode 100644 index 0000000..6f6c9a1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png.import new file mode 100644 index 0000000..9051560 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5tji7ola82ne" +path="res://.godot/imported/icon_f2_panddohug.png-b7a17237e88cc9d55630124c6794f903.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_panddohug.png" +dest_files=["res://.godot/imported/icon_f2_panddohug.png-b7a17237e88cc9d55630124c6794f903.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png new file mode 100644 index 0000000..08a29fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png.import new file mode 100644 index 0000000..6c1a71a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxt3vui5uelr8" +path="res://.godot/imported/icon_f2_phoenixbarrage.png-d352096a651fd1006c1916edcb5fe358.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixbarrage.png" +dest_files=["res://.godot/imported/icon_f2_phoenixbarrage.png-d352096a651fd1006c1916edcb5fe358.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png new file mode 100644 index 0000000..2f67374 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png.import new file mode 100644 index 0000000..7c5a5c2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cucw8240ejsg" +path="res://.godot/imported/icon_f2_phoenixfire.png-b18cdfdb749edddc3e134cd1be306bb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire.png" +dest_files=["res://.godot/imported/icon_f2_phoenixfire.png-b18cdfdb749edddc3e134cd1be306bb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png new file mode 100644 index 0000000..2f67374 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png.import new file mode 100644 index 0000000..7c6fdee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbb8h1bkkeicc" +path="res://.godot/imported/icon_f2_phoenixfire02.png-4641e5e30a7ae8e550c54ccaef14dddd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_phoenixfire02.png" +dest_files=["res://.godot/imported/icon_f2_phoenixfire02.png-4641e5e30a7ae8e550c54ccaef14dddd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png new file mode 100644 index 0000000..e9c7cfc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png.import new file mode 100644 index 0000000..5bdc3d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccx5m8bpqe5ed" +path="res://.godot/imported/icon_f2_projection.png-a5c2f098b280fa040e514b4c3a11fd7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_projection.png" +dest_files=["res://.godot/imported/icon_f2_projection.png-a5c2f098b280fa040e514b4c3a11fd7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png new file mode 100644 index 0000000..540abfa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png.import new file mode 100644 index 0000000..b38c8c3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcje2nuggfhfu" +path="res://.godot/imported/icon_f2_saberspineseal.png-7bac2c3fe321b4e500196d2ad17cb584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_saberspineseal.png" +dest_files=["res://.godot/imported/icon_f2_saberspineseal.png-7bac2c3fe321b4e500196d2ad17cb584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png new file mode 100644 index 0000000..e876920 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png.import new file mode 100644 index 0000000..7fdc4d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwgwppna6nyf6" +path="res://.godot/imported/icon_f2_seekersquad.png-ae8630a79d645e52d8348cd9bf2e0410.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_seekersquad.png" +dest_files=["res://.godot/imported/icon_f2_seekersquad.png-ae8630a79d645e52d8348cd9bf2e0410.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png new file mode 100644 index 0000000..6e1ef51 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png.import new file mode 100644 index 0000000..3867d3b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1tnhtjsolw42" +path="res://.godot/imported/icon_f2_shadowwaltz.png-a45534bde33a1f068e18f5b9bdbbf561.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_shadowwaltz.png" +dest_files=["res://.godot/imported/icon_f2_shadowwaltz.png-a45534bde33a1f068e18f5b9bdbbf561.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png new file mode 100644 index 0000000..9d35ed1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png.import new file mode 100644 index 0000000..f654466 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chxi5osx6npe8" +path="res://.godot/imported/icon_f2_spellsword_darkness.png-99ed2ab2a6f2e3e648f0665239cb92e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_darkness.png" +dest_files=["res://.godot/imported/icon_f2_spellsword_darkness.png-99ed2ab2a6f2e3e648f0665239cb92e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png new file mode 100644 index 0000000..20fd473 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png.import new file mode 100644 index 0000000..6400357 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6nvly2lqk0qp" +path="res://.godot/imported/icon_f2_spellsword_earth.png-8a66fedced7cdfd95ab898408657a4fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_earth.png" +dest_files=["res://.godot/imported/icon_f2_spellsword_earth.png-8a66fedced7cdfd95ab898408657a4fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png new file mode 100644 index 0000000..30c39cf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png.import new file mode 100644 index 0000000..19b3eda --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1cwufso7sebb" +path="res://.godot/imported/icon_f2_spellsword_light.png-d20d58a6f9d251c1e64d1c7577c52723.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_light.png" +dest_files=["res://.godot/imported/icon_f2_spellsword_light.png-d20d58a6f9d251c1e64d1c7577c52723.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png new file mode 100644 index 0000000..c3abcb6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png.import new file mode 100644 index 0000000..ca337d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nlsjqpgdcmsd" +path="res://.godot/imported/icon_f2_spellsword_wind.png-61394c6e9d1f59ef428b47d2cd2e53b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spellsword_wind.png" +dest_files=["res://.godot/imported/icon_f2_spellsword_wind.png-61394c6e9d1f59ef428b47d2cd2e53b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png new file mode 100644 index 0000000..6473d16 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png.import new file mode 100644 index 0000000..6bd333c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://va1xoeylndkx" +path="res://.godot/imported/icon_f2_spiralcounter.png-1288937c4b5b84050398df197d952ce8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiralcounter.png" +dest_files=["res://.godot/imported/icon_f2_spiralcounter.png-1288937c4b5b84050398df197d952ce8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png new file mode 100644 index 0000000..50313f7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png.import new file mode 100644 index 0000000..3d97360 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvxtc2fpaey20" +path="res://.godot/imported/icon_f2_spiraltechnique.png-f0b80132d5f83bc5c74413d09cdf8ca5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_spiraltechnique.png" +dest_files=["res://.godot/imported/icon_f2_spiraltechnique.png-f0b80132d5f83bc5c74413d09cdf8ca5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png new file mode 100644 index 0000000..cee38cf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png.import new file mode 100644 index 0000000..67276e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4gsg3ikyxp0l" +path="res://.godot/imported/icon_f2_twin_strike.png-585705b796171afdbd2c50f98fc7e147.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_twin_strike.png" +dest_files=["res://.godot/imported/icon_f2_twin_strike.png-585705b796171afdbd2c50f98fc7e147.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png new file mode 100644 index 0000000..ed84f27 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png.import new file mode 100644 index 0000000..ce1ca94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr3s3gycclur8" +path="res://.godot/imported/icon_f2_ursamonsoon.png-7154575ebc7bea646afe9010dc7a4000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f2_ursamonsoon.png" +dest_files=["res://.godot/imported/icon_f2_ursamonsoon.png-7154575ebc7bea646afe9010dc7a4000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png new file mode 100644 index 0000000..30885bf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png.import new file mode 100644 index 0000000..4c79042 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csqcg6wknejsb" +path="res://.godot/imported/icon_f3_astraflood.png-9352a19ec155c7b88b465db6b423db46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astraflood.png" +dest_files=["res://.godot/imported/icon_f3_astraflood.png-9352a19ec155c7b88b465db6b423db46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png new file mode 100644 index 0000000..3c88404 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png.import new file mode 100644 index 0000000..681bf5d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dminmyln51dcc" +path="res://.godot/imported/icon_f3_astralphasing.png-86f5f641cfb5ba2136542bc2ec1e7986.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_astralphasing.png" +dest_files=["res://.godot/imported/icon_f3_astralphasing.png-86f5f641cfb5ba2136542bc2ec1e7986.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png new file mode 100644 index 0000000..08ac32e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png.import new file mode 100644 index 0000000..c1869ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv7gvsyisdkbw" +path="res://.godot/imported/icon_f3_aurorastear.png-3ad3ede8f7e3a0de6ab7133ffc628b98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_aurorastear.png" +dest_files=["res://.godot/imported/icon_f3_aurorastear.png-3ad3ede8f7e3a0de6ab7133ffc628b98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png new file mode 100644 index 0000000..67f230b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png.import new file mode 100644 index 0000000..f484dd1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqn7bsot3p66a" +path="res://.godot/imported/icon_f3_autarchsgift.png-f9b3ef4eef84d2a3dc865e7b0c1c111c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_autarchsgift.png" +dest_files=["res://.godot/imported/icon_f3_autarchsgift.png-f9b3ef4eef84d2a3dc865e7b0c1c111c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png new file mode 100644 index 0000000..d3b9996 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png.import new file mode 100644 index 0000000..75b5d2a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bomao1gvmqrsu" +path="res://.godot/imported/icon_f3_azuresummoning.png-905758f4c40ff0f51fbe8d4efc2917c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_azuresummoning.png" +dest_files=["res://.godot/imported/icon_f3_azuresummoning.png-905758f4c40ff0f51fbe8d4efc2917c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png new file mode 100644 index 0000000..4c41cd7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png.import new file mode 100644 index 0000000..df4b94e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buycm3wnmi2hw" +path="res://.godot/imported/icon_f3_blindscorch.png-eb1ce27cde2f38ff6f11851f84ef8ffb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_blindscorch.png" +dest_files=["res://.godot/imported/icon_f3_blindscorch.png-eb1ce27cde2f38ff6f11851f84ef8ffb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png new file mode 100644 index 0000000..58f0202 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png.import new file mode 100644 index 0000000..1d3856c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt38ies8eypby" +path="res://.godot/imported/icon_f3_bloodofair.png-e4a864906dc260509aa4ef46f6626b56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_bloodofair.png" +dest_files=["res://.godot/imported/icon_f3_bloodofair.png-e4a864906dc260509aa4ef46f6626b56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png new file mode 100644 index 0000000..597f584 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png.import new file mode 100644 index 0000000..1fd57df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h3clkmy6icrf" +path="res://.godot/imported/icon_f3_boneswarm.png-ac345c6f50541c643bd25abd68f63b8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_boneswarm.png" +dest_files=["res://.godot/imported/icon_f3_boneswarm.png-ac345c6f50541c643bd25abd68f63b8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png new file mode 100644 index 0000000..39aa595 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png.import new file mode 100644 index 0000000..ef2ffe1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxylrvb4lnynw" +path="res://.godot/imported/icon_f3_circleofdessication.png-0411b8082dd1dfdcfa35a83747c0bdcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_circleofdessication.png" +dest_files=["res://.godot/imported/icon_f3_circleofdessication.png-0411b8082dd1dfdcfa35a83747c0bdcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png new file mode 100644 index 0000000..fe96eb9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png.import new file mode 100644 index 0000000..e32672c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxptoft3othcv" +path="res://.godot/imported/icon_f3_communalgifts.png-28a8b76eeb489af47dddab5cc0f45237.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_communalgifts.png" +dest_files=["res://.godot/imported/icon_f3_communalgifts.png-28a8b76eeb489af47dddab5cc0f45237.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png new file mode 100644 index 0000000..997463a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png.import new file mode 100644 index 0000000..9dbe6c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqe308fkmuneb" +path="res://.godot/imported/icon_f3_corpsecombustion.png-f35d5daa63eb09b10a58578a5cf25735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_corpsecombustion.png" +dest_files=["res://.godot/imported/icon_f3_corpsecombustion.png-f35d5daa63eb09b10a58578a5cf25735.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png new file mode 100644 index 0000000..3cf562e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png.import new file mode 100644 index 0000000..483b322 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gifxrfy8chwd" +path="res://.godot/imported/icon_f3_cosmicflesh.png-2f337cffbadfe6d5e4cdc0263af84610.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_cosmicflesh.png" +dest_files=["res://.godot/imported/icon_f3_cosmicflesh.png-2f337cffbadfe6d5e4cdc0263af84610.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png new file mode 100644 index 0000000..d0e34de Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png.import new file mode 100644 index 0000000..a668b49 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3c66q7e67i52" +path="res://.godot/imported/icon_f3_divinespark.png-a90b1fb13e7bf1c41aca1a10ac53c431.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_divinespark.png" +dest_files=["res://.godot/imported/icon_f3_divinespark.png-a90b1fb13e7bf1c41aca1a10ac53c431.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png new file mode 100644 index 0000000..7fc46f8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png.import new file mode 100644 index 0000000..d214f41 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d12djymlau7xn" +path="res://.godot/imported/icon_f3_droplift.png-43466d4c406de01843e96e9c8f863399.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_droplift.png" +dest_files=["res://.godot/imported/icon_f3_droplift.png-43466d4c406de01843e96e9c8f863399.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png new file mode 100644 index 0000000..204c50e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png.import new file mode 100644 index 0000000..aee37ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2xndjmbast3c" +path="res://.godot/imported/icon_f3_enslave.png-9dd3491f36c75b0e9b65ca55cc88fac2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_enslave.png" +dest_files=["res://.godot/imported/icon_f3_enslave.png-9dd3491f36c75b0e9b65ca55cc88fac2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png new file mode 100644 index 0000000..e7c9fed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png.import new file mode 100644 index 0000000..25b96d6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpmfm7oijfxjd" +path="res://.godot/imported/icon_f3_entropicdecay.png-e8b54a73974f1cd611e4d11f618c43e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_entropicdecay.png" +dest_files=["res://.godot/imported/icon_f3_entropicdecay.png-e8b54a73974f1cd611e4d11f618c43e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png new file mode 100644 index 0000000..fe28d61 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png.import new file mode 100644 index 0000000..ce2afc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d8eqp4qk8plr" +path="res://.godot/imported/icon_f3_fountainofyouth.png-6d6b41e76fe8cd74670d889dbe539955.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_fountainofyouth.png" +dest_files=["res://.godot/imported/icon_f3_fountainofyouth.png-6d6b41e76fe8cd74670d889dbe539955.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png new file mode 100644 index 0000000..3dc1b36 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png.import new file mode 100644 index 0000000..59ae356 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx80oahbwkcma" +path="res://.godot/imported/icon_f3_glimpse.png-95226b9a1501f60c473dd0e6a5eb6e59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_glimpse.png" +dest_files=["res://.godot/imported/icon_f3_glimpse.png-95226b9a1501f60c473dd0e6a5eb6e59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png new file mode 100644 index 0000000..9ec850a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png.import new file mode 100644 index 0000000..92d13e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxhltb6dfxiin" +path="res://.godot/imported/icon_f3_godmulligan.png-afbb43170db5b93e7611b690deb6e15f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_godmulligan.png" +dest_files=["res://.godot/imported/icon_f3_godmulligan.png-afbb43170db5b93e7611b690deb6e15f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png new file mode 100644 index 0000000..1d8e517 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png.import new file mode 100644 index 0000000..087c947 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b105c11xwjhqi" +path="res://.godot/imported/icon_f3_gonewithwind.png-796b0449aaf85d1169a1e12800214bde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_gonewithwind.png" +dest_files=["res://.godot/imported/icon_f3_gonewithwind.png-796b0449aaf85d1169a1e12800214bde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png new file mode 100644 index 0000000..7e77f17 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png.import new file mode 100644 index 0000000..f4f463f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cekbqh3inuhbt" +path="res://.godot/imported/icon_f3_grabartifact.png-05248e23bff9cca01ac123b8e61bd079.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grabartifact.png" +dest_files=["res://.godot/imported/icon_f3_grabartifact.png-05248e23bff9cca01ac123b8e61bd079.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png new file mode 100644 index 0000000..af833ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png.import new file mode 100644 index 0000000..27148fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf7ts0kne1qvj" +path="res://.godot/imported/icon_f3_grandmirage.png-807d0cae65ed1c3433f9d812a63f6729.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_grandmirage.png" +dest_files=["res://.godot/imported/icon_f3_grandmirage.png-807d0cae65ed1c3433f9d812a63f6729.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png new file mode 100644 index 0000000..df4ac8b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png.import new file mode 100644 index 0000000..f1d6b7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvq8ww57no6gt" +path="res://.godot/imported/icon_f3_increasingwinds.png-14c3d20769c80f7e3aed16430b7a1b19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_increasingwinds.png" +dest_files=["res://.godot/imported/icon_f3_increasingwinds.png-14c3d20769c80f7e3aed16430b7a1b19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png new file mode 100644 index 0000000..b22cfda Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png.import new file mode 100644 index 0000000..8b24d51 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3cl8obhobk4r" +path="res://.godot/imported/icon_f3_inneroasis.png-cd4511f3e12b1c319edc78ab586c3311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_inneroasis.png" +dest_files=["res://.godot/imported/icon_f3_inneroasis.png-cd4511f3e12b1c319edc78ab586c3311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png new file mode 100644 index 0000000..117aa48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png.import new file mode 100644 index 0000000..9ddc1f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdai5tnciyiaw" +path="res://.godot/imported/icon_f3_lostindesert.png-64c13118ffbd359657c7bd8462ff1c4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_lostindesert.png" +dest_files=["res://.godot/imported/icon_f3_lostindesert.png-64c13118ffbd359657c7bd8462ff1c4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png new file mode 100644 index 0000000..9504b96 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png.import new file mode 100644 index 0000000..36e6596 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rgm5rr4mp60d" +path="res://.godot/imported/icon_f3_maelstrom.png-64e9a0ee6bb12031598a737d8bb7dc96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_maelstrom.png" +dest_files=["res://.godot/imported/icon_f3_maelstrom.png-64e9a0ee6bb12031598a737d8bb7dc96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png new file mode 100644 index 0000000..3af8c9d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png.import new file mode 100644 index 0000000..fa19dce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de2ifuow1dywf" +path="res://.godot/imported/icon_f3_magitekupgrade.png-aa1c26f80fbd9f6685dd4bfabc29f7b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_magitekupgrade.png" +dest_files=["res://.godot/imported/icon_f3_magitekupgrade.png-aa1c26f80fbd9f6685dd4bfabc29f7b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png new file mode 100644 index 0000000..972b4b0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png.import new file mode 100644 index 0000000..3bc1613 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwijuskifjtat" +path="res://.godot/imported/icon_f3_matchtwo.png-7c73c268de28b67859f6e02c06abdaff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_matchtwo.png" +dest_files=["res://.godot/imported/icon_f3_matchtwo.png-7c73c268de28b67859f6e02c06abdaff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png new file mode 100644 index 0000000..23ab246 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png.import new file mode 100644 index 0000000..5919078 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnwrkqgl3hbd3" +path="res://.godot/imported/icon_f3_metalworking.png-f1332ebe98ebb688e519a8cbc8a640a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_metalworking.png" +dest_files=["res://.godot/imported/icon_f3_metalworking.png-f1332ebe98ebb688e519a8cbc8a640a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png new file mode 100644 index 0000000..5e78619 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png.import new file mode 100644 index 0000000..f41301c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckevxnjabgwab" +path="res://.godot/imported/icon_f3_psychicconduit.png-a100f9c891b3a5974881cc2ca684b053.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_psychicconduit.png" +dest_files=["res://.godot/imported/icon_f3_psychicconduit.png-a100f9c891b3a5974881cc2ca684b053.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png new file mode 100644 index 0000000..82db1c5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png.import new file mode 100644 index 0000000..585594e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qdt5g1ygb60f" +path="res://.godot/imported/icon_f3_rashascurse.png-0101e2789ca2a21fa204904c94426735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_rashascurse.png" +dest_files=["res://.godot/imported/icon_f3_rashascurse.png-0101e2789ca2a21fa204904c94426735.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png new file mode 100644 index 0000000..327a77e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png.import new file mode 100644 index 0000000..63b7673 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6sm81brtpydi" +path="res://.godot/imported/icon_f3_reconstruct.png-76754fc1b4f92383e93d48e487b0543a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_reconstruct.png" +dest_files=["res://.godot/imported/icon_f3_reconstruct.png-76754fc1b4f92383e93d48e487b0543a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png new file mode 100644 index 0000000..7117b5e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png.import new file mode 100644 index 0000000..f3eaecd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6s7pkx0ntqku" +path="res://.godot/imported/icon_f3_sandtrap.png-1df5b5f250129beb1cf1e59ce4181fe0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandtrap.png" +dest_files=["res://.godot/imported/icon_f3_sandtrap.png-1df5b5f250129beb1cf1e59ce4181fe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png new file mode 100644 index 0000000..7d62ddf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png.import new file mode 100644 index 0000000..3208239 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baf74qpdqqbb8" +path="res://.godot/imported/icon_f3_sandwave.png-e19023f501fa3a48a8eefcc9dc6bafee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_sandwave.png" +dest_files=["res://.godot/imported/icon_f3_sandwave.png-e19023f501fa3a48a8eefcc9dc6bafee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png new file mode 100644 index 0000000..b728526 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png.import new file mode 100644 index 0000000..0de6f8e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ly1qibdiobn1" +path="res://.godot/imported/icon_f3_scionsfirstwish.png-480cc0700f7cae60cec2724bcbdcd99d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsfirstwish.png" +dest_files=["res://.godot/imported/icon_f3_scionsfirstwish.png-480cc0700f7cae60cec2724bcbdcd99d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png new file mode 100644 index 0000000..f6815cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png.import new file mode 100644 index 0000000..a47a6e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://benw8e72lih45" +path="res://.godot/imported/icon_f3_scionssecondwish.png-35b2cc2729b0a60d1f707824720b15cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionssecondwish.png" +dest_files=["res://.godot/imported/icon_f3_scionssecondwish.png-35b2cc2729b0a60d1f707824720b15cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png new file mode 100644 index 0000000..4966e48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png.import new file mode 100644 index 0000000..dad936b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tuy55idjk4so" +path="res://.godot/imported/icon_f3_scionsthirdwish.png-f3abc45181616ed1bee116af0696c7e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_scionsthirdwish.png" +dest_files=["res://.godot/imported/icon_f3_scionsthirdwish.png-f3abc45181616ed1bee116af0696c7e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png new file mode 100644 index 0000000..b628bae Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png.import new file mode 100644 index 0000000..1b312dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pq0wxmcfrnx2" +path="res://.godot/imported/icon_f3_songofsands.png-22604a3cf2a6c655b25c9b23b42f9ef2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_songofsands.png" +dest_files=["res://.godot/imported/icon_f3_songofsands.png-22604a3cf2a6c655b25c9b23b42f9ef2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png new file mode 100644 index 0000000..52f733e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png.import new file mode 100644 index 0000000..f3f69eb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2j38hcgvfpob" +path="res://.godot/imported/icon_f3_soultosand.png-3d8f954a81a93fac10469889874e6a7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_soultosand.png" +dest_files=["res://.godot/imported/icon_f3_soultosand.png-3d8f954a81a93fac10469889874e6a7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png new file mode 100644 index 0000000..b1fb014 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png.import new file mode 100644 index 0000000..7c62218 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct1e5blv0lead" +path="res://.godot/imported/icon_f3_starsfury.png-5c9c4af292c35a24ded72c8064f5c773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_starsfury.png" +dest_files=["res://.godot/imported/icon_f3_starsfury.png-5c9c4af292c35a24ded72c8064f5c773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png new file mode 100644 index 0000000..627a2b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png.import new file mode 100644 index 0000000..3d6ec6d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bknl344s1eq0n" +path="res://.godot/imported/icon_f3_stonestospears.png-64eecf87a69296a247a3d3f07ca79d36.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_stonestospears.png" +dest_files=["res://.godot/imported/icon_f3_stonestospears.png-64eecf87a69296a247a3d3f07ca79d36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png new file mode 100644 index 0000000..a2b9f2c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png.import new file mode 100644 index 0000000..cbd35c2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://it8f8dpn3mv" +path="res://.godot/imported/icon_f3_summoningstones.png-d79faa28e7c695d9140aa438ada11f7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_summoningstones.png" +dest_files=["res://.godot/imported/icon_f3_summoningstones.png-d79faa28e7c695d9140aa438ada11f7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png new file mode 100644 index 0000000..d4cc2e9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png.import new file mode 100644 index 0000000..b7f6cd1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://36ddht3x7nty" +path="res://.godot/imported/icon_f3_syphonenergy.png-4984bbdf4b95ddc44b905a3db7ebecf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f3_syphonenergy.png" +dest_files=["res://.godot/imported/icon_f3_syphonenergy.png-4984bbdf4b95ddc44b905a3db7ebecf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png new file mode 100644 index 0000000..4994bf3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png.import new file mode 100644 index 0000000..d15711b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcmavf58xqrff" +path="res://.godot/imported/icon_f4_abomination.png-f9c068934c60acdeef563e3b86e5c237.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_abomination.png" +dest_files=["res://.godot/imported/icon_f4_abomination.png-f9c068934c60acdeef563e3b86e5c237.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png new file mode 100644 index 0000000..b7d647e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png.import new file mode 100644 index 0000000..ceb3fb5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dui56k3eyxnu" +path="res://.godot/imported/icon_f4_aphoticdrain.png-1f062c9d3639121662035652f3168d66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_aphoticdrain.png" +dest_files=["res://.godot/imported/icon_f4_aphoticdrain.png-1f062c9d3639121662035652f3168d66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png new file mode 100644 index 0000000..2964ca4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png.import new file mode 100644 index 0000000..cfb3f1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0yubc0tsmtc7" +path="res://.godot/imported/icon_f4_betrayal.png-ec49f04b5925eefaabda1575ac771550.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_betrayal.png" +dest_files=["res://.godot/imported/icon_f4_betrayal.png-ec49f04b5925eefaabda1575ac771550.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png new file mode 100644 index 0000000..cab749d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png.import new file mode 100644 index 0000000..36845e4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbemu10uejcc" +path="res://.godot/imported/icon_f4_breathoftheunborn.png-d87ab8df3ea9174ea3f042dd3ca3a0f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_breathoftheunborn.png" +dest_files=["res://.godot/imported/icon_f4_breathoftheunborn.png-d87ab8df3ea9174ea3f042dd3ca3a0f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png new file mode 100644 index 0000000..1deeb62 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png.import new file mode 100644 index 0000000..028c331 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgut3kugdorll" +path="res://.godot/imported/icon_f4_consumingrebirth.png-60f3b5f45af3f8bc0d83dc052b45f3d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_consumingrebirth.png" +dest_files=["res://.godot/imported/icon_f4_consumingrebirth.png-60f3b5f45af3f8bc0d83dc052b45f3d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png new file mode 100644 index 0000000..5b2da5f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png.import new file mode 100644 index 0000000..d5ece37 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgoqebluymtnm" +path="res://.godot/imported/icon_f4_creepingtendrils.png-879352cb03e5046bee3f84b1db5ec940.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepingtendrils.png" +dest_files=["res://.godot/imported/icon_f4_creepingtendrils.png-879352cb03e5046bee3f84b1db5ec940.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png new file mode 100644 index 0000000..e145a36 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png.import new file mode 100644 index 0000000..f0e9211 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0s3omq2qfvkm" +path="res://.godot/imported/icon_f4_creepmeld.png-3530ccdaed61da91bbb950ee36419cd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_creepmeld.png" +dest_files=["res://.godot/imported/icon_f4_creepmeld.png-3530ccdaed61da91bbb950ee36419cd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png new file mode 100644 index 0000000..77d323f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png.import new file mode 100644 index 0000000..d51c188 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdtwwu4xwxbl" +path="res://.godot/imported/icon_f4_curseofagony.png-a088893bdcc345f24f14941647230476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofagony.png" +dest_files=["res://.godot/imported/icon_f4_curseofagony.png-a088893bdcc345f24f14941647230476.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png new file mode 100644 index 0000000..e8fffa3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png.import new file mode 100644 index 0000000..fdd360d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh537opsp2y8h" +path="res://.godot/imported/icon_f4_curseofshadows.png-a0a7944cf132206f10924d741e9f1bd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_curseofshadows.png" +dest_files=["res://.godot/imported/icon_f4_curseofshadows.png-a0a7944cf132206f10924d741e9f1bd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png new file mode 100644 index 0000000..7d0ecac Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png.import new file mode 100644 index 0000000..04e11bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b81uw6moktmnq" +path="res://.godot/imported/icon_f4_daemoniclure.png-0c5b07e12f4887ab999badb768b20d6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_daemoniclure.png" +dest_files=["res://.godot/imported/icon_f4_daemoniclure.png-0c5b07e12f4887ab999badb768b20d6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png new file mode 100644 index 0000000..568a635 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png.import new file mode 100644 index 0000000..3ee57a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhnp55ylidy8a" +path="res://.godot/imported/icon_f4_darkfiresacrifice.png-d8f5d411b8b1ca20e42bbc857ffe50d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkfiresacrifice.png" +dest_files=["res://.godot/imported/icon_f4_darkfiresacrifice.png-d8f5d411b8b1ca20e42bbc857ffe50d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png new file mode 100644 index 0000000..2c36c6f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png.import new file mode 100644 index 0000000..98d2033 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4gvs0o8ly6i7" +path="res://.godot/imported/icon_f4_darkpersuasion.png-63adfefdd4bbdccaf4b9c0912fcdc19e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkpersuasion.png" +dest_files=["res://.godot/imported/icon_f4_darkpersuasion.png-63adfefdd4bbdccaf4b9c0912fcdc19e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png new file mode 100644 index 0000000..5abafa1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png.import new file mode 100644 index 0000000..51f66f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgwt7lbqd7ge" +path="res://.godot/imported/icon_f4_darkseed.png-b6ab97273d3a2c7054a9afcf3f0c7de7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darkseed.png" +dest_files=["res://.godot/imported/icon_f4_darkseed.png-b6ab97273d3a2c7054a9afcf3f0c7de7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png new file mode 100644 index 0000000..fb6789d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png.import new file mode 100644 index 0000000..e4c2f71 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcs1nyfksvxlt" +path="res://.godot/imported/icon_f4_darktransformation.png-0685aa3d174f0d748ff9b4a549b0eecf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_darktransformation.png" +dest_files=["res://.godot/imported/icon_f4_darktransformation.png-0685aa3d174f0d748ff9b4a549b0eecf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png new file mode 100644 index 0000000..8825646 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png.import new file mode 100644 index 0000000..76b09fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8e62hifo2som" +path="res://.godot/imported/icon_f4_deathfirecrescendo.png-b4085a5cfca37df7f2173502240dffcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathfirecrescendo.png" +dest_files=["res://.godot/imported/icon_f4_deathfirecrescendo.png-b4085a5cfca37df7f2173502240dffcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png new file mode 100644 index 0000000..61d3563 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png.import new file mode 100644 index 0000000..b39db8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d06oylau51y0h" +path="res://.godot/imported/icon_f4_deathplague.png-6e411ca27424a671e36eb766540a6fcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_deathplague.png" +dest_files=["res://.godot/imported/icon_f4_deathplague.png-6e411ca27424a671e36eb766540a6fcb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png new file mode 100644 index 0000000..c16ebd3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png.import new file mode 100644 index 0000000..1c654f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxy1i2otehpwn" +path="res://.godot/imported/icon_f4_doom.png-8527c94ffd9d771733fedb737c7cbc65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_doom.png" +dest_files=["res://.godot/imported/icon_f4_doom.png-8527c94ffd9d771733fedb737c7cbc65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png new file mode 100644 index 0000000..8da2feb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png.import new file mode 100644 index 0000000..14a3c99 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cptbl3werbsp5" +path="res://.godot/imported/icon_f4_echoingshriek.png-c253a4179d0d0da9df14d8ac464c0d5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_echoingshriek.png" +dest_files=["res://.godot/imported/icon_f4_echoingshriek.png-c253a4179d0d0da9df14d8ac464c0d5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png new file mode 100644 index 0000000..ce8c2bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png.import new file mode 100644 index 0000000..02f460c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5vy7eeg6hpl8" +path="res://.godot/imported/icon_f4_evilxerox.png-bde9ecc3868c7d18313db14848dd6084.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_evilxerox.png" +dest_files=["res://.godot/imported/icon_f4_evilxerox.png-bde9ecc3868c7d18313db14848dd6084.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png new file mode 100644 index 0000000..5973604 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png.import new file mode 100644 index 0000000..b726774 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c87oueouymn4d" +path="res://.godot/imported/icon_f4_gateofovervault.png-ca2dd3326236a9a29b5ab7a2d2598570.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_gateofovervault.png" +dest_files=["res://.godot/imported/icon_f4_gateofovervault.png-ca2dd3326236a9a29b5ab7a2d2598570.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png new file mode 100644 index 0000000..1f904b3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png.import new file mode 100644 index 0000000..2a8a0d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vp6hd5syedn2" +path="res://.godot/imported/icon_f4_inkhorngaze.png-86d867c068ef3dda66a3d514d592805f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inkhorngaze.png" +dest_files=["res://.godot/imported/icon_f4_inkhorngaze.png-86d867c068ef3dda66a3d514d592805f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png new file mode 100644 index 0000000..192ea78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png.import new file mode 100644 index 0000000..2fff650 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckol0r32ob4u3" +path="res://.godot/imported/icon_f4_inklingsurge.png-124355fd3656a1022f915a725e2af9a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_inklingsurge.png" +dest_files=["res://.godot/imported/icon_f4_inklingsurge.png-124355fd3656a1022f915a725e2af9a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png new file mode 100644 index 0000000..75ca1e2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png.import new file mode 100644 index 0000000..21efc57 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj1f54ytatu1d" +path="res://.godot/imported/icon_f4_lurkingfear.png-191096e91bf6ad92e63ae820c79f16c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_lurkingfear.png" +dest_files=["res://.godot/imported/icon_f4_lurkingfear.png-191096e91bf6ad92e63ae820c79f16c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png new file mode 100644 index 0000000..6ad7bf8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png.import new file mode 100644 index 0000000..bf64c28 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bklnvt8hq5pa5" +path="res://.godot/imported/icon_f4_necroticsphere.png-5625e1d46add513a16ec15db497ea291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_necroticsphere.png" +dest_files=["res://.godot/imported/icon_f4_necroticsphere.png-5625e1d46add513a16ec15db497ea291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png new file mode 100644 index 0000000..a56a6a9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png.import new file mode 100644 index 0000000..62b2969 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kh5fan1nj7m" +path="res://.godot/imported/icon_f4_nethersummoning.png-7c968307539a7a3b131b8f770de19d24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_nethersummoning.png" +dest_files=["res://.godot/imported/icon_f4_nethersummoning.png-7c968307539a7a3b131b8f770de19d24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png new file mode 100644 index 0000000..f41a409 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png.import new file mode 100644 index 0000000..78aeae4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csrhiwftchu2v" +path="res://.godot/imported/icon_f4_perilousfooting.png-49d5c3fbff45bb10f3ff95deda0a0419.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_perilousfooting.png" +dest_files=["res://.godot/imported/icon_f4_perilousfooting.png-49d5c3fbff45bb10f3ff95deda0a0419.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png new file mode 100644 index 0000000..8ce89c0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png.import new file mode 100644 index 0000000..7a942f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2al8sdutoync" +path="res://.godot/imported/icon_f4_punish.png-1a154be4ced69effca6bdb25cb261b8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_punish.png" +dest_files=["res://.godot/imported/icon_f4_punish.png-1a154be4ced69effca6bdb25cb261b8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png new file mode 100644 index 0000000..8c63ab0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png.import new file mode 100644 index 0000000..c66703c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpw3op4e2kfyk" +path="res://.godot/imported/icon_f4_riteoftheundervault.png-80f493154043fac15ac208b9d43a2a1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_riteoftheundervault.png" +dest_files=["res://.godot/imported/icon_f4_riteoftheundervault.png-80f493154043fac15ac208b9d43a2a1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png new file mode 100644 index 0000000..c3dff24 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png.import new file mode 100644 index 0000000..aa4493a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmtq2eq6ynhes" +path="res://.godot/imported/icon_f4_ritualbanishing.png-6225d5450f766179e568271fd82f3fac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_ritualbanishing.png" +dest_files=["res://.godot/imported/icon_f4_ritualbanishing.png-6225d5450f766179e568271fd82f3fac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png new file mode 100644 index 0000000..0caaada Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png.import new file mode 100644 index 0000000..fa774bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwdi4raocji2y" +path="res://.godot/imported/icon_f4_shadownova.png-2f61c70048e0c81b913bce68aefb3a74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadownova.png" +dest_files=["res://.godot/imported/icon_f4_shadownova.png-2f61c70048e0c81b913bce68aefb3a74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png new file mode 100644 index 0000000..b48051f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png.import new file mode 100644 index 0000000..d9325d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqwnt2x3qcjuo" +path="res://.godot/imported/icon_f4_shadowreflection.png-091641ffd82264cd880db28572ffc19a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowreflection.png" +dest_files=["res://.godot/imported/icon_f4_shadowreflection.png-091641ffd82264cd880db28572ffc19a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png new file mode 100644 index 0000000..307b596 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png.import new file mode 100644 index 0000000..492f77d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dapw11a2u3ky4" +path="res://.godot/imported/icon_f4_shadowstalk.png-7b283c24f7375023c164f850b83864f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_shadowstalk.png" +dest_files=["res://.godot/imported/icon_f4_shadowstalk.png-7b283c24f7375023c164f850b83864f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png new file mode 100644 index 0000000..a759560 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png.import new file mode 100644 index 0000000..4454cc1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw2g5fypjr7kf" +path="res://.godot/imported/icon_f4_sickem.png-fe9bcec4e2d05691ee64147742308339.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sickem.png" +dest_files=["res://.godot/imported/icon_f4_sickem.png-fe9bcec4e2d05691ee64147742308339.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png new file mode 100644 index 0000000..b3234cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png.import new file mode 100644 index 0000000..43b24fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw3otsiaybb7a" +path="res://.godot/imported/icon_f4_soulclamp.png-1b7ce73251445c078d62f23b72c32858.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulclamp.png" +dest_files=["res://.godot/imported/icon_f4_soulclamp.png-1b7ce73251445c078d62f23b72c32858.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png new file mode 100644 index 0000000..8853127 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png.import new file mode 100644 index 0000000..6f446ca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4whyi6xmnku" +path="res://.godot/imported/icon_f4_soulshatterpact.png-bcd52c80130836cf69657dbaa48a1ac7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_soulshatterpact.png" +dest_files=["res://.godot/imported/icon_f4_soulshatterpact.png-bcd52c80130836cf69657dbaa48a1ac7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png new file mode 100644 index 0000000..faf6b3a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png.import new file mode 100644 index 0000000..78f5d4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b28q2hows4fmb" +path="res://.godot/imported/icon_f4_sphereofdarkness.png-adc850c40b278a9f4a7ccf27550ea5a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_sphereofdarkness.png" +dest_files=["res://.godot/imported/icon_f4_sphereofdarkness.png-adc850c40b278a9f4a7ccf27550ea5a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png new file mode 100644 index 0000000..7471fad Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png.import new file mode 100644 index 0000000..667aa04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtou36m56c3g" +path="res://.godot/imported/icon_f4_spiritguardian.png-d154c4e51d0a642f9ae67c5e614231e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spiritguardian.png" +dest_files=["res://.godot/imported/icon_f4_spiritguardian.png-d154c4e51d0a642f9ae67c5e614231e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png new file mode 100644 index 0000000..63eac68 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png.import new file mode 100644 index 0000000..3c16e50 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diuawifkbdvk4" +path="res://.godot/imported/icon_f4_spookem.png-b9a96acb793e134d26c7073b53a58eca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_spookem.png" +dest_files=["res://.godot/imported/icon_f4_spookem.png-b9a96acb793e134d26c7073b53a58eca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png new file mode 100644 index 0000000..b582d02 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png.import new file mode 100644 index 0000000..60b1db9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yjhxppo87ieu" +path="res://.godot/imported/icon_f4_tickletendril.png-9e909fadf2b156c24c5caa9993d3fd3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_tickletendril.png" +dest_files=["res://.godot/imported/icon_f4_tickletendril.png-9e909fadf2b156c24c5caa9993d3fd3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png new file mode 100644 index 0000000..fd65f2c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png.import new file mode 100644 index 0000000..383c961 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm07m48gkflo6" +path="res://.godot/imported/icon_f4_veilofunraveling.png-2df1702f80c72d589d8f99c10594ea8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_veilofunraveling.png" +dest_files=["res://.godot/imported/icon_f4_veilofunraveling.png-2df1702f80c72d589d8f99c10594ea8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png new file mode 100644 index 0000000..3d4cadf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png.import new file mode 100644 index 0000000..063c5fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xbwiequ76etp" +path="res://.godot/imported/icon_f4_voidpulse.png-f7c85152c1774788aaaf3b65a200a6d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidpulse.png" +dest_files=["res://.godot/imported/icon_f4_voidpulse.png-f7c85152c1774788aaaf3b65a200a6d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png new file mode 100644 index 0000000..c17b119 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png.import new file mode 100644 index 0000000..6f0a4bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0pkuv8sglsfo" +path="res://.godot/imported/icon_f4_voidsteal.png-cb7e99a2782e9cb3613895ed1c59e3ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_voidsteal.png" +dest_files=["res://.godot/imported/icon_f4_voidsteal.png-cb7e99a2782e9cb3613895ed1c59e3ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png new file mode 100644 index 0000000..bcba7f4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png.import new file mode 100644 index 0000000..e4ac195 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy183l5hq64" +path="res://.godot/imported/icon_f4_wraithlingfury.png-299878d6ac70bc7737d30c13f9c74b6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingfury.png" +dest_files=["res://.godot/imported/icon_f4_wraithlingfury.png-299878d6ac70bc7737d30c13f9c74b6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png new file mode 100644 index 0000000..7dfc7fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png.import new file mode 100644 index 0000000..386b2a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnpwtfiqdjoe4" +path="res://.godot/imported/icon_f4_wraithlingswarm.png-61aa886d0add2231230c1c39623bdbb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f4_wraithlingswarm.png" +dest_files=["res://.godot/imported/icon_f4_wraithlingswarm.png-61aa886d0add2231230c1c39623bdbb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png new file mode 100644 index 0000000..b63efe7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png.import new file mode 100644 index 0000000..5d053b3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://higl8d6gow1q" +path="res://.godot/imported/icon_f5_amplification.png-63e43140db745dad36ef674cbd090956.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_amplification.png" +dest_files=["res://.godot/imported/icon_f5_amplification.png-63e43140db745dad36ef674cbd090956.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png new file mode 100644 index 0000000..231315b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png.import new file mode 100644 index 0000000..e38a1eb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byscrcb3rj5no" +path="res://.godot/imported/icon_f5_bigtime.png-604a0ea127ba50d0eae3f451edd1821e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bigtime.png" +dest_files=["res://.godot/imported/icon_f5_bigtime.png-604a0ea127ba50d0eae3f451edd1821e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png new file mode 100644 index 0000000..8081349 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png.import new file mode 100644 index 0000000..0840f6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7dy1lkf6ngv0" +path="res://.godot/imported/icon_f5_bloodrage.png-b8a5fc10812299bb8c811e8edc3c25db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_bloodrage.png" +dest_files=["res://.godot/imported/icon_f5_bloodrage.png-b8a5fc10812299bb8c811e8edc3c25db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png new file mode 100644 index 0000000..668ce97 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png.import new file mode 100644 index 0000000..fdd338f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2mqw23nmoh2r" +path="res://.godot/imported/icon_f5_boundedlifeforce.png-b7447b8f7cbf0bba8aad38be44ff0bff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_boundedlifeforce.png" +dest_files=["res://.godot/imported/icon_f5_boundedlifeforce.png-b7447b8f7cbf0bba8aad38be44ff0bff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png new file mode 100644 index 0000000..8e079fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png.import new file mode 100644 index 0000000..9831583 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi1ltr8r6nfu8" +path="res://.godot/imported/icon_f5_cascadingrebirth.png-d55cf5706ea9abcacf5a2ef3e71886cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_cascadingrebirth.png" +dest_files=["res://.godot/imported/icon_f5_cascadingrebirth.png-d55cf5706ea9abcacf5a2ef3e71886cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png new file mode 100644 index 0000000..30a4635 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png.import new file mode 100644 index 0000000..fa9cbea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbnotmpbf25f2" +path="res://.godot/imported/icon_f5_chrysalisburn.png-e4060d093d03d0ac1575ff11ad0f3245.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_chrysalisburn.png" +dest_files=["res://.godot/imported/icon_f5_chrysalisburn.png-e4060d093d03d0ac1575ff11ad0f3245.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png new file mode 100644 index 0000000..bd6b993 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png.import new file mode 100644 index 0000000..b01bc5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwl40ikwy5stq" +path="res://.godot/imported/icon_f5_dampeningwave.png-08de99bdd326a68bc43793594b562a17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dampeningwave.png" +dest_files=["res://.godot/imported/icon_f5_dampeningwave.png-08de99bdd326a68bc43793594b562a17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png new file mode 100644 index 0000000..5773483 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png.import new file mode 100644 index 0000000..4a8d7a3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl8gc4x5qoads" +path="res://.godot/imported/icon_f5_dinoparty.png-6bdf5ec107324c356456d0db82df7ec9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoparty.png" +dest_files=["res://.godot/imported/icon_f5_dinoparty.png-6bdf5ec107324c356456d0db82df7ec9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png new file mode 100644 index 0000000..67e4234 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png.import new file mode 100644 index 0000000..5d35168 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bljfufibl5qb7" +path="res://.godot/imported/icon_f5_dinoultimatum.png-a25bb017887cf0c122703b45323b5fce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_dinoultimatum.png" +dest_files=["res://.godot/imported/icon_f5_dinoultimatum.png-a25bb017887cf0c122703b45323b5fce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png new file mode 100644 index 0000000..b07e1df Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png.import new file mode 100644 index 0000000..42ff5e9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://omb50sm86apt" +path="res://.godot/imported/icon_f5_diretidefrenzy.png-20c9258f3e5261656a8bed405fc96fcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_diretidefrenzy.png" +dest_files=["res://.godot/imported/icon_f5_diretidefrenzy.png-20c9258f3e5261656a8bed405fc96fcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png new file mode 100644 index 0000000..85c1970 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png.import new file mode 100644 index 0000000..6f0fa70 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy67b0885scpv" +path="res://.godot/imported/icon_f5_earthsphere.png-6894502f7b41c3b2f33e92bf9ecd43b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_earthsphere.png" +dest_files=["res://.godot/imported/icon_f5_earthsphere.png-6894502f7b41c3b2f33e92bf9ecd43b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png new file mode 100644 index 0000000..24ff0c6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png.import new file mode 100644 index 0000000..1388bd3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnwrhaxd7stj4" +path="res://.godot/imported/icon_f5_egggrenade.png-2bca1feb22a2f9a5d10e579de050023c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_egggrenade.png" +dest_files=["res://.godot/imported/icon_f5_egggrenade.png-2bca1feb22a2f9a5d10e579de050023c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png new file mode 100644 index 0000000..ddb738b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png.import new file mode 100644 index 0000000..e4ed79b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpll4jn20jec4" +path="res://.godot/imported/icon_f5_eggmorph.png-81d7d57375cf5ef8da450a5b5567e87a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggmorph.png" +dest_files=["res://.godot/imported/icon_f5_eggmorph.png-81d7d57375cf5ef8da450a5b5567e87a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png new file mode 100644 index 0000000..b8b1a52 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png.import new file mode 100644 index 0000000..48f2ddd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coun0q5e72ict" +path="res://.godot/imported/icon_f5_eggzactly.png-9a9b10957e1f91043c2496b8cfe7694b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_eggzactly.png" +dest_files=["res://.godot/imported/icon_f5_eggzactly.png-9a9b10957e1f91043c2496b8cfe7694b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png new file mode 100644 index 0000000..0f6ce66 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png.import new file mode 100644 index 0000000..baa81e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgikaadjcvh31" +path="res://.godot/imported/icon_f5_endurethebeastlands.png-709fe51d3809d5bbca192725a161c2b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_endurethebeastlands.png" +dest_files=["res://.godot/imported/icon_f5_endurethebeastlands.png-709fe51d3809d5bbca192725a161c2b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png new file mode 100644 index 0000000..37f9ecc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png.import new file mode 100644 index 0000000..f0e4806 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hnrkx4xb3je" +path="res://.godot/imported/icon_f5_entropicgaze.png-57bb40f3eda889388f9d2d9639dc6c1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_entropicgaze.png" +dest_files=["res://.godot/imported/icon_f5_entropicgaze.png-57bb40f3eda889388f9d2d9639dc6c1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png new file mode 100644 index 0000000..a8253b2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png.import new file mode 100644 index 0000000..0a4b9b3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br4gfymabmssp" +path="res://.godot/imported/icon_f5_flamingstampede.png-e07dc31f31ae491332f875ab0dd3cfd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flamingstampede.png" +dest_files=["res://.godot/imported/icon_f5_flamingstampede.png-e07dc31f31ae491332f875ab0dd3cfd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png new file mode 100644 index 0000000..2163a46 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png.import new file mode 100644 index 0000000..3595369 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvxsc045j7yyo" +path="res://.godot/imported/icon_f5_flashreincarnation.png-ac7a582c55a56512ced1fc452a0d698e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_flashreincarnation.png" +dest_files=["res://.godot/imported/icon_f5_flashreincarnation.png-ac7a582c55a56512ced1fc452a0d698e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png new file mode 100644 index 0000000..3f2c908 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png.import new file mode 100644 index 0000000..8336670 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2d7sldfncj30" +path="res://.godot/imported/icon_f5_fractalreplication.png-c32a40cb6908dd65a8db792c2d62cff0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_fractalreplication.png" +dest_files=["res://.godot/imported/icon_f5_fractalreplication.png-c32a40cb6908dd65a8db792c2d62cff0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png new file mode 100644 index 0000000..d0523a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png.import new file mode 100644 index 0000000..81ac6d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dah2v4qh1yp17" +path="res://.godot/imported/icon_f5_greaterfortitude.png-7bc6d236fb15f6e40a8f749712405e4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_greaterfortitude.png" +dest_files=["res://.godot/imported/icon_f5_greaterfortitude.png-7bc6d236fb15f6e40a8f749712405e4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png new file mode 100644 index 0000000..f353eb4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png.import new file mode 100644 index 0000000..496ff14 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfq26r3xvvp4" +path="res://.godot/imported/icon_f5_increasinghealth.png-b441a09ef3151dd476d3a6d829ae03f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_increasinghealth.png" +dest_files=["res://.godot/imported/icon_f5_increasinghealth.png-b441a09ef3151dd476d3a6d829ae03f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png new file mode 100644 index 0000000..85a9a5a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png.import new file mode 100644 index 0000000..4548b3f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctrn3xv8okp4e" +path="res://.godot/imported/icon_f5_kineticequilibrium.png-dee1949c281d7f65c4d65abc8b1854fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_kineticequilibrium.png" +dest_files=["res://.godot/imported/icon_f5_kineticequilibrium.png-dee1949c281d7f65c4d65abc8b1854fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png new file mode 100644 index 0000000..5cc8fd4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png.import new file mode 100644 index 0000000..9fd3131 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b362x7p01fphm" +path="res://.godot/imported/icon_f5_lavalance.png-2362338e24cb8cddbe249388673ef84b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_lavalance.png" +dest_files=["res://.godot/imported/icon_f5_lavalance.png-2362338e24cb8cddbe249388673ef84b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png new file mode 100644 index 0000000..5011a86 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png.import new file mode 100644 index 0000000..c3ce7cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r8mwuour3eos" +path="res://.godot/imported/icon_f5_manaburn.png-f694ecf7685ab85cc59cc941c009b25b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_manaburn.png" +dest_files=["res://.godot/imported/icon_f5_manaburn.png-f694ecf7685ab85cc59cc941c009b25b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png new file mode 100644 index 0000000..6a13324 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png.import new file mode 100644 index 0000000..ea67762 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfrgvk63b2gpn" +path="res://.godot/imported/icon_f5_marchbrontodon.png-aadd5409782f23278c697b289f3670ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_marchbrontodon.png" +dest_files=["res://.godot/imported/icon_f5_marchbrontodon.png-aadd5409782f23278c697b289f3670ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png new file mode 100644 index 0000000..484a8bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png.import new file mode 100644 index 0000000..17abdcd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o5ux1qnfp5wr" +path="res://.godot/imported/icon_f5_metamorphosis.png-bcbf4a905dd9929041a392220955d803.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_metamorphosis.png" +dest_files=["res://.godot/imported/icon_f5_metamorphosis.png-bcbf4a905dd9929041a392220955d803.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png new file mode 100644 index 0000000..6fcaa53 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png.import new file mode 100644 index 0000000..451e5d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6hevk18yjq2s" +path="res://.godot/imported/icon_f5_meteorimpact.png-509cfaab0cb5c737e0c25a549b609958.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_meteorimpact.png" +dest_files=["res://.godot/imported/icon_f5_meteorimpact.png-509cfaab0cb5c737e0c25a549b609958.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png new file mode 100644 index 0000000..2eb688d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png.import new file mode 100644 index 0000000..29aa4b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdsth182nvems" +path="res://.godot/imported/icon_f5_mindsteal.png-b67d0febae5c04b7f200071572d83c31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_mindsteal.png" +dest_files=["res://.godot/imported/icon_f5_mindsteal.png-b67d0febae5c04b7f200071572d83c31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png new file mode 100644 index 0000000..04d1271 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png.import new file mode 100644 index 0000000..97240a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd1573jsxvip" +path="res://.godot/imported/icon_f5_naturalselection.png-1177af484d649294c4563d03444b6dfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturalselection.png" +dest_files=["res://.godot/imported/icon_f5_naturalselection.png-1177af484d649294c4563d03444b6dfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png new file mode 100644 index 0000000..3178d17 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png.import new file mode 100644 index 0000000..4c008ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6vqtp877s6dj" +path="res://.godot/imported/icon_f5_naturesconfluence.png-3cfa4a20dc361aa2af57611880565160.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_naturesconfluence.png" +dest_files=["res://.godot/imported/icon_f5_naturesconfluence.png-3cfa4a20dc361aa2af57611880565160.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png new file mode 100644 index 0000000..c2fe810 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png.import new file mode 100644 index 0000000..0ab4c9b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r4j7h87kwckx" +path="res://.godot/imported/icon_f5_plasmastorm.png-c848c57c7e9628ed2960565e229c01ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_plasmastorm.png" +dest_files=["res://.godot/imported/icon_f5_plasmastorm.png-c848c57c7e9628ed2960565e229c01ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png new file mode 100644 index 0000000..c51bbf9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png.import new file mode 100644 index 0000000..3850634 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1erlqm2n802" +path="res://.godot/imported/icon_f5_popeyespinich.png-5af4dc002533b0730919ffb60a934ebe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_popeyespinich.png" +dest_files=["res://.godot/imported/icon_f5_popeyespinich.png-5af4dc002533b0730919ffb60a934ebe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png new file mode 100644 index 0000000..8d03918 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png.import new file mode 100644 index 0000000..14716f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgt2h4qey86nc" +path="res://.godot/imported/icon_f5_razorskin.png-455054856d3caa99806d4b7c3f22ac06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_razorskin.png" +dest_files=["res://.godot/imported/icon_f5_razorskin.png-455054856d3caa99806d4b7c3f22ac06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png new file mode 100644 index 0000000..8434435 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png.import new file mode 100644 index 0000000..da0834e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0kv2abv77kef" +path="res://.godot/imported/icon_f5_reggsplicate.png-5d88685f58b1005b82f12b1b896d24ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_reggsplicate.png" +dest_files=["res://.godot/imported/icon_f5_reggsplicate.png-5d88685f58b1005b82f12b1b896d24ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png new file mode 100644 index 0000000..83d1be9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png.import new file mode 100644 index 0000000..ab2fcd8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch8o72im485gt" +path="res://.godot/imported/icon_f5_smashem.png-907a836dfc26a3800729c9f22ab61f8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_smashem.png" +dest_files=["res://.godot/imported/icon_f5_smashem.png-907a836dfc26a3800729c9f22ab61f8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png new file mode 100644 index 0000000..9346043 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png.import new file mode 100644 index 0000000..1587173 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chc624dy3n3ip" +path="res://.godot/imported/icon_f5_spiritofvaath.png-93248a68d5f27aeca8cd387a5bec543a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_spiritofvaath.png" +dest_files=["res://.godot/imported/icon_f5_spiritofvaath.png-93248a68d5f27aeca8cd387a5bec543a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png new file mode 100644 index 0000000..c37dae6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png.import new file mode 100644 index 0000000..f27c52e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmwouc5mgyruy" +path="res://.godot/imported/icon_f5_stophittingyourself.png-ef09a2dfe3364dde5dd232d0c648ae20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_stophittingyourself.png" +dest_files=["res://.godot/imported/icon_f5_stophittingyourself.png-ef09a2dfe3364dde5dd232d0c648ae20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png new file mode 100644 index 0000000..0160641 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png.import new file mode 100644 index 0000000..2121695 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0n0c1rswiap3" +path="res://.godot/imported/icon_f5_tectonicspikes.png-292b30f0f847b326823926d79c83ab31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tectonicspikes.png" +dest_files=["res://.godot/imported/icon_f5_tectonicspikes.png-292b30f0f847b326823926d79c83ab31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png new file mode 100644 index 0000000..7ccb30e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png.import new file mode 100644 index 0000000..040bcd5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4bmnu0udwn6u" +path="res://.godot/imported/icon_f5_thumpingwave.png-c2bdf14725eb92a4b9b7162b72eb0ad0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_thumpingwave.png" +dest_files=["res://.godot/imported/icon_f5_thumpingwave.png-c2bdf14725eb92a4b9b7162b72eb0ad0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png new file mode 100644 index 0000000..ada2bef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png.import new file mode 100644 index 0000000..77dd768 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l5tlw8rp4wjh" +path="res://.godot/imported/icon_f5_toothandtrial.png-bf66835a4c6d272496014aa58af12f0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_toothandtrial.png" +dest_files=["res://.godot/imported/icon_f5_toothandtrial.png-bf66835a4c6d272496014aa58af12f0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png new file mode 100644 index 0000000..b862131 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png.import new file mode 100644 index 0000000..9e49ff3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3w3r7kjv15qo" +path="res://.godot/imported/icon_f5_tremor.png-03b517c58226a8f632a88b41ffe32cbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_tremor.png" +dest_files=["res://.godot/imported/icon_f5_tremor.png-03b517c58226a8f632a88b41ffe32cbb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png new file mode 100644 index 0000000..d92b231 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png.import new file mode 100644 index 0000000..e644ef5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daeya2xx1h163" +path="res://.godot/imported/icon_f5_valknusseal.png-32af6423243eb9a9e19475e403519e94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_valknusseal.png" +dest_files=["res://.godot/imported/icon_f5_valknusseal.png-32af6423243eb9a9e19475e403519e94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png new file mode 100644 index 0000000..9a372fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png.import new file mode 100644 index 0000000..5a0bad1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bamjfp4i1aafl" +path="res://.godot/imported/icon_f5_verdantfulmination.png-cc64783acfbdc8a69064e604a9393c84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_verdantfulmination.png" +dest_files=["res://.godot/imported/icon_f5_verdantfulmination.png-cc64783acfbdc8a69064e604a9393c84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png new file mode 100644 index 0000000..ea321a2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png.import new file mode 100644 index 0000000..021abb0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsw265wle4o7b" +path="res://.godot/imported/icon_f5_yellrealloud.png-ee4b57443e46aa39d08ba752e7234e7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f5_yellrealloud.png" +dest_files=["res://.godot/imported/icon_f5_yellrealloud.png-ee4b57443e46aa39d08ba752e7234e7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png new file mode 100644 index 0000000..e3d473f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png.import new file mode 100644 index 0000000..93d9fe2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djvheex8rgg8u" +path="res://.godot/imported/icon_f6_alteredbeast.png-78c6fc901f162be305be542610675b9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_alteredbeast.png" +dest_files=["res://.godot/imported/icon_f6_alteredbeast.png-78c6fc901f162be305be542610675b9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png new file mode 100644 index 0000000..f0a8787 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png.import new file mode 100644 index 0000000..702cc6b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b44rf5oi12ed1" +path="res://.godot/imported/icon_f6_ambush.png-3e4be6354ec5ba6ee3bbc9f7b09b0ed3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ambush.png" +dest_files=["res://.godot/imported/icon_f6_ambush.png-3e4be6354ec5ba6ee3bbc9f7b09b0ed3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png new file mode 100644 index 0000000..3209df6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png.import new file mode 100644 index 0000000..d681dcf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0r0hq814ynhd" +path="res://.godot/imported/icon_f6_aspectofidentity.png-4374cd73274b054d81e4bd241a214f93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofidentity.png" +dest_files=["res://.godot/imported/icon_f6_aspectofidentity.png-4374cd73274b054d81e4bd241a214f93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png new file mode 100644 index 0000000..14f1329 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png.import new file mode 100644 index 0000000..a0df8fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdxsiwgyd62ce" +path="res://.godot/imported/icon_f6_aspectofthebear.png-6c0dfc0a633a9bd83c5e1305c35d211f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthebear.png" +dest_files=["res://.godot/imported/icon_f6_aspectofthebear.png-6c0dfc0a633a9bd83c5e1305c35d211f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png new file mode 100644 index 0000000..8d6eb9d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png.import new file mode 100644 index 0000000..9fc0e09 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0kdjm3ugulmq" +path="res://.godot/imported/icon_f6_aspectofthedrake.png-fb040096746b17a2ad7d213980e03fca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthedrake.png" +dest_files=["res://.godot/imported/icon_f6_aspectofthedrake.png-fb040096746b17a2ad7d213980e03fca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png new file mode 100644 index 0000000..dde71ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png.import new file mode 100644 index 0000000..846f00b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpeafsm8r2oup" +path="res://.godot/imported/icon_f6_aspectofthefox.png-8df503a2b2f94b5e407b3a9df895c44d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthefox.png" +dest_files=["res://.godot/imported/icon_f6_aspectofthefox.png-8df503a2b2f94b5e407b3a9df895c44d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png new file mode 100644 index 0000000..a1c062c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png.import new file mode 100644 index 0000000..475bda9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x7xnnrdts7y2" +path="res://.godot/imported/icon_f6_aspectofthemountains.png-91a9972acbd787a715972d54eeef73df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_aspectofthemountains.png" +dest_files=["res://.godot/imported/icon_f6_aspectofthemountains.png-91a9972acbd787a715972d54eeef73df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png new file mode 100644 index 0000000..c6fa869 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png.import new file mode 100644 index 0000000..994c832 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0qj42mkeoel0" +path="res://.godot/imported/icon_f6_avalanche.png-86fd134c1f93989ce5b79a025f4449a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_avalanche.png" +dest_files=["res://.godot/imported/icon_f6_avalanche.png-86fd134c1f93989ce5b79a025f4449a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png new file mode 100644 index 0000000..fe96c95 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png.import new file mode 100644 index 0000000..f550d30 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgi7agcoljx3k" +path="res://.godot/imported/icon_f6_blazingspines.png-9f98d3b2ccd1428c6e3892e3dfe07195.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_blazingspines.png" +dest_files=["res://.godot/imported/icon_f6_blazingspines.png-9f98d3b2ccd1428c6e3892e3dfe07195.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png new file mode 100644 index 0000000..91ff0be Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png.import new file mode 100644 index 0000000..bcc27ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bauylo84jc4be" +path="res://.godot/imported/icon_f6_bonechillbarrier.png-3771dc89cbef6e87600019d692d3812f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_bonechillbarrier.png" +dest_files=["res://.godot/imported/icon_f6_bonechillbarrier.png-3771dc89cbef6e87600019d692d3812f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png new file mode 100644 index 0000000..dd702d2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png.import new file mode 100644 index 0000000..3b2636a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u4mi87eslp8u" +path="res://.godot/imported/icon_f6_chromaticcold.png-b5df4ad7d27708c01a5a4ac41d008325.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_chromaticcold.png" +dest_files=["res://.godot/imported/icon_f6_chromaticcold.png-b5df4ad7d27708c01a5a4ac41d008325.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png new file mode 100644 index 0000000..9e19bd5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png.import new file mode 100644 index 0000000..205e01d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ialtv0ve2eev" +path="res://.godot/imported/icon_f6_conceilingshroud.png-6fde861d857b3e972a6a6ccd3cdacac6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_conceilingshroud.png" +dest_files=["res://.godot/imported/icon_f6_conceilingshroud.png-6fde861d857b3e972a6a6ccd3cdacac6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png new file mode 100644 index 0000000..8ef3aaa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png.import new file mode 100644 index 0000000..80e9b81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cupju288mgsui" +path="res://.godot/imported/icon_f6_creepingfrost.png-91a0aa4b0384ff10afd785675787033c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_creepingfrost.png" +dest_files=["res://.godot/imported/icon_f6_creepingfrost.png-91a0aa4b0384ff10afd785675787033c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png new file mode 100644 index 0000000..aea009d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png.import new file mode 100644 index 0000000..70bd2f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mn1fvsk8hi3m" +path="res://.godot/imported/icon_f6_cryogenesis.png-13b75946c1cc16bf4e1cb3625594a220.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_cryogenesis.png" +dest_files=["res://.godot/imported/icon_f6_cryogenesis.png-13b75946c1cc16bf4e1cb3625594a220.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png new file mode 100644 index 0000000..fb5f275 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png.import new file mode 100644 index 0000000..b5786fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byor72uhi7nki" +path="res://.godot/imported/icon_f6_enfeeble.png-46656c674e2cf0de36d783906a721741.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_enfeeble.png" +dest_files=["res://.godot/imported/icon_f6_enfeeble.png-46656c674e2cf0de36d783906a721741.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png new file mode 100644 index 0000000..b26e8fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png.import new file mode 100644 index 0000000..7d29bf7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccdgr3muyhf5h" +path="res://.godot/imported/icon_f6_entericedome.png-7876a92a3bbfb8c3f06360ef9b84c6e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_entericedome.png" +dest_files=["res://.godot/imported/icon_f6_entericedome.png-7876a92a3bbfb8c3f06360ef9b84c6e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png new file mode 100644 index 0000000..cedf04d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png.import new file mode 100644 index 0000000..c6a6266 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deg3ntnni82sp" +path="res://.godot/imported/icon_f6_flashfreeze.png-c7d021356449c2319a2adb4a1c3b95bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_flashfreeze.png" +dest_files=["res://.godot/imported/icon_f6_flashfreeze.png-c7d021356449c2319a2adb4a1c3b95bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png new file mode 100644 index 0000000..74adb24 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png.import new file mode 100644 index 0000000..fb0abec --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vajdv5k3sguf" +path="res://.godot/imported/icon_f6_frigidcorona.png-1b775428a2470f43a2628236175a3b62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frigidcorona.png" +dest_files=["res://.godot/imported/icon_f6_frigidcorona.png-1b775428a2470f43a2628236175a3b62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png new file mode 100644 index 0000000..e399d73 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png.import new file mode 100644 index 0000000..bda9a3a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivj2033vtnsc" +path="res://.godot/imported/icon_f6_frostburn.png-4a0e491ea967c5ca7aa7f907878aec1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostburn.png" +dest_files=["res://.godot/imported/icon_f6_frostburn.png-4a0e491ea967c5ca7aa7f907878aec1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png new file mode 100644 index 0000000..5bd5860 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png.import new file mode 100644 index 0000000..3c55dd6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5yo0w3ttpyl5" +path="res://.godot/imported/icon_f6_frostfire.png-e4426b869801fb37159939f846feee3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_frostfire.png" +dest_files=["res://.godot/imported/icon_f6_frostfire.png-e4426b869801fb37159939f846feee3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png new file mode 100644 index 0000000..a117caf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png.import new file mode 100644 index 0000000..fb010aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgoey0w30oep2" +path="res://.godot/imported/icon_f6_glacialfissure.png-ad1764ae5ec72de52e5b018940563c9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_glacialfissure.png" +dest_files=["res://.godot/imported/icon_f6_glacialfissure.png-ad1764ae5ec72de52e5b018940563c9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png new file mode 100644 index 0000000..ab84a48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png.import new file mode 100644 index 0000000..7f5ba31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dftlai0id75bv" +path="res://.godot/imported/icon_f6_gravitywell.png-8e73862500bdc7fb1066fdeee1fd515a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_gravitywell.png" +dest_files=["res://.godot/imported/icon_f6_gravitywell.png-8e73862500bdc7fb1066fdeee1fd515a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png new file mode 100644 index 0000000..d8918e9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png.import new file mode 100644 index 0000000..676c93d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8p2vgad3pdym" +path="res://.godot/imported/icon_f6_hailstoneprison.png-47d8ce9bf1aef14d305a1816e724c251.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_hailstoneprison.png" +dest_files=["res://.godot/imported/icon_f6_hailstoneprison.png-47d8ce9bf1aef14d305a1816e724c251.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png new file mode 100644 index 0000000..b5cfb23 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png.import new file mode 100644 index 0000000..f49583e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjhpybgggme2o" +path="res://.godot/imported/icon_f6_icecapsule.png-301b51e9079c71694e9309c6f05a46f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icecapsule.png" +dest_files=["res://.godot/imported/icon_f6_icecapsule.png-301b51e9079c71694e9309c6f05a46f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png new file mode 100644 index 0000000..29efd30 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png.import new file mode 100644 index 0000000..f73b418 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgexsf7gqe2w5" +path="res://.godot/imported/icon_f6_icehook.png-1c490ab795fb01c313802fb5a9ec4bb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icehook.png" +dest_files=["res://.godot/imported/icon_f6_icehook.png-1c490ab795fb01c313802fb5a9ec4bb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png new file mode 100644 index 0000000..feb0a12 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png.import new file mode 100644 index 0000000..fb147d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1k3b2wnp0equ" +path="res://.godot/imported/icon_f6_icesculpture.png-eaa72b46d44e8b10050fd1ae46975b75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icesculpture.png" +dest_files=["res://.godot/imported/icon_f6_icesculpture.png-eaa72b46d44e8b10050fd1ae46975b75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png new file mode 100644 index 0000000..5cabbeb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png.import new file mode 100644 index 0000000..c756a5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj5jf45p1rksv" +path="res://.godot/imported/icon_f6_icetwice.png-81d75ceeabe2efcc6c1fe3b937245ae0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_icetwice.png" +dest_files=["res://.godot/imported/icon_f6_icetwice.png-81d75ceeabe2efcc6c1fe3b937245ae0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png new file mode 100644 index 0000000..352c842 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png.import new file mode 100644 index 0000000..c91685a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb01f2c1npesa" +path="res://.godot/imported/icon_f6_illusoryice.png-315e98a21193ec05888c2712efcb6f6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_illusoryice.png" +dest_files=["res://.godot/imported/icon_f6_illusoryice.png-315e98a21193ec05888c2712efcb6f6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png new file mode 100644 index 0000000..68faacb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png.import new file mode 100644 index 0000000..1f7d4a9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bba1fb2cx1gp3" +path="res://.godot/imported/icon_f6_infinitehowlers.png-54b0e55ef0a8fb41e45a42f898253bb6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_infinitehowlers.png" +dest_files=["res://.godot/imported/icon_f6_infinitehowlers.png-54b0e55ef0a8fb41e45a42f898253bb6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png new file mode 100644 index 0000000..7e1b049 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png.import new file mode 100644 index 0000000..f4afe72 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhp1okpljfmgt" +path="res://.godot/imported/icon_f6_lightningblitz.png-271d5ea58a985795bef0c94b1742e94f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lightningblitz.png" +dest_files=["res://.godot/imported/icon_f6_lightningblitz.png-271d5ea58a985795bef0c94b1742e94f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png new file mode 100644 index 0000000..0bca2fb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png.import new file mode 100644 index 0000000..f4ef03a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnev7eix56shg" +path="res://.godot/imported/icon_f6_lucentcharge.png-3a379cc99221b7861258197c5a6a67cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_lucentcharge.png" +dest_files=["res://.godot/imported/icon_f6_lucentcharge.png-3a379cc99221b7861258197c5a6a67cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png new file mode 100644 index 0000000..a5bdcba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png.import new file mode 100644 index 0000000..23e94cb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djd4n701p2mgb" +path="res://.godot/imported/icon_f6_manadeathgrip.png-ae8729ad87580284f27b9ac92401f7a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_manadeathgrip.png" +dest_files=["res://.godot/imported/icon_f6_manadeathgrip.png-ae8729ad87580284f27b9ac92401f7a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png new file mode 100644 index 0000000..bf95f50 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png.import new file mode 100644 index 0000000..8e8d43a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dylbjjv3fl52x" +path="res://.godot/imported/icon_f6_markofsolitude.png-34ccd4914447e2a1de40eb6b1cbf7a5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_markofsolitude.png" +dest_files=["res://.godot/imported/icon_f6_markofsolitude.png-34ccd4914447e2a1de40eb6b1cbf7a5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png new file mode 100644 index 0000000..518579d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png.import new file mode 100644 index 0000000..07c333c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diul02qu7htw3" +path="res://.godot/imported/icon_f6_mesmerize.png-83d9118031541f09bcba61c205cae95e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mesmerize.png" +dest_files=["res://.godot/imported/icon_f6_mesmerize.png-83d9118031541f09bcba61c205cae95e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png new file mode 100644 index 0000000..2d2d603 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png.import new file mode 100644 index 0000000..2d2ceb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b86j28clr43r6" +path="res://.godot/imported/icon_f6_mightofvespyr.png-ddd9df21fd66cfa6adbb68b490f34864.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_mightofvespyr.png" +dest_files=["res://.godot/imported/icon_f6_mightofvespyr.png-ddd9df21fd66cfa6adbb68b490f34864.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png new file mode 100644 index 0000000..09eed84 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png.import new file mode 100644 index 0000000..fbebdc8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bchedk8737ksj" +path="res://.godot/imported/icon_f6_ninelives.png-1fd0bfb19649386ac2078b7beafa92dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_ninelives.png" +dest_files=["res://.godot/imported/icon_f6_ninelives.png-1fd0bfb19649386ac2078b7beafa92dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png new file mode 100644 index 0000000..2df0316 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png.import new file mode 100644 index 0000000..8b73857 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmehfcl7ux6qh" +path="res://.godot/imported/icon_f6_polarity.png-a49e45adeb9289a89c14c418f36f389b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_polarity.png" +dest_files=["res://.godot/imported/icon_f6_polarity.png-a49e45adeb9289a89c14c418f36f389b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png new file mode 100644 index 0000000..e806d82 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png.import new file mode 100644 index 0000000..779a314 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boout3rvsbga" +path="res://.godot/imported/icon_f6_shatter.png-acede7e83f54e6bce6f41356ae9a65d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_shatter.png" +dest_files=["res://.godot/imported/icon_f6_shatter.png-acede7e83f54e6bce6f41356ae9a65d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png new file mode 100644 index 0000000..a6ad139 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png.import new file mode 100644 index 0000000..08d2839 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2ubfisis1um3" +path="res://.godot/imported/icon_f6_snowstorm.png-b4f1e2eb364367e3ab4774c8ff681758.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_snowstorm.png" +dest_files=["res://.godot/imported/icon_f6_snowstorm.png-b4f1e2eb364367e3ab4774c8ff681758.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png new file mode 100644 index 0000000..01275bf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png.import new file mode 100644 index 0000000..91faf9e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6l2d2y15ae8o" +path="res://.godot/imported/icon_f6_spiritofthewild.png-56231758897bdc44974adcc8ebdb10c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_spiritofthewild.png" +dest_files=["res://.godot/imported/icon_f6_spiritofthewild.png-56231758897bdc44974adcc8ebdb10c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png new file mode 100644 index 0000000..dab362f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png.import new file mode 100644 index 0000000..9e40102 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do8xxdlmgodk6" +path="res://.godot/imported/icon_f6_unstoppableforce.png-32affb59bf9cbf9bd8269cb5af23a706.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_unstoppableforce.png" +dest_files=["res://.godot/imported/icon_f6_unstoppableforce.png-32affb59bf9cbf9bd8269cb5af23a706.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png new file mode 100644 index 0000000..6b9fc3c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png.import new file mode 100644 index 0000000..dc55d0d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bksjnx4gf8fco" +path="res://.godot/imported/icon_f6_vespyrsurge.png-7c6e98b0310233ebac47acf9514f5fad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_vespyrsurge.png" +dest_files=["res://.godot/imported/icon_f6_vespyrsurge.png-7c6e98b0310233ebac47acf9514f5fad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png new file mode 100644 index 0000000..7caeaea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png.import new file mode 100644 index 0000000..ff9e104 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bylbvmask6wcm" +path="res://.godot/imported/icon_f6_wailingoverdrive.png-9c4a24620ba4adee1f8869fba8cb5c8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_wailingoverdrive.png" +dest_files=["res://.godot/imported/icon_f6_wailingoverdrive.png-9c4a24620ba4adee1f8869fba8cb5c8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png new file mode 100644 index 0000000..399eccd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png.import new file mode 100644 index 0000000..a540f5e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4vdahg3mmrdt" +path="res://.godot/imported/icon_f6_winterswake.png-1f9b8de12c768a534b48246e6b5a9bb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterswake.png" +dest_files=["res://.godot/imported/icon_f6_winterswake.png-1f9b8de12c768a534b48246e6b5a9bb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png new file mode 100644 index 0000000..e471293 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png.import new file mode 100644 index 0000000..67ca8cc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7fhuqyvckpl3" +path="res://.godot/imported/icon_f6_winterwave.png-6a1bb12a304b71e6fa9e6fb441b65557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_f6_winterwave.png" +dest_files=["res://.godot/imported/icon_f6_winterwave.png-6a1bb12a304b71e6fa9e6fb441b65557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png new file mode 100644 index 0000000..ba2585e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png.import new file mode 100644 index 0000000..ddfc11f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdg18ti66kkfm" +path="res://.godot/imported/icon_neutral_brilliantplume.png-e8f7a47eafcdf1a27673524f38659f11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_brilliantplume.png" +dest_files=["res://.godot/imported/icon_neutral_brilliantplume.png-e8f7a47eafcdf1a27673524f38659f11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png new file mode 100644 index 0000000..9f9ce4c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png.import new file mode 100644 index 0000000..42671f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhdudqwunirnc" +path="res://.godot/imported/icon_neutral_precisionboulder.png-c4047457c433a86c80344492b487cb8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_precisionboulder.png" +dest_files=["res://.godot/imported/icon_neutral_precisionboulder.png-c4047457c433a86c80344492b487cb8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png new file mode 100644 index 0000000..0ebf4a8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png.import new file mode 100644 index 0000000..69d6255 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bln13rn1hgew2" +path="res://.godot/imported/icon_neutral_riddle.png-b619ff373b7cc4644272dbac5b869159.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_riddle.png" +dest_files=["res://.godot/imported/icon_neutral_riddle.png-b619ff373b7cc4644272dbac5b869159.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png new file mode 100644 index 0000000..e37c82d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png.import new file mode 100644 index 0000000..e881479 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj8jcp2kp43lt" +path="res://.godot/imported/icon_neutral_trinitybreath.png-f6e154a4565d0dbc394d3d2c5ffcb5dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitybreath.png" +dest_files=["res://.godot/imported/icon_neutral_trinitybreath.png-f6e154a4565d0dbc394d3d2c5ffcb5dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png new file mode 100644 index 0000000..b9e353d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png.import new file mode 100644 index 0000000..dc7da2a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyqc18rflyyx" +path="res://.godot/imported/icon_neutral_trinitygrace.png-69d6fe37423124e88e9ed5641f24cbdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinitygrace.png" +dest_files=["res://.godot/imported/icon_neutral_trinitygrace.png-69d6fe37423124e88e9ed5641f24cbdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png new file mode 100644 index 0000000..a8dec27 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png.import new file mode 100644 index 0000000..b2c45e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqa5kce4dehx8" +path="res://.godot/imported/icon_neutral_trinityheart.png-895381f0bcecf88fa99458c467878976.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/icons/icon_neutral_trinityheart.png" +dest_files=["res://.godot/imported/icon_neutral_trinityheart.png-895381f0bcecf88fa99458c467878976.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png new file mode 100644 index 0000000..341c54e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png.import new file mode 100644 index 0000000..f1a9497 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3pnsg0x4x10q" +path="res://.godot/imported/boss_andromeda.png-51e47ef0a3913b4c7bc6711516488a57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_andromeda.png" +dest_files=["res://.godot/imported/boss_andromeda.png-51e47ef0a3913b4c7bc6711516488a57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png new file mode 100644 index 0000000..c11ea91 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png.import new file mode 100644 index 0000000..eb3ebe0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3m4itotyi77a" +path="res://.godot/imported/boss_antiswarm.png-4310bc3da353dd25370b33fab189e9f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_antiswarm.png" +dest_files=["res://.godot/imported/boss_antiswarm.png-4310bc3da353dd25370b33fab189e9f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png new file mode 100644 index 0000000..0ad1e6d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png.import new file mode 100644 index 0000000..2c29783 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b13bdnnpcf6ia" +path="res://.godot/imported/boss_borealjuggernaut.png-a938e9f0d2001b3031b486eb371a0f07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_borealjuggernaut.png" +dest_files=["res://.godot/imported/boss_borealjuggernaut.png-a938e9f0d2001b3031b486eb371a0f07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png new file mode 100644 index 0000000..1a9c162 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png.import new file mode 100644 index 0000000..5731691 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mo1t0chxccm6" +path="res://.godot/imported/boss_candypanda.png-ba354ae9f4662677ad66c7c8661d7af3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_candypanda.png" +dest_files=["res://.godot/imported/boss_candypanda.png-ba354ae9f4662677ad66c7c8661d7af3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png new file mode 100644 index 0000000..b401a0b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png.import new file mode 100644 index 0000000..17df61c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u8mk1th204oa" +path="res://.godot/imported/boss_chaosknight.png-d6485c87eca1ee7f6611ff796f5ceece.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_chaosknight.png" +dest_files=["res://.godot/imported/boss_chaosknight.png-d6485c87eca1ee7f6611ff796f5ceece.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png new file mode 100644 index 0000000..722cec2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png.import new file mode 100644 index 0000000..d5d0d27 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djd5higgvq4ig" +path="res://.godot/imported/boss_christmas.png-3f67452180a5ed3ec438b570531cf0d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_christmas.png" +dest_files=["res://.godot/imported/boss_christmas.png-3f67452180a5ed3ec438b570531cf0d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png new file mode 100644 index 0000000..d0a5008 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png.import new file mode 100644 index 0000000..a0ffb0d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpec6xt2on4v4" +path="res://.godot/imported/boss_cindera.png-3ae7ad90577f55a734bc199a6c8a71c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_cindera.png" +dest_files=["res://.godot/imported/boss_cindera.png-3ae7ad90577f55a734bc199a6c8a71c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png new file mode 100644 index 0000000..81447a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png.import new file mode 100644 index 0000000..d560eb1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1hcl4ftbn8f3" +path="res://.godot/imported/boss_city.png-7e23c6101152130ecc3f23005d0f82d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_city.png" +dest_files=["res://.godot/imported/boss_city.png-7e23c6101152130ecc3f23005d0f82d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png new file mode 100644 index 0000000..2bd21c8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png.import new file mode 100644 index 0000000..f2c223f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jq5uasvpfisi" +path="res://.godot/imported/boss_crystal.png-85e05fe902d39d84d6d45f616a7b0517.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_crystal.png" +dest_files=["res://.godot/imported/boss_crystal.png-85e05fe902d39d84d6d45f616a7b0517.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png new file mode 100644 index 0000000..f5bcf0c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png.import new file mode 100644 index 0000000..86541ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsq1win80faab" +path="res://.godot/imported/boss_decepticle.png-78c054cfbfd6642e4697a313cb97e6d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticle.png" +dest_files=["res://.godot/imported/boss_decepticle.png-78c054cfbfd6642e4697a313cb97e6d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png new file mode 100644 index 0000000..9c4b989 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png.import new file mode 100644 index 0000000..b3bb5aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfdim5gklsp2d" +path="res://.godot/imported/boss_decepticlechassis.png-48e46e3255904ba027bd62703cb3d4d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlechassis.png" +dest_files=["res://.godot/imported/boss_decepticlechassis.png-48e46e3255904ba027bd62703cb3d4d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png new file mode 100644 index 0000000..cea99b9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png.import new file mode 100644 index 0000000..fdb489b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddop8cqunpanv" +path="res://.godot/imported/boss_decepticlehelm.png-f4fd7ade192ec1beed509014d8f32bd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlehelm.png" +dest_files=["res://.godot/imported/boss_decepticlehelm.png-f4fd7ade192ec1beed509014d8f32bd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png new file mode 100644 index 0000000..02b2404 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png.import new file mode 100644 index 0000000..53d15b0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hfqcu4m5d4sc" +path="res://.godot/imported/boss_decepticleprime.png-c1e08a49861fe940ddba7942bf927007.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticleprime.png" +dest_files=["res://.godot/imported/boss_decepticleprime.png-c1e08a49861fe940ddba7942bf927007.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png new file mode 100644 index 0000000..60952e8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png.import new file mode 100644 index 0000000..fd8c42e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://frday7ki5lbr" +path="res://.godot/imported/boss_decepticlesword.png-70debde81232d555f068b613283506da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlesword.png" +dest_files=["res://.godot/imported/boss_decepticlesword.png-70debde81232d555f068b613283506da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png new file mode 100644 index 0000000..9b646e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png.import new file mode 100644 index 0000000..f91d26e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r2h60aj2mqgo" +path="res://.godot/imported/boss_decepticlewings.png-2cd1f877109466da9c590409c2f511a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_decepticlewings.png" +dest_files=["res://.godot/imported/boss_decepticlewings.png-2cd1f877109466da9c590409c2f511a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png new file mode 100644 index 0000000..eb9f1ea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png.import new file mode 100644 index 0000000..a46b38f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be3dpu5bfgvfv" +path="res://.godot/imported/boss_dissonance.png-7e3936458b0beee70084ad9348ddffe8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_dissonance.png" +dest_files=["res://.godot/imported/boss_dissonance.png-7e3936458b0beee70084ad9348ddffe8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png new file mode 100644 index 0000000..6f005e9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png.import new file mode 100644 index 0000000..19cca2a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6o7gjpew4lgf" +path="res://.godot/imported/boss_emp.png-41cee2e1a195f20a0ed06770cfb69f64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_emp.png" +dest_files=["res://.godot/imported/boss_emp.png-41cee2e1a195f20a0ed06770cfb69f64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png new file mode 100644 index 0000000..1be29d1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png.import new file mode 100644 index 0000000..1f7ad3d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj6w6uj48sc5m" +path="res://.godot/imported/boss_gol.png-05fde21b526e0b5c756519248c28b637.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_gol.png" +dest_files=["res://.godot/imported/boss_gol.png-05fde21b526e0b5c756519248c28b637.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png new file mode 100644 index 0000000..6995ca6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png.import new file mode 100644 index 0000000..b2f5157 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddxm4fb8ysiae" +path="res://.godot/imported/boss_grym.png-a684f225325b980780273df5d1d4eb11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_grym.png" +dest_files=["res://.godot/imported/boss_grym.png-a684f225325b980780273df5d1d4eb11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png new file mode 100644 index 0000000..f7b3aa9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png.import new file mode 100644 index 0000000..87cb6d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2afa7m2gycvd" +path="res://.godot/imported/boss_harmony.png-9e3af07ded842d1f0af4f4f8c0b9d1e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_harmony.png" +dest_files=["res://.godot/imported/boss_harmony.png-9e3af07ded842d1f0af4f4f8c0b9d1e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png new file mode 100644 index 0000000..c90261d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png.import new file mode 100644 index 0000000..52c6e85 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dni32shmov6hu" +path="res://.godot/imported/boss_invader.png-7eeec9e6ca40171309ff687dfb78d7fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_invader.png" +dest_files=["res://.godot/imported/boss_invader.png-7eeec9e6ca40171309ff687dfb78d7fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png new file mode 100644 index 0000000..4ddf3a1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png.import new file mode 100644 index 0000000..19d79fe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxpjpyoi76ybt" +path="res://.godot/imported/boss_kane.png-705a2168cc4c6dddc052792b984e69bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kane.png" +dest_files=["res://.godot/imported/boss_kane.png-705a2168cc4c6dddc052792b984e69bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png new file mode 100644 index 0000000..38f1773 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png.import new file mode 100644 index 0000000..6680731 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://covaifg5xmain" +path="res://.godot/imported/boss_kron.png-333fd35058375abbfb0a6a071bd4a784.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_kron.png" +dest_files=["res://.godot/imported/boss_kron.png-333fd35058375abbfb0a6a071bd4a784.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png new file mode 100644 index 0000000..d528d63 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png.import new file mode 100644 index 0000000..33aa606 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0p0xvvgk1kwr" +path="res://.godot/imported/boss_legion.png-85938656f85c796913bafc6bd86383eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_legion.png" +dest_files=["res://.godot/imported/boss_legion.png-85938656f85c796913bafc6bd86383eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png new file mode 100644 index 0000000..10db54d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png.import new file mode 100644 index 0000000..bee70a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgwtd57fh0woe" +path="res://.godot/imported/boss_malyk.png-be727b790ed2eaa94253905b2dde6606.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_malyk.png" +dest_files=["res://.godot/imported/boss_malyk.png-be727b790ed2eaa94253905b2dde6606.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png new file mode 100644 index 0000000..941e974 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png.import new file mode 100644 index 0000000..d030ebb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jqlcdrxd81a" +path="res://.godot/imported/boss_manaman.png-96a876eb9d1f6bcc77f8b6a8b91735cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_manaman.png" +dest_files=["res://.godot/imported/boss_manaman.png-96a876eb9d1f6bcc77f8b6a8b91735cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png new file mode 100644 index 0000000..23308bd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png.import new file mode 100644 index 0000000..3115301 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq57us2gv3gfo" +path="res://.godot/imported/boss_orias.png-b2f904c72ab9210238d673cb8ce589a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_orias.png" +dest_files=["res://.godot/imported/boss_orias.png-b2f904c72ab9210238d673cb8ce589a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png new file mode 100644 index 0000000..0b927ba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png.import new file mode 100644 index 0000000..698211f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd5btqkpcyj35" +path="res://.godot/imported/boss_oriasidol.png-93beb2306f41669bec55b6bdf354b4ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_oriasidol.png" +dest_files=["res://.godot/imported/boss_oriasidol.png-93beb2306f41669bec55b6bdf354b4ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png new file mode 100644 index 0000000..94f3b94 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png.import new file mode 100644 index 0000000..37c4bcd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7xctct4lcuk6" +path="res://.godot/imported/boss_paragon.png-1ce7c0980e5d2433bf81b68c4b2d9bf5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_paragon.png" +dest_files=["res://.godot/imported/boss_paragon.png-1ce7c0980e5d2433bf81b68c4b2d9bf5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png new file mode 100644 index 0000000..6aa82c8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png.import new file mode 100644 index 0000000..02977cd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8rlhnl1kw05e" +path="res://.godot/imported/boss_protector.png-2d545e07e9e035e2e44ed5bd39ee0568.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_protector.png" +dest_files=["res://.godot/imported/boss_protector.png-2d545e07e9e035e2e44ed5bd39ee0568.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png new file mode 100644 index 0000000..723e3a5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png.import new file mode 100644 index 0000000..7a18831 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chjqtehupxewf" +path="res://.godot/imported/boss_sandpanther.png-6d19157017310a263d9d8d1935fd13e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_sandpanther.png" +dest_files=["res://.godot/imported/boss_sandpanther.png-6d19157017310a263d9d8d1935fd13e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png new file mode 100644 index 0000000..7f22168 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png.import new file mode 100644 index 0000000..3700eaf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de6hhrmielulv" +path="res://.godot/imported/boss_serpenti.png-1302d8e912acf92a5e6750b0eae441a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_serpenti.png" +dest_files=["res://.godot/imported/boss_serpenti.png-1302d8e912acf92a5e6750b0eae441a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png new file mode 100644 index 0000000..2603f96 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png.import new file mode 100644 index 0000000..0937531 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5vypt3hksf2y" +path="res://.godot/imported/boss_shadowlord.png-fba91622e667831ec6dee981febc0fff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shadowlord.png" +dest_files=["res://.godot/imported/boss_shadowlord.png-fba91622e667831ec6dee981febc0fff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png new file mode 100644 index 0000000..5298da0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png.import new file mode 100644 index 0000000..d7567ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cve40vuntdfwi" +path="res://.godot/imported/boss_shinkagezendo copy.png-98968cc9a74e7df76a041d97e5ff5c5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo copy.png" +dest_files=["res://.godot/imported/boss_shinkagezendo copy.png-98968cc9a74e7df76a041d97e5ff5c5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png new file mode 100644 index 0000000..5298da0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png.import new file mode 100644 index 0000000..f685f40 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rgo1hoaxqwvq" +path="res://.godot/imported/boss_shinkagezendo.png-8784a434ec6cf818ebc271f86fdb3b63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_shinkagezendo.png" +dest_files=["res://.godot/imported/boss_shinkagezendo.png-8784a434ec6cf818ebc271f86fdb3b63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png new file mode 100644 index 0000000..c6fa7ac Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png.import new file mode 100644 index 0000000..82fcaf6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqkehxr80u8xl" +path="res://.godot/imported/boss_skurge.png-c1d585a988e61d38c996b26b70d70337.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skurge.png" +dest_files=["res://.godot/imported/boss_skurge.png-c1d585a988e61d38c996b26b70d70337.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png new file mode 100644 index 0000000..2fb0b4a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png.import new file mode 100644 index 0000000..73eccad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dagqdjxbi740x" +path="res://.godot/imported/boss_skyfalltyrant.png-8a6c09fb84312bd8c9854dfc6b6894e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_skyfalltyrant.png" +dest_files=["res://.godot/imported/boss_skyfalltyrant.png-8a6c09fb84312bd8c9854dfc6b6894e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png new file mode 100644 index 0000000..45ae9bc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png.import new file mode 100644 index 0000000..8f2ee6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0fe16aqv0he2" +path="res://.godot/imported/boss_solfist.png-f8d3a49bb60ecac86de2768e052267ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_solfist.png" +dest_files=["res://.godot/imported/boss_solfist.png-f8d3a49bb60ecac86de2768e052267ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png new file mode 100644 index 0000000..5ee68ef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png.import new file mode 100644 index 0000000..8a2bcea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3ydmj8xp32ac" +path="res://.godot/imported/boss_soulstealer.png-e8b06f22dee47a9a10a45e384f7c1fa9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_soulstealer.png" +dest_files=["res://.godot/imported/boss_soulstealer.png-e8b06f22dee47a9a10a45e384f7c1fa9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png new file mode 100644 index 0000000..9f6a346 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png.import new file mode 100644 index 0000000..440ceb1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://khejv6msixgl" +path="res://.godot/imported/boss_spelleater.png-e4126afcc5c787cac141ccb2141a59a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_spelleater.png" +dest_files=["res://.godot/imported/boss_spelleater.png-e4126afcc5c787cac141ccb2141a59a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png new file mode 100644 index 0000000..f33274f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png.import new file mode 100644 index 0000000..a61d056 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dey3fme3rkooe" +path="res://.godot/imported/boss_taskmaster.png-0734403201994dd1a580570bc68adf18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_taskmaster.png" +dest_files=["res://.godot/imported/boss_taskmaster.png-0734403201994dd1a580570bc68adf18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png new file mode 100644 index 0000000..f99e980 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png.import new file mode 100644 index 0000000..f196520 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6bkul6g5gaum" +path="res://.godot/imported/boss_treatdemon.png-eb84025644e4068823494a542d2fb229.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdemon.png" +dest_files=["res://.godot/imported/boss_treatdemon.png-eb84025644e4068823494a542d2fb229.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png new file mode 100644 index 0000000..f894090 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png.import new file mode 100644 index 0000000..5db6bed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgiyaga8rgw4g" +path="res://.godot/imported/boss_treatdrake.png-fc496eef5db34db3dcefe856c438d768.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatdrake.png" +dest_files=["res://.godot/imported/boss_treatdrake.png-fc496eef5db34db3dcefe856c438d768.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png new file mode 100644 index 0000000..1cc7cd3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png.import new file mode 100644 index 0000000..2658a11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5ane0uf11s37" +path="res://.godot/imported/boss_treatoni.png-4f8e8ad619b2654c134ba2457271a67d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_treatoni.png" +dest_files=["res://.godot/imported/boss_treatoni.png-4f8e8ad619b2654c134ba2457271a67d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png new file mode 100644 index 0000000..b7dfad7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png.import new file mode 100644 index 0000000..c826385 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fbw3xtvdm7qc" +path="res://.godot/imported/boss_umbra.png-f8e5c128cd20b427e08d04f07dac34ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_umbra.png" +dest_files=["res://.godot/imported/boss_umbra.png-f8e5c128cd20b427e08d04f07dac34ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png new file mode 100644 index 0000000..a6a84cf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png.import new file mode 100644 index 0000000..71d364a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d03lgkcrrwdnq" +path="res://.godot/imported/boss_unhallowed.png-3c76001371200519d0eddaea8d195452.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_unhallowed.png" +dest_files=["res://.godot/imported/boss_unhallowed.png-3c76001371200519d0eddaea8d195452.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png new file mode 100644 index 0000000..1e1d3f9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png.import new file mode 100644 index 0000000..c29185b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cswk82yk6aadw" +path="res://.godot/imported/boss_valiant.png-134e8dfacce68f5ee3b38ce07963a5f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_valiant.png" +dest_files=["res://.godot/imported/boss_valiant.png-134e8dfacce68f5ee3b38ce07963a5f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png new file mode 100644 index 0000000..79fefed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png.import new file mode 100644 index 0000000..8da6407 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpgva71a1w4u2" +path="res://.godot/imported/boss_vampire.png-823778698e572b2984c2a4097706ebd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_vampire.png" +dest_files=["res://.godot/imported/boss_vampire.png-823778698e572b2984c2a4097706ebd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png new file mode 100644 index 0000000..451daac Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png.import new file mode 100644 index 0000000..9d2466c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c12dgp5mr1140" +path="res://.godot/imported/boss_wolfpunch.png-a1a0e14f85a4bb2309c16e6f38ee32e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wolfpunch.png" +dest_files=["res://.godot/imported/boss_wolfpunch.png-a1a0e14f85a4bb2309c16e6f38ee32e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png new file mode 100644 index 0000000..e354fe6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png.import new file mode 100644 index 0000000..ebf47e7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxb7k3dbf6unw" +path="res://.godot/imported/boss_wraith.png-8acdcd12ec45252bfed9e60cf816e96b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wraith.png" +dest_files=["res://.godot/imported/boss_wraith.png-8acdcd12ec45252bfed9e60cf816e96b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png new file mode 100644 index 0000000..8e06875 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png.import new file mode 100644 index 0000000..63f52bc0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duq10uk4r55qh" +path="res://.godot/imported/boss_wujin.png-83d52bdab9c685fbebe9c6edd796aabc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/boss_wujin.png" +dest_files=["res://.godot/imported/boss_wujin.png-83d52bdab9c685fbebe9c6edd796aabc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png new file mode 100644 index 0000000..b22ed1a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png.import new file mode 100644 index 0000000..ab8991f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di500sdeiisnk" +path="res://.godot/imported/critter_1.png-7cc629aa8bf83a8f6dc8827153d32ec7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/critter_1.png" +dest_files=["res://.godot/imported/critter_1.png-7cc629aa8bf83a8f6dc8827153d32ec7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png new file mode 100644 index 0000000..7e6a80a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png.import new file mode 100644 index 0000000..59c8f76 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bynteia62ay7l" +path="res://.godot/imported/critter_2.png-2e08238c57f0e77e7b0c50d488a6b892.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/critter_2.png" +dest_files=["res://.godot/imported/critter_2.png-2e08238c57f0e77e7b0c50d488a6b892.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png new file mode 100644 index 0000000..f3334e1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png.import new file mode 100644 index 0000000..5b1af0f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgxy102nuerrt" +path="res://.godot/imported/f1_3rdgeneral.png-3234b28ed9d958e9e3d1e2a59d2857d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_3rdgeneral.png" +dest_files=["res://.godot/imported/f1_3rdgeneral.png-3234b28ed9d958e9e3d1e2a59d2857d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png new file mode 100644 index 0000000..e15ffd4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png.import new file mode 100644 index 0000000..caa891c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2vrbqo86nysw" +path="res://.godot/imported/f1_altgeneral.png-7d016d61bf702b9105238b1b247537df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneral.png" +dest_files=["res://.godot/imported/f1_altgeneral.png-7d016d61bf702b9105238b1b247537df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png new file mode 100644 index 0000000..f851f35 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png.import new file mode 100644 index 0000000..dbd349f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b146b05gqbygm" +path="res://.godot/imported/f1_altgeneraltier2.png-7ceffd4725fc4d9cc3cf635b9543db69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_altgeneraltier2.png" +dest_files=["res://.godot/imported/f1_altgeneraltier2.png-7ceffd4725fc4d9cc3cf635b9543db69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png new file mode 100644 index 0000000..c50303d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png.import new file mode 100644 index 0000000..494a988 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gpd14etpy6fu" +path="res://.godot/imported/f1_archdeacon.png-0bb4e5f45f074a14b16ec643dc767388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_archdeacon.png" +dest_files=["res://.godot/imported/f1_archdeacon.png-0bb4e5f45f074a14b16ec643dc767388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png new file mode 100644 index 0000000..5f18e5d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png.import new file mode 100644 index 0000000..e77c008 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgfelh3xygoct" +path="res://.godot/imported/f1_auroralioness.png-9517558126d58929dca475e6c491ce0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_auroralioness.png" +dest_files=["res://.godot/imported/f1_auroralioness.png-9517558126d58929dca475e6c491ce0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png new file mode 100644 index 0000000..ff3d2bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png.import new file mode 100644 index 0000000..67c5c58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3mnajcjpjmfq" +path="res://.godot/imported/f1_azuritelion.png-5b5ecf5f9c148567b53950494bea1654.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_azuritelion.png" +dest_files=["res://.godot/imported/f1_azuritelion.png-5b5ecf5f9c148567b53950494bea1654.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png new file mode 100644 index 0000000..1e526f1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png.import new file mode 100644 index 0000000..790c632 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2fqsom8oexj7" +path="res://.godot/imported/f1_baastchampion.png-44ab556f9c30711b4d77d1690005e049.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_baastchampion.png" +dest_files=["res://.godot/imported/f1_baastchampion.png-44ab556f9c30711b4d77d1690005e049.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png new file mode 100644 index 0000000..ef33b22 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png.import new file mode 100644 index 0000000..69e38bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t1l4rc1epqh7" +path="res://.godot/imported/f1_backlinearcher.png-f75ac1b132c4a119801668268a5c9877.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_backlinearcher.png" +dest_files=["res://.godot/imported/f1_backlinearcher.png-f75ac1b132c4a119801668268a5c9877.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png new file mode 100644 index 0000000..6d37957 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png.import new file mode 100644 index 0000000..a80b4a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dghgh4pb7im07" +path="res://.godot/imported/f1_bromemk2.png-1cae4f9a5a832c68f807183a04ecba97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_bromemk2.png" +dest_files=["res://.godot/imported/f1_bromemk2.png-1cae4f9a5a832c68f807183a04ecba97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png new file mode 100644 index 0000000..db016b9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png.import new file mode 100644 index 0000000..9725fe1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3aj2wp3usyv2" +path="res://.godot/imported/f1_buildcommon.png-c01917574862b171ea50684601c25112.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildcommon.png" +dest_files=["res://.godot/imported/f1_buildcommon.png-c01917574862b171ea50684601c25112.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png new file mode 100644 index 0000000..3516f44 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png.import new file mode 100644 index 0000000..95a7c9f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7vcfrmncfesw" +path="res://.godot/imported/f1_buildminion.png-2b87b58e545043959b6d6efa952a871b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_buildminion.png" +dest_files=["res://.godot/imported/f1_buildminion.png-2b87b58e545043959b6d6efa952a871b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png new file mode 100644 index 0000000..28005a2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png.import new file mode 100644 index 0000000..6ab7934 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c75pd73hpdu8f" +path="res://.godot/imported/f1_caliber-o.png-7fc54ffbcb0c6808ea927bcd546d4e75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caliber-o.png" +dest_files=["res://.godot/imported/f1_caliber-o.png-7fc54ffbcb0c6808ea927bcd546d4e75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png new file mode 100644 index 0000000..4478756 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png.import new file mode 100644 index 0000000..76e39b7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6w70jq1ctjx3" +path="res://.godot/imported/f1_caster.png-f2beb7f0d48974cef71c8e069905e0ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_caster.png" +dest_files=["res://.godot/imported/f1_caster.png-f2beb7f0d48974cef71c8e069905e0ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png new file mode 100644 index 0000000..b01b4af Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png.import new file mode 100644 index 0000000..26af45f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs2aguup5f3io" +path="res://.godot/imported/f1_elyxstormblade.png-35e54a9da314307678498c25dcf99bf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblade.png" +dest_files=["res://.godot/imported/f1_elyxstormblade.png-35e54a9da314307678498c25dcf99bf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png new file mode 100644 index 0000000..c8b8f0c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png.import new file mode 100644 index 0000000..94cb342 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ermptnt10jkf" +path="res://.godot/imported/f1_elyxstormblademk2.png-1b7eac1e0f74227f0e959f8d5b05487e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_elyxstormblademk2.png" +dest_files=["res://.godot/imported/f1_elyxstormblademk2.png-1b7eac1e0f74227f0e959f8d5b05487e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png new file mode 100644 index 0000000..22ff71d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png.import new file mode 100644 index 0000000..7c5b4ab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gybu378fgyaj" +path="res://.godot/imported/f1_excelsious.png-686e5ce47585de405847a012e99e1cc4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_excelsious.png" +dest_files=["res://.godot/imported/f1_excelsious.png-686e5ce47585de405847a012e99e1cc4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png new file mode 100644 index 0000000..42d0bc3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png.import new file mode 100644 index 0000000..f505aa9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd8ujhwmbglm5" +path="res://.godot/imported/f1_fiz.png-1985791b959f8df16977289e3a295dc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_fiz.png" +dest_files=["res://.godot/imported/f1_fiz.png-1985791b959f8df16977289e3a295dc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png new file mode 100644 index 0000000..be22a15 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png.import new file mode 100644 index 0000000..2b6ac17 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cejibbjsu34q" +path="res://.godot/imported/f1_friendsguard.png-4db4863e3ddd5a8aab5ad45279c38e37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_friendsguard.png" +dest_files=["res://.godot/imported/f1_friendsguard.png-4db4863e3ddd5a8aab5ad45279c38e37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png new file mode 100644 index 0000000..eb6230f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png.import new file mode 100644 index 0000000..b799efd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4n25gdxi5jos" +path="res://.godot/imported/f1_general.png-477eb92f5f4ca4993de621e74ceab90e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general.png" +dest_files=["res://.godot/imported/f1_general.png-477eb92f5f4ca4993de621e74ceab90e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png new file mode 100644 index 0000000..7e74be3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png.import new file mode 100644 index 0000000..7500624 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cij2035kn3shy" +path="res://.godot/imported/f1_general_skinroguelegacy.png-21d0fd62cec1f264d43dfcd415e1ab78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_general_skinroguelegacy.png" +dest_files=["res://.godot/imported/f1_general_skinroguelegacy.png-21d0fd62cec1f264d43dfcd415e1ab78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png new file mode 100644 index 0000000..b2859ae Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png.import new file mode 100644 index 0000000..d02dc81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvg7jde3esmro" +path="res://.godot/imported/f1_grandmasterzir.png-71396116275324519735b2fa59894eb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_grandmasterzir.png" +dest_files=["res://.godot/imported/f1_grandmasterzir.png-71396116275324519735b2fa59894eb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png new file mode 100644 index 0000000..12e2284 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png.import new file mode 100644 index 0000000..d50d6c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wmsprxuhhdmj" +path="res://.godot/imported/f1_groundbreaker.png-9acbb141a60bcd65b0c14030d1f73e6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_groundbreaker.png" +dest_files=["res://.godot/imported/f1_groundbreaker.png-9acbb141a60bcd65b0c14030d1f73e6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png new file mode 100644 index 0000000..d827cf3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png.import new file mode 100644 index 0000000..07acb63 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcnpoearclatt" +path="res://.godot/imported/f1_gryphinox.png-814177bf36435407cfda84f0a92bf2a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_gryphinox.png" +dest_files=["res://.godot/imported/f1_gryphinox.png-814177bf36435407cfda84f0a92bf2a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png new file mode 100644 index 0000000..fec854c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png.import new file mode 100644 index 0000000..77588ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cymhiiwpgpk6h" +path="res://.godot/imported/f1_invincibuddy.png-7975f1ed4e0d1260d542cae746aa0149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_invincibuddy.png" +dest_files=["res://.godot/imported/f1_invincibuddy.png-7975f1ed4e0d1260d542cae746aa0149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png new file mode 100644 index 0000000..9adf310 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png.import new file mode 100644 index 0000000..899fa0e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkyrevwv81qyq" +path="res://.godot/imported/f1_ironcliffeguardian.png-b85eb3ed3c215ae32dd50e6f9063fcd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffeguardian.png" +dest_files=["res://.godot/imported/f1_ironcliffeguardian.png-b85eb3ed3c215ae32dd50e6f9063fcd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png new file mode 100644 index 0000000..b1d642b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png.import new file mode 100644 index 0000000..7fb834d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oe3mo3bfnt3" +path="res://.godot/imported/f1_ironcliffemonument.png-3b73b6fab767a2670e9c3fd614019a42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ironcliffemonument.png" +dest_files=["res://.godot/imported/f1_ironcliffemonument.png-3b73b6fab767a2670e9c3fd614019a42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png new file mode 100644 index 0000000..afd6555 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png.import new file mode 100644 index 0000000..1bf0440 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3v6vjeje24uq" +path="res://.godot/imported/f1_kaisergladiator.png-5c188a020ee6299f2e70cc4ddf077ca5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kaisergladiator.png" +dest_files=["res://.godot/imported/f1_kaisergladiator.png-5c188a020ee6299f2e70cc4ddf077ca5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png new file mode 100644 index 0000000..cba5aa8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png.import new file mode 100644 index 0000000..94a0d27 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://icd8nlvclwfc" +path="res://.godot/imported/f1_kingsguard.png-2c1b99033adabc59e2a16f5904e000aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_kingsguard.png" +dest_files=["res://.godot/imported/f1_kingsguard.png-2c1b99033adabc59e2a16f5904e000aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png new file mode 100644 index 0000000..bd0e57f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png.import new file mode 100644 index 0000000..9d73fa8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddysdvvh2r3ia" +path="res://.godot/imported/f1_leovoyant.png-20b714a80b0be8838422d79581aba183.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_leovoyant.png" +dest_files=["res://.godot/imported/f1_leovoyant.png-20b714a80b0be8838422d79581aba183.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png new file mode 100644 index 0000000..c2c05f0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png.import new file mode 100644 index 0000000..636d88f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmfjnte5ytuog" +path="res://.godot/imported/f1_mech.png-51762db28ebbe41854d415d3d57e584f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_mech.png" +dest_files=["res://.godot/imported/f1_mech.png-51762db28ebbe41854d415d3d57e584f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png new file mode 100644 index 0000000..28fc07a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png.import new file mode 100644 index 0000000..d6795d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl6jy4c1y1mwt" +path="res://.godot/imported/f1_melee.png-87ac2c17d005571dfadad7b899355609.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_melee.png" +dest_files=["res://.godot/imported/f1_melee.png-87ac2c17d005571dfadad7b899355609.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png new file mode 100644 index 0000000..4599c58 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png.import new file mode 100644 index 0000000..1439be9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj6a6qru6x24d" +path="res://.godot/imported/f1_peacekeeper.png-7f9ca5b201882037e1b09acadd7028dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper.png" +dest_files=["res://.godot/imported/f1_peacekeeper.png-7f9ca5b201882037e1b09acadd7028dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png new file mode 100644 index 0000000..df21b23 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png.import new file mode 100644 index 0000000..f96ba6e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0gcvta2yedly" +path="res://.godot/imported/f1_peacekeeper2.png-612cecccc08af70c541ca374e9e15ff9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_peacekeeper2.png" +dest_files=["res://.godot/imported/f1_peacekeeper2.png-612cecccc08af70c541ca374e9e15ff9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png new file mode 100644 index 0000000..a612c0f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png.import new file mode 100644 index 0000000..50e72a6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3rnyx3adgtte" +path="res://.godot/imported/f1_radiantdragoon.png-2e5ca2466c6403a4509a1a6a10203a3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_radiantdragoon.png" +dest_files=["res://.godot/imported/f1_radiantdragoon.png-2e5ca2466c6403a4509a1a6a10203a3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png new file mode 100644 index 0000000..553f075 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png.import new file mode 100644 index 0000000..be2c9d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4ah16ldyiqxl" +path="res://.godot/imported/f1_ranged.png-c803e2c8ff3b245e490d961c9cceefaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_ranged.png" +dest_files=["res://.godot/imported/f1_ranged.png-c803e2c8ff3b245e490d961c9cceefaf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png new file mode 100644 index 0000000..cc44c41 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png.import new file mode 100644 index 0000000..b77bc11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chyrpich645qh" +path="res://.godot/imported/f1_rightfulheir.png-931ef3060dae780d8acf1b2260aa6899.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_rightfulheir.png" +dest_files=["res://.godot/imported/f1_rightfulheir.png-931ef3060dae780d8acf1b2260aa6899.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png new file mode 100644 index 0000000..30e92d8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png.import new file mode 100644 index 0000000..27aa961 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0lhfepfki2vk" +path="res://.godot/imported/f1_scintilla.png-9b629eb7cb9a2848728e4a2603fa0a96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_scintilla.png" +dest_files=["res://.godot/imported/f1_scintilla.png-9b629eb7cb9a2848728e4a2603fa0a96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png new file mode 100644 index 0000000..fc098a9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png.import new file mode 100644 index 0000000..1d5194a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi8ydutfl4ohx" +path="res://.godot/imported/f1_shieldforger.png-8d9acd011ff5e411dcbb5fc7e1827288.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_shieldforger.png" +dest_files=["res://.godot/imported/f1_shieldforger.png-8d9acd011ff5e411dcbb5fc7e1827288.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png new file mode 100644 index 0000000..7c3c4c7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png.import new file mode 100644 index 0000000..3f0b7df --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhseo5rfnslk2" +path="res://.godot/imported/f1_silverguardsquire.png-a98294f6b1c20efa40b0b71eb94103b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silverguardsquire.png" +dest_files=["res://.godot/imported/f1_silverguardsquire.png-a98294f6b1c20efa40b0b71eb94103b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png new file mode 100644 index 0000000..0012675 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png.import new file mode 100644 index 0000000..275197b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csqrgvs62dgqj" +path="res://.godot/imported/f1_silvermanevanguard.png-bb09c7bec1a8676fa77dd203a9a01562.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_silvermanevanguard.png" +dest_files=["res://.godot/imported/f1_silvermanevanguard.png-bb09c7bec1a8676fa77dd203a9a01562.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png new file mode 100644 index 0000000..864fcb3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png.import new file mode 100644 index 0000000..13f1eb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vc0jgi6nb7jv" +path="res://.godot/imported/f1_sinergyunit.png-4f978ead9725f015f601b1430e411c75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sinergyunit.png" +dest_files=["res://.godot/imported/f1_sinergyunit.png-4f978ead9725f015f601b1430e411c75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png new file mode 100644 index 0000000..2d525bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png.import new file mode 100644 index 0000000..d74fc47 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvpq2gjwifg21" +path="res://.godot/imported/f1_sister.png-f60d454716545e5d2f68aae2063a6d62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sister.png" +dest_files=["res://.godot/imported/f1_sister.png-f60d454716545e5d2f68aae2063a6d62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png new file mode 100644 index 0000000..722b22b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png.import new file mode 100644 index 0000000..27e7531 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5far4n30mhpc" +path="res://.godot/imported/f1_slo.png-426a91cc9ade87178fcc1dc4204d100d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_slo.png" +dest_files=["res://.godot/imported/f1_slo.png-426a91cc9ade87178fcc1dc4204d100d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png new file mode 100644 index 0000000..1f184cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png.import new file mode 100644 index 0000000..d7badc7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1rd4kvcyl15x" +path="res://.godot/imported/f1_solarius.png-9c4e57966a077aa75efafb97ad60d366.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solarius.png" +dest_files=["res://.godot/imported/f1_solarius.png-9c4e57966a077aa75efafb97ad60d366.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png new file mode 100644 index 0000000..b391bab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png.import new file mode 100644 index 0000000..d8e2888 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0hjesebar0s2" +path="res://.godot/imported/f1_solpontiff.png-cfc4b93adfcd1165f33c29634aaa23cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_solpontiff.png" +dest_files=["res://.godot/imported/f1_solpontiff.png-cfc4b93adfcd1165f33c29634aaa23cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png new file mode 100644 index 0000000..cba0e40 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png.import new file mode 100644 index 0000000..6daf0bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1see6wk0wtov" +path="res://.godot/imported/f1_special.png-08499e5a5402c0e26465e467d85d3567.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_special.png" +dest_files=["res://.godot/imported/f1_special.png-08499e5a5402c0e26465e467d85d3567.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png new file mode 100644 index 0000000..5e49752 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png.import new file mode 100644 index 0000000..927be8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfntrba5e7400" +path="res://.godot/imported/f1_spellbladeadept.png-4ff10d504a9488de8472b96520ac390b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_spellbladeadept.png" +dest_files=["res://.godot/imported/f1_spellbladeadept.png-4ff10d504a9488de8472b96520ac390b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png new file mode 100644 index 0000000..42a2b25 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png.import new file mode 100644 index 0000000..9139233 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqpdxxjw6t7pp" +path="res://.godot/imported/f1_sunbreaker.png-e84082cd24a94fe87e28ab8aa91914bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreaker.png" +dest_files=["res://.godot/imported/f1_sunbreaker.png-e84082cd24a94fe87e28ab8aa91914bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png new file mode 100644 index 0000000..49247ba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png.import new file mode 100644 index 0000000..4deaf9f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c50xsf043au5t" +path="res://.godot/imported/f1_sunbreakguardian.png-84bfd7a153817eb6651399f2ec2df3e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunbreakguardian.png" +dest_files=["res://.godot/imported/f1_sunbreakguardian.png-84bfd7a153817eb6651399f2ec2df3e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png new file mode 100644 index 0000000..f1e645f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png.import new file mode 100644 index 0000000..cfbdcb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqde8qv4nt7f0" +path="res://.godot/imported/f1_sunforgelancer.png-a9aea8984f0b6171401ae28b2b88c475.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunforgelancer.png" +dest_files=["res://.godot/imported/f1_sunforgelancer.png-a9aea8984f0b6171401ae28b2b88c475.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png new file mode 100644 index 0000000..173c2d4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png.import new file mode 100644 index 0000000..0e0f054 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1d5hcdtafes" +path="res://.godot/imported/f1_sunriser.png-8fbba8801cde70e8d59d7f48725fc412.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunriser.png" +dest_files=["res://.godot/imported/f1_sunriser.png-8fbba8801cde70e8d59d7f48725fc412.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png new file mode 100644 index 0000000..b0a8939 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png.import new file mode 100644 index 0000000..a7c9bb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q3lo5e7j6yow" +path="res://.godot/imported/f1_sunstonemaiden.png-9661e532db1b8eba8007ff687e6a8831.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonemaiden.png" +dest_files=["res://.godot/imported/f1_sunstonemaiden.png-9661e532db1b8eba8007ff687e6a8831.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png new file mode 100644 index 0000000..4ca546d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png.import new file mode 100644 index 0000000..138cd91 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0fx3jqsk7kn0" +path="res://.godot/imported/f1_sunstonetemplar.png-e766ff72706f3a07b7b7352d919c48a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunstonetemplar.png" +dest_files=["res://.godot/imported/f1_sunstonetemplar.png-e766ff72706f3a07b7b7352d919c48a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png new file mode 100644 index 0000000..80da0dc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png.import new file mode 100644 index 0000000..03e27dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch5mi3mrl6whs" +path="res://.godot/imported/f1_sunwisp.png-f375393cb9cf0cd6ab9c3a65d5ee1cee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_sunwisp.png" +dest_files=["res://.godot/imported/f1_sunwisp.png-f375393cb9cf0cd6ab9c3a65d5ee1cee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png new file mode 100644 index 0000000..1c5e831 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png.import new file mode 100644 index 0000000..a8b570f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3omwodc2qo6y" +path="res://.godot/imported/f1_support.png-7580087d71233b1033d125813908cf1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_support.png" +dest_files=["res://.godot/imported/f1_support.png-7580087d71233b1033d125813908cf1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png new file mode 100644 index 0000000..16fcebe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png.import new file mode 100644 index 0000000..5ebf902 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://owpy0rui30ca" +path="res://.godot/imported/f1_tank.png-65e0032a8066f3d71ee145922b716d60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tank.png" +dest_files=["res://.godot/imported/f1_tank.png-65e0032a8066f3d71ee145922b716d60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png new file mode 100644 index 0000000..c0eb398 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png.import new file mode 100644 index 0000000..50547e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buc2hwf3jkpej" +path="res://.godot/imported/f1_tier2general.png-9fe5f77e7e752c593dccc804f6be9dde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_tier2general.png" +dest_files=["res://.godot/imported/f1_tier2general.png-9fe5f77e7e752c593dccc804f6be9dde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png new file mode 100644 index 0000000..8df4930 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png.import new file mode 100644 index 0000000..df00a0c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wqrmdbmmem86" +path="res://.godot/imported/f1_warblade.png-4eebc458f3e7befa6be3058a1989de41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_warblade.png" +dest_files=["res://.godot/imported/f1_warblade.png-4eebc458f3e7befa6be3058a1989de41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png new file mode 100644 index 0000000..c407870 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png.import new file mode 100644 index 0000000..fcfeef8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fvasicjxb35a" +path="res://.godot/imported/f1_windbladecommander.png-53808c71e922d6c045f4adfb9f754700.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_windbladecommander.png" +dest_files=["res://.godot/imported/f1_windbladecommander.png-53808c71e922d6c045f4adfb9f754700.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png new file mode 100644 index 0000000..a291ed4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png.import new file mode 100644 index 0000000..104143c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck57of357jwpc" +path="res://.godot/imported/f1_xylestormblade.png-f32d7a7bdf1212021ad3cc03e0e3f8a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f1_xylestormblade.png" +dest_files=["res://.godot/imported/f1_xylestormblade.png-f32d7a7bdf1212021ad3cc03e0e3f8a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png new file mode 100644 index 0000000..4cc122a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png.import new file mode 100644 index 0000000..2e583bd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba4ldndk5acvm" +path="res://.godot/imported/f2_3rdgeneral.png-543e955491c0fd1f8126262fdaf733dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_3rdgeneral.png" +dest_files=["res://.godot/imported/f2_3rdgeneral.png-543e955491c0fd1f8126262fdaf733dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png new file mode 100644 index 0000000..06fac06 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png.import new file mode 100644 index 0000000..513ca5b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5bxi56il7hlw" +path="res://.godot/imported/f2_ace.png-2d3c4004a432ef4a99e7d2f026d043de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ace.png" +dest_files=["res://.godot/imported/f2_ace.png-2d3c4004a432ef4a99e7d2f026d043de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png new file mode 100644 index 0000000..c0ab597 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png.import new file mode 100644 index 0000000..5ebefaf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dubsg0qu2ltw5" +path="res://.godot/imported/f2_altgeneral.png-25137faba3be3a6b17411b0e7f3dc7e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneral.png" +dest_files=["res://.godot/imported/f2_altgeneral.png-25137faba3be3a6b17411b0e7f3dc7e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png new file mode 100644 index 0000000..806582a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png.import new file mode 100644 index 0000000..df3fc4e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0bxdvnnx4d6v" +path="res://.godot/imported/f2_altgeneraltier2.png-0d1469f3cabb9b3103653b6a6b504afe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_altgeneraltier2.png" +dest_files=["res://.godot/imported/f2_altgeneraltier2.png-0d1469f3cabb9b3103653b6a6b504afe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png new file mode 100644 index 0000000..a40b751 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png.import new file mode 100644 index 0000000..87727ae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhq7v8rh3ht8k" +path="res://.godot/imported/f2_buildcommon.png-42b82d7c8e43bd21c5ce33b3386559e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildcommon.png" +dest_files=["res://.godot/imported/f2_buildcommon.png-42b82d7c8e43bd21c5ce33b3386559e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png new file mode 100644 index 0000000..e691a64 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png.import new file mode 100644 index 0000000..c8a5375 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clolecdilbtd0" +path="res://.godot/imported/f2_buildlegendary.png-e23d4422cda49da6056213a1a83739ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildlegendary.png" +dest_files=["res://.godot/imported/f2_buildlegendary.png-e23d4422cda49da6056213a1a83739ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png new file mode 100644 index 0000000..8f48214 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png.import new file mode 100644 index 0000000..360bf19 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://budej2wo6e06l" +path="res://.godot/imported/f2_buildminion.png-8735fcfb912dff8b6b77dd1eff8e0c5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_buildminion.png" +dest_files=["res://.godot/imported/f2_buildminion.png-8735fcfb912dff8b6b77dd1eff8e0c5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png new file mode 100644 index 0000000..1e161e1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png.import new file mode 100644 index 0000000..6705118 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diw6egjw6p310" +path="res://.godot/imported/f2_caligrapher.png-69d7bf07f71997386cf6181acfd38ea4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caligrapher.png" +dest_files=["res://.godot/imported/f2_caligrapher.png-69d7bf07f71997386cf6181acfd38ea4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png new file mode 100644 index 0000000..3217003 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png.import new file mode 100644 index 0000000..851969b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ejwxm8lrer" +path="res://.godot/imported/f2_caster.png-5c3f9b3f805ccff3a8e6c91bf52f64e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_caster.png" +dest_files=["res://.godot/imported/f2_caster.png-5c3f9b3f805ccff3a8e6c91bf52f64e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png new file mode 100644 index 0000000..af3178c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png.import new file mode 100644 index 0000000..075914d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ubngxnn5ovqh" +path="res://.godot/imported/f2_chakriavatar.png-295246731ebeed5fd9e23eb6382730fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_chakriavatar.png" +dest_files=["res://.godot/imported/f2_chakriavatar.png-295246731ebeed5fd9e23eb6382730fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png new file mode 100644 index 0000000..e323389 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png.import new file mode 100644 index 0000000..940a110 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8vngatfdvja3" +path="res://.godot/imported/f2_deathphantom.png-e35f2cc50111ae90845a4cbc87a62450.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_deathphantom.png" +dest_files=["res://.godot/imported/f2_deathphantom.png-e35f2cc50111ae90845a4cbc87a62450.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png new file mode 100644 index 0000000..bafa31a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png.import new file mode 100644 index 0000000..81adf7c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gmvtj8sggjmn" +path="res://.godot/imported/f2_demononi.png-4f7bd8570bed4987efce4eed56a127e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_demononi.png" +dest_files=["res://.godot/imported/f2_demononi.png-4f7bd8570bed4987efce4eed56a127e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png new file mode 100644 index 0000000..cf80418 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png.import new file mode 100644 index 0000000..643de51 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc8snihh4stfy" +path="res://.godot/imported/f2_eclipseasura.png-8b5af34cfa3ca6283861639af3c4eb5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eclipseasura.png" +dest_files=["res://.godot/imported/f2_eclipseasura.png-8b5af34cfa3ca6283861639af3c4eb5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png new file mode 100644 index 0000000..5969d53 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png.import new file mode 100644 index 0000000..64bc14f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcrvb8vy2p8pi" +path="res://.godot/imported/f2_eternitypainter.png-238d5207bc37fa5ebb117f8b3517b0e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_eternitypainter.png" +dest_files=["res://.godot/imported/f2_eternitypainter.png-238d5207bc37fa5ebb117f8b3517b0e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png new file mode 100644 index 0000000..896df2c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png.import new file mode 100644 index 0000000..b0ab86c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jqcyat648efd" +path="res://.godot/imported/f2_firewyrm.png-d70333be58cced052f8f8b4ee5fd4f66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_firewyrm.png" +dest_files=["res://.godot/imported/f2_firewyrm.png-d70333be58cced052f8f8b4ee5fd4f66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png new file mode 100644 index 0000000..b2b894a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png.import new file mode 100644 index 0000000..e102aa3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5p64wlpxkw76" +path="res://.godot/imported/f2_flareslinger.png-85e13d6667ff5aa660e19214227195cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_flareslinger.png" +dest_files=["res://.godot/imported/f2_flareslinger.png-85e13d6667ff5aa660e19214227195cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png new file mode 100644 index 0000000..f3ab7a0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png.import new file mode 100644 index 0000000..8b7d61b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm214yi6ufcct" +path="res://.godot/imported/f2_general.png-de38f280408da564475a1f3d56d3638f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general.png" +dest_files=["res://.godot/imported/f2_general.png-de38f280408da564475a1f3d56d3638f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png new file mode 100644 index 0000000..73b4dd3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png.import new file mode 100644 index 0000000..29510d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnvkysrhypnrg" +path="res://.godot/imported/f2_general_skindogehai.png-635a0c4c608f9ff46bef5a6fb0cf819e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_general_skindogehai.png" +dest_files=["res://.godot/imported/f2_general_skindogehai.png-635a0c4c608f9ff46bef5a6fb0cf819e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png new file mode 100644 index 0000000..0572724 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png.import new file mode 100644 index 0000000..bdc21c1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o8hlgjcxskv6" +path="res://.godot/imported/f2_geomancer.png-fe930823b2f05f6ce7b3f3fba7e6e419.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_geomancer.png" +dest_files=["res://.godot/imported/f2_geomancer.png-fe930823b2f05f6ce7b3f3fba7e6e419.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png new file mode 100644 index 0000000..1745c40 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png.import new file mode 100644 index 0000000..010946b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm55uu2ypy2x8" +path="res://.godot/imported/f2_godpalmblacktiger.png-352557f83083f34f1c2d2bd3cc2e5752.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_godpalmblacktiger.png" +dest_files=["res://.godot/imported/f2_godpalmblacktiger.png-352557f83083f34f1c2d2bd3cc2e5752.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png new file mode 100644 index 0000000..863500f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png.import new file mode 100644 index 0000000..0f37e0f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwnhc17l4nr5l" +path="res://.godot/imported/f2_grandmasterzendo.png-de4d17829a7dcd3da6dbe2f9bac0924b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_grandmasterzendo.png" +dest_files=["res://.godot/imported/f2_grandmasterzendo.png-de4d17829a7dcd3da6dbe2f9bac0924b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png new file mode 100644 index 0000000..0bd8677 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png.import new file mode 100644 index 0000000..62844c6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbwuu62tek85u" +path="res://.godot/imported/f2_hammonnladeseeker.png-a9008454c13992e4ddfe9855794fd52a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_hammonnladeseeker.png" +dest_files=["res://.godot/imported/f2_hammonnladeseeker.png-a9008454c13992e4ddfe9855794fd52a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png new file mode 100644 index 0000000..78f965b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png.import new file mode 100644 index 0000000..3e42459 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct1wn3ghtltiq" +path="res://.godot/imported/f2_heartofthesonghai.png-fb609843b980888833568a58a91c5e6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_heartofthesonghai.png" +dest_files=["res://.godot/imported/f2_heartofthesonghai.png-fb609843b980888833568a58a91c5e6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png new file mode 100644 index 0000000..a3feed0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png.import new file mode 100644 index 0000000..6165e1f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5k2xk3ytelig" +path="res://.godot/imported/f2_katara.png-e3797e344a9dc6cb11fb736906462ace.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_katara.png" +dest_files=["res://.godot/imported/f2_katara.png-e3797e344a9dc6cb11fb736906462ace.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png new file mode 100644 index 0000000..94eb5b3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png.import new file mode 100644 index 0000000..8dce549 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4rfidunfwq7o" +path="res://.godot/imported/f2_keshraifanblade.png-2e251a2785d7b94c0fc0ca3a0679ee54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_keshraifanblade.png" +dest_files=["res://.godot/imported/f2_keshraifanblade.png-2e251a2785d7b94c0fc0ca3a0679ee54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png new file mode 100644 index 0000000..4f93d16 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png.import new file mode 100644 index 0000000..7ff45ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjo5qlghj2ms" +path="res://.godot/imported/f2_kibeholder.png-1dbe4d4a4fe460497e193b700dcd8c09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kibeholder.png" +dest_files=["res://.godot/imported/f2_kibeholder.png-1dbe4d4a4fe460497e193b700dcd8c09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png new file mode 100644 index 0000000..ba46c47 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png.import new file mode 100644 index 0000000..bc1c5a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdbsfe60e7rpp" +path="res://.godot/imported/f2_kindling.png-7c5812751bc7992e7ff22c054f80607f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_kindling.png" +dest_files=["res://.godot/imported/f2_kindling.png-7c5812751bc7992e7ff22c054f80607f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png new file mode 100644 index 0000000..ee11de6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png.import new file mode 100644 index 0000000..476dcc5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br2v05q4e0t7n" +path="res://.godot/imported/f2_lanternfox.png-67bd0bd4ef3fe1d61280ef7920524913.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_lanternfox.png" +dest_files=["res://.godot/imported/f2_lanternfox.png-67bd0bd4ef3fe1d61280ef7920524913.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png new file mode 100644 index 0000000..328f3e0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png.import new file mode 100644 index 0000000..b7ace31 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6u1dt1f4l2tf" +path="res://.godot/imported/f2_mage4winds.png-f2aa7f4144c9f9d41d452602b3d7581c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mage4winds.png" +dest_files=["res://.godot/imported/f2_mage4winds.png-f2aa7f4144c9f9d41d452602b3d7581c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png new file mode 100644 index 0000000..a590303 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png.import new file mode 100644 index 0000000..2c5d946 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vajx1tnth4i1" +path="res://.godot/imported/f2_masteroftaikwai.png-b3b71647c37bc48bf252b9301e981aaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_masteroftaikwai.png" +dest_files=["res://.godot/imported/f2_masteroftaikwai.png-b3b71647c37bc48bf252b9301e981aaf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png new file mode 100644 index 0000000..16c1db2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png.import new file mode 100644 index 0000000..c86b6eb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by56t8ddeddio" +path="res://.godot/imported/f2_mech.png-47c5405a021a8a7f89febe6dd69c8c8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_mech.png" +dest_files=["res://.godot/imported/f2_mech.png-47c5405a021a8a7f89febe6dd69c8c8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png new file mode 100644 index 0000000..884f6f5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png.import new file mode 100644 index 0000000..0d6f4e8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b28ijmcktp6rn" +path="res://.godot/imported/f2_melee.png-77974188e552781bd9d97cb26e9b753e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_melee.png" +dest_files=["res://.godot/imported/f2_melee.png-77974188e552781bd9d97cb26e9b753e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png new file mode 100644 index 0000000..d7d4e60 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png.import new file mode 100644 index 0000000..dac61f8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5df2p6wur3ss" +path="res://.godot/imported/f2_ogremonk02.png-32d26294b26211d2727e0b85bac0c68d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ogremonk02.png" +dest_files=["res://.godot/imported/f2_ogremonk02.png-32d26294b26211d2727e0b85bac0c68d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png new file mode 100644 index 0000000..a2ed96c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png.import new file mode 100644 index 0000000..73334af --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7n41wwncht6k" +path="res://.godot/imported/f2_onnabugeisha.png-deb91b807b7c8c1a2aaceff4a0104ced.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onnabugeisha.png" +dest_files=["res://.godot/imported/f2_onnabugeisha.png-deb91b807b7c8c1a2aaceff4a0104ced.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png new file mode 100644 index 0000000..c260e7e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png.import new file mode 100644 index 0000000..56f9b6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq3m0bx7wmxvk" +path="res://.godot/imported/f2_onyxjaguar.png-c7f95e3fb8bb380e623bce22187a4d15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_onyxjaguar.png" +dest_files=["res://.godot/imported/f2_onyxjaguar.png-c7f95e3fb8bb380e623bce22187a4d15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png new file mode 100644 index 0000000..754d02b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png.import new file mode 100644 index 0000000..696d2d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dljm6behpxvai" +path="res://.godot/imported/f2_orizuru.png-c9d3860acc002f4e9b5f51f01fc367fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_orizuru.png" +dest_files=["res://.godot/imported/f2_orizuru.png-c9d3860acc002f4e9b5f51f01fc367fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png new file mode 100644 index 0000000..d8d02a5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png.import new file mode 100644 index 0000000..d0910c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr4e5gjcrklle" +path="res://.godot/imported/f2_pandabear.png-ff1a01bf7f97ab2716d1ed87657a3e2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear.png" +dest_files=["res://.godot/imported/f2_pandabear.png-ff1a01bf7f97ab2716d1ed87657a3e2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png new file mode 100644 index 0000000..8846449 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png.import new file mode 100644 index 0000000..96afd96 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d22broce2eas" +path="res://.godot/imported/f2_pandabear02.png-6089e858d006df42bc17abf87c8cf104.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_pandabear02.png" +dest_files=["res://.godot/imported/f2_pandabear02.png-6089e858d006df42bc17abf87c8cf104.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png new file mode 100644 index 0000000..4718554 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png.import new file mode 100644 index 0000000..2ff00a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg3t2xc1e3jjh" +path="res://.godot/imported/f2_panddo.png-109d95cdac7da6767a0496e8fb8f0de9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_panddo.png" +dest_files=["res://.godot/imported/f2_panddo.png-109d95cdac7da6767a0496e8fb8f0de9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png new file mode 100644 index 0000000..8355a93 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png.import new file mode 100644 index 0000000..fdbc2d2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0yofk6rul25v" +path="res://.godot/imported/f2_paperdropper.png-9651fc5ca30e95a46409df818e123106.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_paperdropper.png" +dest_files=["res://.godot/imported/f2_paperdropper.png-9651fc5ca30e95a46409df818e123106.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png new file mode 100644 index 0000000..80a782d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png.import new file mode 100644 index 0000000..a0645bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0tw07jjv1ns8" +path="res://.godot/imported/f2_ranged.png-acf6422e5c50a3b13a0489215ce9466b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_ranged.png" +dest_files=["res://.godot/imported/f2_ranged.png-acf6422e5c50a3b13a0489215ce9466b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png new file mode 100644 index 0000000..ec09249 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png.import new file mode 100644 index 0000000..294ea2d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpappoq80jsgv" +path="res://.godot/imported/f2_seenoevil.png-341d5aa15c9eae6a9f50cec3c556d718.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_seenoevil.png" +dest_files=["res://.godot/imported/f2_seenoevil.png-341d5aa15c9eae6a9f50cec3c556d718.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png new file mode 100644 index 0000000..cc63ee6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png.import new file mode 100644 index 0000000..4ec9ba1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqwxi4ku8lkca" +path="res://.godot/imported/f2_sekitori.png-a97a069cdced7a40fc071be90537e11e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sekitori.png" +dest_files=["res://.godot/imported/f2_sekitori.png-a97a069cdced7a40fc071be90537e11e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png new file mode 100644 index 0000000..0e90bdf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png.import new file mode 100644 index 0000000..792fdb5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2wfh7insaj5t" +path="res://.godot/imported/f2_sepukku.png-c9c1bc9c4eb34665209b832a3d0c671c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sepukku.png" +dest_files=["res://.godot/imported/f2_sepukku.png-c9c1bc9c4eb34665209b832a3d0c671c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png new file mode 100644 index 0000000..5b27d1b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png.import new file mode 100644 index 0000000..a5be3db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du8dyt5nitaa1" +path="res://.godot/imported/f2_shidaimk2.png-8f6cafb6e3443a748dcaa6b9017e85d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_shidaimk2.png" +dest_files=["res://.godot/imported/f2_shidaimk2.png-8f6cafb6e3443a748dcaa6b9017e85d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png new file mode 100644 index 0000000..311403d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png.import new file mode 100644 index 0000000..160de53 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnx2yv4qfoq31" +path="res://.godot/imported/f2_sister.png-1043975f3cc6465d47672a663a57fd63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sister.png" +dest_files=["res://.godot/imported/f2_sister.png-1043975f3cc6465d47672a663a57fd63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png new file mode 100644 index 0000000..aaead13 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png.import new file mode 100644 index 0000000..e299601 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ht4mpuf4rna" +path="res://.godot/imported/f2_songhaisentinel.png-2f946fc7ae47a234b1bf96c5643df7df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_songhaisentinel.png" +dest_files=["res://.godot/imported/f2_songhaisentinel.png-2f946fc7ae47a234b1bf96c5643df7df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png new file mode 100644 index 0000000..1abea6b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png.import new file mode 100644 index 0000000..a8c7f24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp17u1gonwrck" +path="res://.godot/imported/f2_sparrowhawk.png-a1de9adb7446f35a4332a00270db255f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_sparrowhawk.png" +dest_files=["res://.godot/imported/f2_sparrowhawk.png-a1de9adb7446f35a4332a00270db255f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png new file mode 100644 index 0000000..cd1155f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png.import new file mode 100644 index 0000000..f4e9b8d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://63niafs8wpkk" +path="res://.godot/imported/f2_special.png-1fe48bef8c380fc8adac30e5b8bd67a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_special.png" +dest_files=["res://.godot/imported/f2_special.png-1fe48bef8c380fc8adac30e5b8bd67a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png new file mode 100644 index 0000000..d1cceb8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png.import new file mode 100644 index 0000000..a086110 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8fwt865py6e6" +path="res://.godot/imported/f2_spellthief.png-ceba8b46d0feeecf0d8e902debbedcf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_spellthief.png" +dest_files=["res://.godot/imported/f2_spellthief.png-ceba8b46d0feeecf0d8e902debbedcf4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png new file mode 100644 index 0000000..58a9fc9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png.import new file mode 100644 index 0000000..52ab907 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ywsidsypqt0u" +path="res://.godot/imported/f2_stormkage.png-1a3c8358126a1b61bd7ba1139da0ffa8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_stormkage.png" +dest_files=["res://.godot/imported/f2_stormkage.png-1a3c8358126a1b61bd7ba1139da0ffa8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png new file mode 100644 index 0000000..7e7b9ae Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png.import new file mode 100644 index 0000000..88a3e55 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsqep0d2cu6uk" +path="res://.godot/imported/f2_supekuta.png-7f160a2300de145428d8a0128a3cb95d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_supekuta.png" +dest_files=["res://.godot/imported/f2_supekuta.png-7f160a2300de145428d8a0128a3cb95d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png new file mode 100644 index 0000000..df965d5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png.import new file mode 100644 index 0000000..b065fa7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch24h26cqfvi4" +path="res://.godot/imported/f2_support.png-e303100908877bdc132d49fd0756485d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_support.png" +dest_files=["res://.godot/imported/f2_support.png-e303100908877bdc132d49fd0756485d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png new file mode 100644 index 0000000..76daef2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png.import new file mode 100644 index 0000000..1b9d0e6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgf6e00ysygij" +path="res://.godot/imported/f2_synergyunit.png-e236807d63ef6694988f9517adf42462.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_synergyunit.png" +dest_files=["res://.godot/imported/f2_synergyunit.png-e236807d63ef6694988f9517adf42462.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png new file mode 100644 index 0000000..0aaff8c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png.import new file mode 100644 index 0000000..74304e9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1y4i626uqxj" +path="res://.godot/imported/f2_tank.png-4e2583f3f309815e98323a946d4fa16b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tank.png" +dest_files=["res://.godot/imported/f2_tank.png-4e2583f3f309815e98323a946d4fa16b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png new file mode 100644 index 0000000..2e8648f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png.import new file mode 100644 index 0000000..5e77a53 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccmymt067q4pe" +path="res://.godot/imported/f2_tier2general.png-757e1eb2eaf1f35eb3f804e90a6520f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_tier2general.png" +dest_files=["res://.godot/imported/f2_tier2general.png-757e1eb2eaf1f35eb3f804e90a6520f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png new file mode 100644 index 0000000..ef0b592 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png.import new file mode 100644 index 0000000..37980ec --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx1bmrgd6jue4" +path="res://.godot/imported/f2_twilightfox.png-aab04ab88b24685ab188bb546daf247d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_twilightfox.png" +dest_files=["res://.godot/imported/f2_twilightfox.png-aab04ab88b24685ab188bb546daf247d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png new file mode 100644 index 0000000..60fe9fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png.import new file mode 100644 index 0000000..9a6f6fd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf55cj5nmxwl6" +path="res://.godot/imported/f2_xho.png-39d3498cf14e4177418807be9210f9e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f2_xho.png" +dest_files=["res://.godot/imported/f2_xho.png-39d3498cf14e4177418807be9210f9e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png new file mode 100644 index 0000000..63cb23b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png.import new file mode 100644 index 0000000..b140242 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cavj5wikm44ou" +path="res://.godot/imported/f3_3rdgeneral.png-3fb4d8490ba29a3439cea68fb89125a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_3rdgeneral.png" +dest_files=["res://.godot/imported/f3_3rdgeneral.png-3fb4d8490ba29a3439cea68fb89125a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png new file mode 100644 index 0000000..995a432 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png.import new file mode 100644 index 0000000..3e6b73b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1x6t64t7m4ph" +path="res://.godot/imported/f3_allomancer.png-6ed99a2be5c10c62b17499fa9e20dc67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_allomancer.png" +dest_files=["res://.godot/imported/f3_allomancer.png-6ed99a2be5c10c62b17499fa9e20dc67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png new file mode 100644 index 0000000..623484e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png.import new file mode 100644 index 0000000..8e13651 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buu2j5f1yu6h0" +path="res://.godot/imported/f3_altgeneral.png-f1aa0f912553f6be1647a49a361433d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneral.png" +dest_files=["res://.godot/imported/f3_altgeneral.png-f1aa0f912553f6be1647a49a361433d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png new file mode 100644 index 0000000..0b5b01d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png.import new file mode 100644 index 0000000..f7cefcc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc7cpsvj33oc1" +path="res://.godot/imported/f3_altgeneraltier2.png-baa31e0353eedb13d2b43b353af2abc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_altgeneraltier2.png" +dest_files=["res://.godot/imported/f3_altgeneraltier2.png-baa31e0353eedb13d2b43b353af2abc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png new file mode 100644 index 0000000..8afa8ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png.import new file mode 100644 index 0000000..91b711f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blgith4mbj77f" +path="res://.godot/imported/f3_anubis.png-1cec12c0d97ed3160a0f1bc2774aee31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_anubis.png" +dest_files=["res://.godot/imported/f3_anubis.png-1cec12c0d97ed3160a0f1bc2774aee31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png new file mode 100644 index 0000000..96db58d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png.import new file mode 100644 index 0000000..02cbb97 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rkh4afti4s52" +path="res://.godot/imported/f3_aymarahealer.png-93df312f6058d20b00d2ef586e651e7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_aymarahealer.png" +dest_files=["res://.godot/imported/f3_aymarahealer.png-93df312f6058d20b00d2ef586e651e7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png new file mode 100644 index 0000000..fe911d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png.import new file mode 100644 index 0000000..a9812e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o8ehsay1t56x" +path="res://.godot/imported/f3_badlandsscout.png-2ea35167f88dcdfea017aa62e9b5ab68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_badlandsscout.png" +dest_files=["res://.godot/imported/f3_badlandsscout.png-2ea35167f88dcdfea017aa62e9b5ab68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png new file mode 100644 index 0000000..a7b2892 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png.import new file mode 100644 index 0000000..cfa3883 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyep6co1hvu4c" +path="res://.godot/imported/f3_bobble.png-bfa38ef21ee67e3452e2472a5f729f19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_bobble.png" +dest_files=["res://.godot/imported/f3_bobble.png-bfa38ef21ee67e3452e2472a5f729f19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png new file mode 100644 index 0000000..3a8260d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png.import new file mode 100644 index 0000000..2fe939c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdh0q8ae3b2ni" +path="res://.godot/imported/f3_buildcommon.png-39f1462b7d014a08b0874eef173d69a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildcommon.png" +dest_files=["res://.godot/imported/f3_buildcommon.png-39f1462b7d014a08b0874eef173d69a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png new file mode 100644 index 0000000..5ee5d47 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png.import new file mode 100644 index 0000000..da56114 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs6plnjqbrob6" +path="res://.godot/imported/f3_buildminion.png-8eb348c07bc8125b0786ac34d17b08bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_buildminion.png" +dest_files=["res://.godot/imported/f3_buildminion.png-8eb348c07bc8125b0786ac34d17b08bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png new file mode 100644 index 0000000..bf092d8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png.import new file mode 100644 index 0000000..3a5a3c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu2q8sosk0ut5" +path="res://.godot/imported/f3_ciphyronmk2.png-167ebe688bd5b1e22673316c76c07db7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ciphyronmk2.png" +dest_files=["res://.godot/imported/f3_ciphyronmk2.png-167ebe688bd5b1e22673316c76c07db7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png new file mode 100644 index 0000000..ccbd0a0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png.import new file mode 100644 index 0000000..7bc99f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yk7mp12d5iop" +path="res://.godot/imported/f3_curseddervish.png-0165d4b5233f143c4d5ce6281a8bf39e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_curseddervish.png" +dest_files=["res://.godot/imported/f3_curseddervish.png-0165d4b5233f143c4d5ce6281a8bf39e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png new file mode 100644 index 0000000..e139adf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png.import new file mode 100644 index 0000000..a26e47f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://55rsk3i8gc7j" +path="res://.godot/imported/f3_deathobelysk.png-3e906761d22783e4bfcc078aaceca762.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_deathobelysk.png" +dest_files=["res://.godot/imported/f3_deathobelysk.png-3e906761d22783e4bfcc078aaceca762.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png new file mode 100644 index 0000000..c77568a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png.import new file mode 100644 index 0000000..0bd94e6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7c84wh7f64ii" +path="res://.godot/imported/f3_dervish.png-5be61699de8f377318ac61a094f4882c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dervish.png" +dest_files=["res://.godot/imported/f3_dervish.png-5be61699de8f377318ac61a094f4882c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png new file mode 100644 index 0000000..a5405e4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png.import new file mode 100644 index 0000000..aa5c0c4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwvb28imrso55" +path="res://.godot/imported/f3_desertspirit.png-c39eacd4aac28db7db7ae27bc9acf714.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_desertspirit.png" +dest_files=["res://.godot/imported/f3_desertspirit.png-c39eacd4aac28db7db7ae27bc9acf714.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png new file mode 100644 index 0000000..8bc9d90 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png.import new file mode 100644 index 0000000..bf7c440 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3sg0yflll6ld" +path="res://.godot/imported/f3_dreamshaper.png-ffede272460dc0538bfe62aa4da4c4c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dreamshaper.png" +dest_files=["res://.godot/imported/f3_dreamshaper.png-ffede272460dc0538bfe62aa4da4c4c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png new file mode 100644 index 0000000..b287696 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png.import new file mode 100644 index 0000000..2d2bf7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwjoifow166xf" +path="res://.godot/imported/f3_dunecaster.png-85e8cd5b679bd3acf82a1d934c793832.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_dunecaster.png" +dest_files=["res://.godot/imported/f3_dunecaster.png-85e8cd5b679bd3acf82a1d934c793832.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png new file mode 100644 index 0000000..f060af9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png.import new file mode 100644 index 0000000..312a362 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmooj8q6aytqc" +path="res://.godot/imported/f3_duskweaver.png-69deb1661e36209e4d0a044dcaaed468.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_duskweaver.png" +dest_files=["res://.godot/imported/f3_duskweaver.png-69deb1661e36209e4d0a044dcaaed468.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png new file mode 100644 index 0000000..5f92a0d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png.import new file mode 100644 index 0000000..da29002 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bukikhyaptwo3" +path="res://.godot/imported/f3_endlessobelysk.png-28d6d3ef264e44a1114eebc19b3681d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_endlessobelysk.png" +dest_files=["res://.godot/imported/f3_endlessobelysk.png-28d6d3ef264e44a1114eebc19b3681d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png new file mode 100644 index 0000000..d8db81e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png.import new file mode 100644 index 0000000..3639459 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr7bnpt05yv1h" +path="res://.godot/imported/f3_eurus.png-e4ce702556700694029217a91fc38a05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_eurus.png" +dest_files=["res://.godot/imported/f3_eurus.png-e4ce702556700694029217a91fc38a05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png new file mode 100644 index 0000000..fdd4abf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png.import new file mode 100644 index 0000000..5489ef0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jx1sx7egyxqy" +path="res://.godot/imported/f3_falcius.png-be413b42547aec2ad6207b0e89fd8c73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_falcius.png" +dest_files=["res://.godot/imported/f3_falcius.png-be413b42547aec2ad6207b0e89fd8c73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png new file mode 100644 index 0000000..b2fc2ef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png.import new file mode 100644 index 0000000..43e6fcb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgiafq6krvr4j" +path="res://.godot/imported/f3_general.png-2743116513dd24fadbfd84d6a4f06fe7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_general.png" +dest_files=["res://.godot/imported/f3_general.png-2743116513dd24fadbfd84d6a4f06fe7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png new file mode 100644 index 0000000..b4fcf29 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png.import new file mode 100644 index 0000000..7596fe3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3v4te3kq3qld" +path="res://.godot/imported/f3_glassmirage.png-39d59d2df08bc1861f7729352059781a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_glassmirage.png" +dest_files=["res://.godot/imported/f3_glassmirage.png-39d59d2df08bc1861f7729352059781a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png new file mode 100644 index 0000000..d28c9fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png.import new file mode 100644 index 0000000..1bd59ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw21q2oi66lec" +path="res://.godot/imported/f3_grandmasternoshrak.png-a73d79762c478e3e119f83b920d62fb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_grandmasternoshrak.png" +dest_files=["res://.godot/imported/f3_grandmasternoshrak.png-a73d79762c478e3e119f83b920d62fb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png new file mode 100644 index 0000000..99feed0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png.import new file mode 100644 index 0000000..3710e4e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cptqx4peigodq" +path="res://.godot/imported/f3_incinera.png-0cdf16f630c7c1b1dad406ca4fe9b42d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_incinera.png" +dest_files=["res://.godot/imported/f3_incinera.png-0cdf16f630c7c1b1dad406ca4fe9b42d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png new file mode 100644 index 0000000..aafe1aa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png.import new file mode 100644 index 0000000..0a26930 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcqhu107w6cf" +path="res://.godot/imported/f3_insightcaster.png-7bdd2774024efd745565788a4c430a75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_insightcaster.png" +dest_files=["res://.godot/imported/f3_insightcaster.png-7bdd2774024efd745565788a4c430a75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png new file mode 100644 index 0000000..2796c38 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png.import new file mode 100644 index 0000000..bbc9704 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp7ym2e12r8e0" +path="res://.godot/imported/f3_irondervish.png-134610a071a0bce364646c6635e2e7b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_irondervish.png" +dest_files=["res://.godot/imported/f3_irondervish.png-134610a071a0bce364646c6635e2e7b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png new file mode 100644 index 0000000..470ec11 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png.import new file mode 100644 index 0000000..28e8414 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjrexh2e7pbdt" +path="res://.godot/imported/f3_ishtarhunter.png-88a8b0130f9ae566cb1729fa6083a48f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_ishtarhunter.png" +dest_files=["res://.godot/imported/f3_ishtarhunter.png-88a8b0130f9ae566cb1729fa6083a48f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png new file mode 100644 index 0000000..a6e16cc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png.import new file mode 100644 index 0000000..e5a14a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i4cm5exix6si" +path="res://.godot/imported/f3_keeperofages.png-2fafee92241b4f968ca0df8fddc8df2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_keeperofages.png" +dest_files=["res://.godot/imported/f3_keeperofages.png-2fafee92241b4f968ca0df8fddc8df2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png new file mode 100644 index 0000000..de40765 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png.import new file mode 100644 index 0000000..b248e04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jn0e1n6r3g3" +path="res://.godot/imported/f3_lavastormobelysk.png-13adc768bb113f3e0660443c19ce7b9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_lavastormobelysk.png" +dest_files=["res://.godot/imported/f3_lavastormobelysk.png-13adc768bb113f3e0660443c19ce7b9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png new file mode 100644 index 0000000..a4da068 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png.import new file mode 100644 index 0000000..2ca5838 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s2nmm2oo2vm1" +path="res://.godot/imported/f3_mech.png-230a83b1f020cfd2de9c308b90d74ed4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_mech.png" +dest_files=["res://.godot/imported/f3_mech.png-230a83b1f020cfd2de9c308b90d74ed4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png new file mode 100644 index 0000000..ee399bb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png.import new file mode 100644 index 0000000..e24e797 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqsro3bgi73n7" +path="res://.godot/imported/f3_miniscarab.png-e4dbf8dacd97e9f326d60ca92e76fb74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_miniscarab.png" +dest_files=["res://.godot/imported/f3_miniscarab.png-e4dbf8dacd97e9f326d60ca92e76fb74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png new file mode 100644 index 0000000..25dcf35 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png.import new file mode 100644 index 0000000..014fb7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch7cwhwv6yk6v" +path="res://.godot/imported/f3_nimbus.png-f765383840f5e8e1b6fa836fe895870a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_nimbus.png" +dest_files=["res://.godot/imported/f3_nimbus.png-f765383840f5e8e1b6fa836fe895870a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png new file mode 100644 index 0000000..c87b609 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png.import new file mode 100644 index 0000000..a34b8ee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1283gh5e5jgr" +path="res://.godot/imported/f3_obelyskduskwind.png-0e472c5a183688439b23278fae2a01f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskduskwind.png" +dest_files=["res://.godot/imported/f3_obelyskduskwind.png-0e472c5a183688439b23278fae2a01f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png new file mode 100644 index 0000000..efa83ce Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png.import new file mode 100644 index 0000000..4c0b08b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyg3340pvhc00" +path="res://.godot/imported/f3_obelyskgoldenflame.png-a5df02374a29b50b004f7fbdbce0dc1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskgoldenflame.png" +dest_files=["res://.godot/imported/f3_obelyskgoldenflame.png-a5df02374a29b50b004f7fbdbce0dc1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png new file mode 100644 index 0000000..803b9d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png.import new file mode 100644 index 0000000..c2d43d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgq8akclb072g" +path="res://.godot/imported/f3_obelyskredsand.png-cce64bd490e6d078c3d559c090bc14a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_obelyskredsand.png" +dest_files=["res://.godot/imported/f3_obelyskredsand.png-cce64bd490e6d078c3d559c090bc14a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png new file mode 100644 index 0000000..7324007 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png.import new file mode 100644 index 0000000..ff1598f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg41huy82wbbi" +path="res://.godot/imported/f3_onyxpantheran.png-357d72cc183725650c0396e884b3e44f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_onyxpantheran.png" +dest_files=["res://.godot/imported/f3_onyxpantheran.png-357d72cc183725650c0396e884b3e44f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png new file mode 100644 index 0000000..2294434 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png.import new file mode 100644 index 0000000..ff5b6b2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y3fun3gs4pq0" +path="res://.godot/imported/f3_orbweaver.png-f8de3e9af568fcda6335b09e9b4a1657.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_orbweaver.png" +dest_files=["res://.godot/imported/f3_orbweaver.png-f8de3e9af568fcda6335b09e9b4a1657.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png new file mode 100644 index 0000000..8dfa188 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png.import new file mode 100644 index 0000000..5867016 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b14efdrb3hiqb" +path="res://.godot/imported/f3_palacetrinketeer.png-220c485094a248f71eecb2cd33205ddb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_palacetrinketeer.png" +dest_files=["res://.godot/imported/f3_palacetrinketeer.png-220c485094a248f71eecb2cd33205ddb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png new file mode 100644 index 0000000..1a7615c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png.import new file mode 100644 index 0000000..ab8f24f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chvcch147pyf2" +path="res://.godot/imported/f3_pax.png-b58805e8826b88651ee7a1841519ae0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pax.png" +dest_files=["res://.godot/imported/f3_pax.png-b58805e8826b88651ee7a1841519ae0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png new file mode 100644 index 0000000..f1a7f9d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png.import new file mode 100644 index 0000000..916898f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckbuljsmfnxqu" +path="res://.godot/imported/f3_plague_totem.png-01bd3450401084c968a11664d9965b0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_plague_totem.png" +dest_files=["res://.godot/imported/f3_plague_totem.png-01bd3450401084c968a11664d9965b0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png new file mode 100644 index 0000000..f752715 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png.import new file mode 100644 index 0000000..bb760e3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i3eb16ny5eji" +path="res://.godot/imported/f3_pyromancer.png-43c7a6609f7889b211cd0fa1f7171e19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_pyromancer.png" +dest_files=["res://.godot/imported/f3_pyromancer.png-43c7a6609f7889b211cd0fa1f7171e19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png new file mode 100644 index 0000000..86e8b60 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png.import new file mode 100644 index 0000000..e3d0dda --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de0a1hda2paqf" +path="res://.godot/imported/f3_rae.png-3472e8e38415f7178a7f9dab57b4a6fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rae.png" +dest_files=["res://.godot/imported/f3_rae.png-3472e8e38415f7178a7f9dab57b4a6fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png new file mode 100644 index 0000000..cefea98 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png.import new file mode 100644 index 0000000..a06919c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr828t10231iv" +path="res://.godot/imported/f3_rehorah.png-64e210eccea38f29df7867b01fb55b1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_rehorah.png" +dest_files=["res://.godot/imported/f3_rehorah.png-64e210eccea38f29df7867b01fb55b1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png new file mode 100644 index 0000000..497a396 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png.import new file mode 100644 index 0000000..816f349 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1436tuhw8rxj" +path="res://.godot/imported/f3_sakkak.png-215a10550f2eb85b8f41ff02594ff9d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sakkak.png" +dest_files=["res://.godot/imported/f3_sakkak.png-215a10550f2eb85b8f41ff02594ff9d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png new file mode 100644 index 0000000..779d9ad Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png.import new file mode 100644 index 0000000..3eeb218 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgyhpfkm67yxe" +path="res://.godot/imported/f3_sandhowler.png-77f68641412b16af976dc7c871f3a324.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sandhowler.png" +dest_files=["res://.godot/imported/f3_sandhowler.png-77f68641412b16af976dc7c871f3a324.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png new file mode 100644 index 0000000..6ed08cf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png.import new file mode 100644 index 0000000..7c57adf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beys4s6jqg3xp" +path="res://.godot/imported/f3_scarabtera.png-584cde66b509e0a531034ea3cd358f8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_scarabtera.png" +dest_files=["res://.godot/imported/f3_scarabtera.png-584cde66b509e0a531034ea3cd358f8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png new file mode 100644 index 0000000..3a9e6ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png.import new file mode 100644 index 0000000..f2768be --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7q845smnp4s0" +path="res://.godot/imported/f3_sinergyunit.png-0b56529e5b93f05cd247d046643d022e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sinergyunit.png" +dest_files=["res://.godot/imported/f3_sinergyunit.png-0b56529e5b93f05cd247d046643d022e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png new file mode 100644 index 0000000..10aa5e5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png.import new file mode 100644 index 0000000..e6d9d6d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdglxokmrdta" +path="res://.godot/imported/f3_sirocco.png-63f8febfcbb07a81bfdf27c0f8bb378d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sirocco.png" +dest_files=["res://.godot/imported/f3_sirocco.png-63f8febfcbb07a81bfdf27c0f8bb378d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png new file mode 100644 index 0000000..07a1e3b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png.import new file mode 100644 index 0000000..4d31b24 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxdkr17gwla0g" +path="res://.godot/imported/f3_sister.png-768df8caa13d84d2c3a0fc3e078359f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_sister.png" +dest_files=["res://.godot/imported/f3_sister.png-768df8caa13d84d2c3a0fc3e078359f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png new file mode 100644 index 0000000..0e732a2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png.import new file mode 100644 index 0000000..b664dcf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq2y501d8hc60" +path="res://.godot/imported/f3_starfirescarab.png-cece7b740ac775ae68859511e0d83a64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_starfirescarab.png" +dest_files=["res://.godot/imported/f3_starfirescarab.png-cece7b740ac775ae68859511e0d83a64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png new file mode 100644 index 0000000..df0c0d2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png.import new file mode 100644 index 0000000..84fbada --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfri1ajx13u0i" +path="res://.godot/imported/f3_tier2general.png-f7f166ab8920dbdbb88291d339d63dbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_tier2general.png" +dest_files=["res://.godot/imported/f3_tier2general.png-f7f166ab8920dbdbb88291d339d63dbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png new file mode 100644 index 0000000..2508a84 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png.import new file mode 100644 index 0000000..c39ee1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlk4mecj2h8bf" +path="res://.godot/imported/f3_trifectaperfecta.png-281d21787db4a1b61f5e8362be68c51b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_trifectaperfecta.png" +dest_files=["res://.godot/imported/f3_trifectaperfecta.png-281d21787db4a1b61f5e8362be68c51b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png new file mode 100644 index 0000000..48dfe94 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png.import new file mode 100644 index 0000000..ce58b00 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dycon7bsa3a1k" +path="res://.godot/imported/f3_windgiver.png-b491b8049bba048c6e113176de8115f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windgiver.png" +dest_files=["res://.godot/imported/f3_windgiver.png-b491b8049bba048c6e113176de8115f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png new file mode 100644 index 0000000..c161b87 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png.import new file mode 100644 index 0000000..5a4509a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beqycut50fnsf" +path="res://.godot/imported/f3_windshriek.png-a092b52f97af18105a151965a265677b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windshriek.png" +dest_files=["res://.godot/imported/f3_windshriek.png-a092b52f97af18105a151965a265677b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png new file mode 100644 index 0000000..252058d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png.import new file mode 100644 index 0000000..b96a894 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkclaoxtof68n" +path="res://.godot/imported/f3_windslicer.png-d609c09096ea88aac2c81026e5383608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windslicer.png" +dest_files=["res://.godot/imported/f3_windslicer.png-d609c09096ea88aac2c81026e5383608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png new file mode 100644 index 0000000..4b6dcb5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png.import new file mode 100644 index 0000000..b4e557b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfjmf24tej42y" +path="res://.godot/imported/f3_windstriker.png-ce7bba569696f41b0b84d3eaeff48027.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_windstriker.png" +dest_files=["res://.godot/imported/f3_windstriker.png-ce7bba569696f41b0b84d3eaeff48027.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png new file mode 100644 index 0000000..b3912d5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png.import new file mode 100644 index 0000000..7a95c68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1l6ufi5e27uf" +path="res://.godot/imported/f3_zephyr.png-31dfae21a5eb75cefdba5f1abf83b13c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zephyr.png" +dest_files=["res://.godot/imported/f3_zephyr.png-31dfae21a5eb75cefdba5f1abf83b13c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png new file mode 100644 index 0000000..59e5016 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png.import new file mode 100644 index 0000000..1db1255 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chbqa05aem82o" +path="res://.godot/imported/f3_zirixfestive.png-896e631d7859032397bee1dad4fbb176.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zirixfestive.png" +dest_files=["res://.godot/imported/f3_zirixfestive.png-896e631d7859032397bee1dad4fbb176.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png new file mode 100644 index 0000000..d307787 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png.import new file mode 100644 index 0000000..4527f10 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dple1n5ecfgos" +path="res://.godot/imported/f3_zodiac.png-47e3a7db86a3a78d06fae7f63e3a21aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac.png" +dest_files=["res://.godot/imported/f3_zodiac.png-47e3a7db86a3a78d06fae7f63e3a21aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png new file mode 100644 index 0000000..dc721c8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png.import new file mode 100644 index 0000000..7796f87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j82o78dv20pu" +path="res://.godot/imported/f3_zodiac02.png-83c63b274051b52058ebd61ca9dd4c85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f3_zodiac02.png" +dest_files=["res://.godot/imported/f3_zodiac02.png-83c63b274051b52058ebd61ca9dd4c85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png new file mode 100644 index 0000000..78495bd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png.import new file mode 100644 index 0000000..db209bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi8esi2lldke4" +path="res://.godot/imported/f4_3rdgeneral.png-01c3916864f2eae516f283fe93091a85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_3rdgeneral.png" +dest_files=["res://.godot/imported/f4_3rdgeneral.png-01c3916864f2eae516f283fe93091a85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png new file mode 100644 index 0000000..8e45aaa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png.import new file mode 100644 index 0000000..80737ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd6lc57xm1u3f" +path="res://.godot/imported/f4_abomination.png-92eaae06db3642d60c3c8d1a95819bd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abomination.png" +dest_files=["res://.godot/imported/f4_abomination.png-92eaae06db3642d60c3c8d1a95819bd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png new file mode 100644 index 0000000..09da981 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png.import new file mode 100644 index 0000000..e34b9dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dubu71wsbs2bu" +path="res://.godot/imported/f4_abyssiansentinel.png-67bf87cdc9f23aaf400630e37d075f3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_abyssiansentinel.png" +dest_files=["res://.godot/imported/f4_abyssiansentinel.png-67bf87cdc9f23aaf400630e37d075f3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png new file mode 100644 index 0000000..a809687 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png.import new file mode 100644 index 0000000..1c74043 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgeo5e7kjl656" +path="res://.godot/imported/f4_altgeneral.png-a154fd6a3b555ddaa45626be725547d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneral.png" +dest_files=["res://.godot/imported/f4_altgeneral.png-a154fd6a3b555ddaa45626be725547d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png new file mode 100644 index 0000000..93730a2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png.import new file mode 100644 index 0000000..60268a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kukhpo2j0jrh" +path="res://.godot/imported/f4_altgeneraltier2.png-b5143cd282576006d1770141abed2088.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_altgeneraltier2.png" +dest_files=["res://.godot/imported/f4_altgeneraltier2.png-b5143cd282576006d1770141abed2088.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png new file mode 100644 index 0000000..386035d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png.import new file mode 100644 index 0000000..c6134ce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bev4e2boeuwxd" +path="res://.godot/imported/f4_arachne.png-477b026173cb069da706a00be1ff26c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arachne.png" +dest_files=["res://.godot/imported/f4_arachne.png-477b026173cb069da706a00be1ff26c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png new file mode 100644 index 0000000..b735c29 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png.import new file mode 100644 index 0000000..a9e35f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://llxuvy7mw3pq" +path="res://.godot/imported/f4_arcanedevourer.png-4c05e3b5318e0ecec368a969ddca5fdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_arcanedevourer.png" +dest_files=["res://.godot/imported/f4_arcanedevourer.png-4c05e3b5318e0ecec368a969ddca5fdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png new file mode 100644 index 0000000..9a89437 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png.import new file mode 100644 index 0000000..4ef307d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkbqviho43dwr" +path="res://.godot/imported/f4_blacksolus.png-6a5e0932385e690599ff81d52f86efba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_blacksolus.png" +dest_files=["res://.godot/imported/f4_blacksolus.png-6a5e0932385e690599ff81d52f86efba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png new file mode 100644 index 0000000..2bed859 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png.import new file mode 100644 index 0000000..b12691a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bohtrkaubrray" +path="res://.godot/imported/f4_bloodbaronette.png-7cd5a1c025e15b1f2d83db45cc8c8bc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodbaronette.png" +dest_files=["res://.godot/imported/f4_bloodbaronette.png-7cd5a1c025e15b1f2d83db45cc8c8bc3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png new file mode 100644 index 0000000..dbefe87 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png.import new file mode 100644 index 0000000..e182ca8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doh6desmk1aw4" +path="res://.godot/imported/f4_bloodmoon.png-ea109af1cd14e62e04affffda7cdcd55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_bloodmoon.png" +dest_files=["res://.godot/imported/f4_bloodmoon.png-ea109af1cd14e62e04affffda7cdcd55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png new file mode 100644 index 0000000..cc323a3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png.import new file mode 100644 index 0000000..0e8c64e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb65y4nqry4om" +path="res://.godot/imported/f4_buildcommon.png-61b4a023d46210d66ed791778a53c0e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildcommon.png" +dest_files=["res://.godot/imported/f4_buildcommon.png-61b4a023d46210d66ed791778a53c0e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png new file mode 100644 index 0000000..e8f7af1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png.import new file mode 100644 index 0000000..9178f58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvjn1t6ufgaox" +path="res://.godot/imported/f4_buildlegendary.png-4a699598f6ca60a06fa664b39783c521.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildlegendary.png" +dest_files=["res://.godot/imported/f4_buildlegendary.png-4a699598f6ca60a06fa664b39783c521.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png new file mode 100644 index 0000000..189040e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png.import new file mode 100644 index 0000000..65cf36d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlqjuc1lcere6" +path="res://.godot/imported/f4_buildminion.png-986eecafba569cbb8fb4142f015ee32c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_buildminion.png" +dest_files=["res://.godot/imported/f4_buildminion.png-986eecafba569cbb8fb4142f015ee32c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png new file mode 100644 index 0000000..a79ad38 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png.import new file mode 100644 index 0000000..3f71f22 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3dlg5bf7qkga" +path="res://.godot/imported/f4_crawler.png-e0059f4ad80f3ab30228e099025cc9a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_crawler.png" +dest_files=["res://.godot/imported/f4_crawler.png-e0059f4ad80f3ab30228e099025cc9a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png new file mode 100644 index 0000000..19840a1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png.import new file mode 100644 index 0000000..63f97f8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3mrl6kmeryx8" +path="res://.godot/imported/f4_creepmangler.png-b03b5a040ae1cd868d1a03d5816ea097.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepmangler.png" +dest_files=["res://.godot/imported/f4_creepmangler.png-b03b5a040ae1cd868d1a03d5816ea097.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png new file mode 100644 index 0000000..2a14c35 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png.import new file mode 100644 index 0000000..932c1cf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j1olbpaoev8d" +path="res://.godot/imported/f4_creepydemon.png-463c3e22b0835c28cd5a206d06684e63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_creepydemon.png" +dest_files=["res://.godot/imported/f4_creepydemon.png-463c3e22b0835c28cd5a206d06684e63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png new file mode 100644 index 0000000..a7b2f71 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png.import new file mode 100644 index 0000000..9673f58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cugqbu43fb6qn" +path="res://.godot/imported/f4_daemondeep.png-2305f1718144d746fe0e7d7c58fdb3df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemondeep.png" +dest_files=["res://.godot/imported/f4_daemondeep.png-2305f1718144d746fe0e7d7c58fdb3df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png new file mode 100644 index 0000000..7bc6a46 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png.import new file mode 100644 index 0000000..25374f8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn1nwikgso5do" +path="res://.godot/imported/f4_daemongate.png-152661f5430615124b19499723b0d043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemongate.png" +dest_files=["res://.godot/imported/f4_daemongate.png-152661f5430615124b19499723b0d043.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png new file mode 100644 index 0000000..56a2cb9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png.import new file mode 100644 index 0000000..7831a9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfen32w0in6b0" +path="res://.godot/imported/f4_daemonvoid.png-a5ebadcaf2d0fcad656d25b213ccaada.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_daemonvoid.png" +dest_files=["res://.godot/imported/f4_daemonvoid.png-a5ebadcaf2d0fcad656d25b213ccaada.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png new file mode 100644 index 0000000..ad473b6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png.import new file mode 100644 index 0000000..830ea5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2behaoh1wkhp" +path="res://.godot/imported/f4_darkspine.png-481933be2b3f77cf18c564e7697b3741.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_darkspine.png" +dest_files=["res://.godot/imported/f4_darkspine.png-481933be2b3f77cf18c564e7697b3741.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png new file mode 100644 index 0000000..ab5724d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png.import new file mode 100644 index 0000000..1f522f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdulskhw2secp" +path="res://.godot/imported/f4_deathknell.png-db39ff6fdd8d5742383b2643d10022ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_deathknell.png" +dest_files=["res://.godot/imported/f4_deathknell.png-db39ff6fdd8d5742383b2643d10022ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png new file mode 100644 index 0000000..9529fec Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png.import new file mode 100644 index 0000000..a748123 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmt3ebi6qs014" +path="res://.godot/imported/f4_demonofeternity.png-a05eafa4cd6be4e65e8f2b76275f94b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_demonofeternity.png" +dest_files=["res://.godot/imported/f4_demonofeternity.png-a05eafa4cd6be4e65e8f2b76275f94b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png new file mode 100644 index 0000000..09e097a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png.import new file mode 100644 index 0000000..1e785f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfriyac7304jv" +path="res://.godot/imported/f4_desolater.png-2180348f0ef931da0583457de31110cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_desolater.png" +dest_files=["res://.godot/imported/f4_desolater.png-2180348f0ef931da0583457de31110cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png new file mode 100644 index 0000000..b926087 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png.import new file mode 100644 index 0000000..f7e56f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmif8rfx68d8s" +path="res://.godot/imported/f4_engulfingshadow.png-eae2241fb176185afad4ca7520dcd5bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_engulfingshadow.png" +dest_files=["res://.godot/imported/f4_engulfingshadow.png-eae2241fb176185afad4ca7520dcd5bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png new file mode 100644 index 0000000..3ba8684 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png.import new file mode 100644 index 0000000..39e00fe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxcvgj1bhbj1f" +path="res://.godot/imported/f4_fallenaspect.png-4be198dce8ca82b52ed58261618d8fb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_fallenaspect.png" +dest_files=["res://.godot/imported/f4_fallenaspect.png-4be198dce8ca82b52ed58261618d8fb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png new file mode 100644 index 0000000..5916884 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png.import new file mode 100644 index 0000000..e8ba229 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpjvfy2twbujt" +path="res://.godot/imported/f4_furosa.png-9f513db12da8250516eed2e59b80c42b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_furosa.png" +dest_files=["res://.godot/imported/f4_furosa.png-9f513db12da8250516eed2e59b80c42b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png new file mode 100644 index 0000000..f713121 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png.import new file mode 100644 index 0000000..17039f9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ax2puq0d6d1" +path="res://.godot/imported/f4_general.png-e7e797aea04f4254dba980aaa2f25b5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_general.png" +dest_files=["res://.godot/imported/f4_general.png-e7e797aea04f4254dba980aaa2f25b5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png new file mode 100644 index 0000000..0fd54a5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png.import new file mode 100644 index 0000000..fa87fef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy66eon1fwlwj" +path="res://.godot/imported/f4_gloomchaser.png-c06985d0caa89f4cc6599dda72cb6b45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gloomchaser.png" +dest_files=["res://.godot/imported/f4_gloomchaser.png-c06985d0caa89f4cc6599dda72cb6b45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png new file mode 100644 index 0000000..8a705f4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png.import new file mode 100644 index 0000000..db7a805 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df7falqapu2pp" +path="res://.godot/imported/f4_gor.png-e8f51693f4eff6bddf046f0177264e08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_gor.png" +dest_files=["res://.godot/imported/f4_gor.png-e8f51693f4eff6bddf046f0177264e08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png new file mode 100644 index 0000000..d9799e8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png.import new file mode 100644 index 0000000..aea8ee1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t4hhv5os7t6f" +path="res://.godot/imported/f4_grandmastervariax.png-2e40f661dbff9a8acd86c9856981f0b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_grandmastervariax.png" +dest_files=["res://.godot/imported/f4_grandmastervariax.png-2e40f661dbff9a8acd86c9856981f0b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png new file mode 100644 index 0000000..8cb8f36 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png.import new file mode 100644 index 0000000..9b3566e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6xwdovyjw8fx" +path="res://.godot/imported/f4_horror.png-98bdbc5acc1ff837db875966aaf19aa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horror.png" +dest_files=["res://.godot/imported/f4_horror.png-98bdbc5acc1ff837db875966aaf19aa2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png new file mode 100644 index 0000000..627f145 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png.import new file mode 100644 index 0000000..0a06355 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crfkboipeh24h" +path="res://.godot/imported/f4_horrorburster.png-579bb682fc13a1779b7bc138f9b8713c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_horrorburster.png" +dest_files=["res://.godot/imported/f4_horrorburster.png-579bb682fc13a1779b7bc138f9b8713c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png new file mode 100644 index 0000000..d4838e6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png.import new file mode 100644 index 0000000..649b9dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2tner45ixel" +path="res://.godot/imported/f4_husk.png-28f24c4390ead2abd48e5798b5c3b767.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_husk.png" +dest_files=["res://.godot/imported/f4_husk.png-28f24c4390ead2abd48e5798b5c3b767.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png new file mode 100644 index 0000000..029a105 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png.import new file mode 100644 index 0000000..fd6b18f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dojui76ormc3g" +path="res://.godot/imported/f4_juggernaut.png-9063807631f1d8f84301d5e8ef07bf90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_juggernaut.png" +dest_files=["res://.godot/imported/f4_juggernaut.png-9063807631f1d8f84301d5e8ef07bf90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png new file mode 100644 index 0000000..092110d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png.import new file mode 100644 index 0000000..98ba65d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cefr711j71mh0" +path="res://.godot/imported/f4_klaxon.png-8321c0c50953d9062a919de619229f35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_klaxon.png" +dest_files=["res://.godot/imported/f4_klaxon.png-8321c0c50953d9062a919de619229f35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png new file mode 100644 index 0000000..04d51f5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png.import new file mode 100644 index 0000000..2b230fb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhciju8gp1er1" +path="res://.godot/imported/f4_limbodweller.png-194cdd5743197a39bab60615ecec3e67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_limbodweller.png" +dest_files=["res://.godot/imported/f4_limbodweller.png-194cdd5743197a39bab60615ecec3e67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png new file mode 100644 index 0000000..87d2b64 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png.import new file mode 100644 index 0000000..bd5fe91 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceos3gsyk2fg4" +path="res://.godot/imported/f4_maehvmk2.png-c4789b2c51428105beb353fd86b788eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_maehvmk2.png" +dest_files=["res://.godot/imported/f4_maehvmk2.png-c4789b2c51428105beb353fd86b788eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png new file mode 100644 index 0000000..20f4bc1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png.import new file mode 100644 index 0000000..8a65dcf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwmf8k4bujs41" +path="res://.godot/imported/f4_mech.png-6f3bbea2790c6dc65e868fac03747115.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mech.png" +dest_files=["res://.godot/imported/f4_mech.png-6f3bbea2790c6dc65e868fac03747115.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png new file mode 100644 index 0000000..d344a37 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png.import new file mode 100644 index 0000000..1b7b324 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1n2gmflvye0l" +path="res://.godot/imported/f4_megafiend.png-3562754451e131012b42c9b0b368d6ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_megafiend.png" +dest_files=["res://.godot/imported/f4_megafiend.png-3562754451e131012b42c9b0b368d6ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png new file mode 100644 index 0000000..7f1b470 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png.import new file mode 100644 index 0000000..996f8e9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djyckkcfn1go2" +path="res://.godot/imported/f4_miniminion.png-2e02d95a4a3ca879959cb34ec65f6994.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_miniminion.png" +dest_files=["res://.godot/imported/f4_miniminion.png-2e02d95a4a3ca879959cb34ec65f6994.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png new file mode 100644 index 0000000..cfa32bd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png.import new file mode 100644 index 0000000..ee0993e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu411p5op1uvq" +path="res://.godot/imported/f4_mistressofcommands.png-7024fe93537617ac2b450c7396b277e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_mistressofcommands.png" +dest_files=["res://.godot/imported/f4_mistressofcommands.png-7024fe93537617ac2b450c7396b277e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png new file mode 100644 index 0000000..cd1ef45 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png.import new file mode 100644 index 0000000..2259b4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xmwfl68owd55" +path="res://.godot/imported/f4_moonrider.png-6e81e1d8fc24569fa3ccdf039e0a377c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_moonrider.png" +dest_files=["res://.godot/imported/f4_moonrider.png-6e81e1d8fc24569fa3ccdf039e0a377c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png new file mode 100644 index 0000000..c3f802a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png.import new file mode 100644 index 0000000..1e6e614 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2orlql7aurr2" +path="res://.godot/imported/f4_nightfiend.png-08be85061184d64e90d1bb3394102c61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightfiend.png" +dest_files=["res://.godot/imported/f4_nightfiend.png-08be85061184d64e90d1bb3394102c61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png new file mode 100644 index 0000000..8f7ad23 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png.import new file mode 100644 index 0000000..7353ed6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhiw142bajp5r" +path="res://.godot/imported/f4_nightsorrow.png-6e5d7dfa41087006301d5c724c3006ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nightsorrow.png" +dest_files=["res://.godot/imported/f4_nightsorrow.png-6e5d7dfa41087006301d5c724c3006ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png new file mode 100644 index 0000000..8b3e1f0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png.import new file mode 100644 index 0000000..68ebb98 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1mqiy757tefg" +path="res://.godot/imported/f4_nocturn.png-6d2a46edc111e9d1481e883df5dbdad3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_nocturn.png" +dest_files=["res://.godot/imported/f4_nocturn.png-6d2a46edc111e9d1481e883df5dbdad3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png new file mode 100644 index 0000000..d10277f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png.import new file mode 100644 index 0000000..a24bf0c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds1scbk7qf5bb" +path="res://.godot/imported/f4_ooz.png-e0f225c825d0c338d5f2e80984dc203e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_ooz.png" +dest_files=["res://.godot/imported/f4_ooz.png-e0f225c825d0c338d5f2e80984dc203e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png new file mode 100644 index 0000000..44e83a6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png.import new file mode 100644 index 0000000..981ee4f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jtisy3eypbsa" +path="res://.godot/imported/f4_phantasm.png-4c449c65939addec0bd60a7e12dc818e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_phantasm.png" +dest_files=["res://.godot/imported/f4_phantasm.png-4c449c65939addec0bd60a7e12dc818e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png new file mode 100644 index 0000000..3337f45 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png.import new file mode 100644 index 0000000..9958b70 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmehty6jnru6w" +path="res://.godot/imported/f4_pitstrider.png-ff6ca58f082323cb50adec6799da441a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_pitstrider.png" +dest_files=["res://.godot/imported/f4_pitstrider.png-ff6ca58f082323cb50adec6799da441a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png new file mode 100644 index 0000000..4286a72 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png.import new file mode 100644 index 0000000..fc39698 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6f31uikit5kh" +path="res://.godot/imported/f4_plaguedr.png-856140d0d290e4f8c7290502428ecf8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_plaguedr.png" +dest_files=["res://.godot/imported/f4_plaguedr.png-856140d0d290e4f8c7290502428ecf8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png new file mode 100644 index 0000000..8d24dee Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png.import new file mode 100644 index 0000000..10323f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s785oliiaxk4" +path="res://.godot/imported/f4_reaperninemoons.png-e215e5c869b8cd4e9b3895261088363f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_reaperninemoons.png" +dest_files=["res://.godot/imported/f4_reaperninemoons.png-e215e5c869b8cd4e9b3895261088363f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png new file mode 100644 index 0000000..b70fac1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png.import new file mode 100644 index 0000000..2562f68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqp2w50uyx20u" +path="res://.godot/imported/f4_remora.png-a5319fe527b0294e6de48d8ffcdd88eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_remora.png" +dest_files=["res://.godot/imported/f4_remora.png-a5319fe527b0294e6de48d8ffcdd88eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png new file mode 100644 index 0000000..82107b7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png.import new file mode 100644 index 0000000..bf3ca51 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dim07d84ojm7" +path="res://.godot/imported/f4_shadowdancer.png-1e88d1fdeb457299619840ffa11f27ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_shadowdancer.png" +dest_files=["res://.godot/imported/f4_shadowdancer.png-1e88d1fdeb457299619840ffa11f27ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png new file mode 100644 index 0000000..9e5ce66 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png.import new file mode 100644 index 0000000..6a8524e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w8ufafmbq332" +path="res://.godot/imported/f4_sinergyunit.png-c2e62fcb068af1c29ccdacc08f2c3d8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sinergyunit.png" +dest_files=["res://.godot/imported/f4_sinergyunit.png-c2e62fcb068af1c29ccdacc08f2c3d8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png new file mode 100644 index 0000000..23bcee9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png.import new file mode 100644 index 0000000..9fa3207 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl4qjs8k0r1yv" +path="res://.godot/imported/f4_siren.png-d6b6f4e9fb4e119736ce1faf5fb137f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_siren.png" +dest_files=["res://.godot/imported/f4_siren.png-d6b6f4e9fb4e119736ce1faf5fb137f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png new file mode 100644 index 0000000..dbba89b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png.import new file mode 100644 index 0000000..2981081 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwkxwm6v3cm8q" +path="res://.godot/imported/f4_sister.png-24bae70184a69ef46dcd196cbcc95d6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_sister.png" +dest_files=["res://.godot/imported/f4_sister.png-24bae70184a69ef46dcd196cbcc95d6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png new file mode 100644 index 0000000..4e821eb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png.import new file mode 100644 index 0000000..1aa4330 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqdyj72lqyn08" +path="res://.godot/imported/f4_skullcaster.png-8d9c077b1a629cbd61ba1aab07b02a1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_skullcaster.png" +dest_files=["res://.godot/imported/f4_skullcaster.png-8d9c077b1a629cbd61ba1aab07b02a1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png new file mode 100644 index 0000000..7c76792 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png.import new file mode 100644 index 0000000..f21274e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtobqb2436tvk" +path="res://.godot/imported/f4_tier2general.png-8a44472b55bf6a6772c1decb16326019.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_tier2general.png" +dest_files=["res://.godot/imported/f4_tier2general.png-8a44472b55bf6a6772c1decb16326019.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png new file mode 100644 index 0000000..7992023 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png.import new file mode 100644 index 0000000..fcd52c8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c21imhqi21m1o" +path="res://.godot/imported/f4_underworldbrute.png-a3cbd82f48714b8fbb58624bebb6f6df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f4_underworldbrute.png" +dest_files=["res://.godot/imported/f4_underworldbrute.png-a3cbd82f48714b8fbb58624bebb6f6df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png new file mode 100644 index 0000000..bf50b96 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png.import new file mode 100644 index 0000000..3503efd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cucojboe7r0" +path="res://.godot/imported/f5_3rdgeneral.png-95bf53edf46bc8310954f7c191ea0067.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_3rdgeneral.png" +dest_files=["res://.godot/imported/f5_3rdgeneral.png-95bf53edf46bc8310954f7c191ea0067.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png new file mode 100644 index 0000000..93496e4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png.import new file mode 100644 index 0000000..149bdac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxq22oiy2u6sm" +path="res://.godot/imported/f5_altgeneral.png-5e2808773611566d5a90c399cdd6e7dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneral.png" +dest_files=["res://.godot/imported/f5_altgeneral.png-5e2808773611566d5a90c399cdd6e7dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png new file mode 100644 index 0000000..5225e29 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png.import new file mode 100644 index 0000000..cbb8024 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgytqdmnrvw7m" +path="res://.godot/imported/f5_altgeneraltier2.png-175fb321baaa5fd88c44b0d21580ad73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_altgeneraltier2.png" +dest_files=["res://.godot/imported/f5_altgeneraltier2.png-175fb321baaa5fd88c44b0d21580ad73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png new file mode 100644 index 0000000..99c71ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png.import new file mode 100644 index 0000000..89e8885 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o4vcopahnwe2" +path="res://.godot/imported/f5_ankylos.png-04c61ff82f8067b6dfba33be8e44c480.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ankylos.png" +dest_files=["res://.godot/imported/f5_ankylos.png-04c61ff82f8067b6dfba33be8e44c480.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png new file mode 100644 index 0000000..5b6f31b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png.import new file mode 100644 index 0000000..3214d45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dum3hvcmdwsyc" +path="res://.godot/imported/f5_armada.png-f59316ade8b8b67333a3dc54f7908f1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_armada.png" +dest_files=["res://.godot/imported/f5_armada.png-f59316ade8b8b67333a3dc54f7908f1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png new file mode 100644 index 0000000..8c2fa33 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png.import new file mode 100644 index 0000000..465e098 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbthcjh2h5sky" +path="res://.godot/imported/f5_brundlbeast.png-866fd284f91caa94628e309c86900a04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_brundlbeast.png" +dest_files=["res://.godot/imported/f5_brundlbeast.png-866fd284f91caa94628e309c86900a04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png new file mode 100644 index 0000000..fbfbd8f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png.import new file mode 100644 index 0000000..e3e22bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs7f2ho5hgydc" +path="res://.godot/imported/f5_buildcommon.png-6027ec006bb9114a8e66a9d1734556d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildcommon.png" +dest_files=["res://.godot/imported/f5_buildcommon.png-6027ec006bb9114a8e66a9d1734556d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png new file mode 100644 index 0000000..4457fd2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png.import new file mode 100644 index 0000000..0bec544 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c21tj18gr6ne3" +path="res://.godot/imported/f5_buildminion.png-21d8e14600802649827f420de406404a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_buildminion.png" +dest_files=["res://.godot/imported/f5_buildminion.png-21d8e14600802649827f420de406404a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png new file mode 100644 index 0000000..e96a31e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png.import new file mode 100644 index 0000000..9a4f7e1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cymstwb646in8" +path="res://.godot/imported/f5_catalystquillbeast.png-2613a443430a3005f51e3642e855ae0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_catalystquillbeast.png" +dest_files=["res://.godot/imported/f5_catalystquillbeast.png-2613a443430a3005f51e3642e855ae0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png new file mode 100644 index 0000000..47c107e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png.import new file mode 100644 index 0000000..5a7851e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbtvr36q1dfc1" +path="res://.godot/imported/f5_dreadnaught.png-51dca8d77ffaed9604085b80ec087356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_dreadnaught.png" +dest_files=["res://.godot/imported/f5_dreadnaught.png-51dca8d77ffaed9604085b80ec087356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png new file mode 100644 index 0000000..29c1a9f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png.import new file mode 100644 index 0000000..e790c90 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpm27lx58a25d" +path="res://.godot/imported/f5_drogon.png-5b590d8b2a15bf4d2c1df571d5bf4eb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_drogon.png" +dest_files=["res://.godot/imported/f5_drogon.png-5b590d8b2a15bf4d2c1df571d5bf4eb9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png new file mode 100644 index 0000000..449c7e2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png.import new file mode 100644 index 0000000..f5e931e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ikjk84wgfbgh" +path="res://.godot/imported/f5_earthwalker.png-6d23ad7585b48be5757f531de7ca6c6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_earthwalker.png" +dest_files=["res://.godot/imported/f5_earthwalker.png-6d23ad7585b48be5757f531de7ca6c6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png new file mode 100644 index 0000000..6027f7f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png.import new file mode 100644 index 0000000..3f6c133 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byqut3j65a0fg" +path="res://.godot/imported/f5_egg.png-fb6b9db65c7ae7b10e1f2dc391d672aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_egg.png" +dest_files=["res://.godot/imported/f5_egg.png-fb6b9db65c7ae7b10e1f2dc391d672aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png new file mode 100644 index 0000000..8f6a791 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png.import new file mode 100644 index 0000000..0f96565 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbuu8mpgu0l26" +path="res://.godot/imported/f5_firebreather.png-a23ff95f207240416229ba1db2e54c4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_firebreather.png" +dest_files=["res://.godot/imported/f5_firebreather.png-a23ff95f207240416229ba1db2e54c4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png new file mode 100644 index 0000000..cbcebb2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png.import new file mode 100644 index 0000000..1a1a70c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dasi1nwklks5m" +path="res://.godot/imported/f5_flumposaur.png-5148f8f886c69ffeb9727cdc785eba95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_flumposaur.png" +dest_files=["res://.godot/imported/f5_flumposaur.png-5148f8f886c69ffeb9727cdc785eba95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png new file mode 100644 index 0000000..6975ac2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png.import new file mode 100644 index 0000000..1a6cdee --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b42sgorbq3017" +path="res://.godot/imported/f5_general.png-1a0f8ff5f6bc1e45c1da50c931c494fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_general.png" +dest_files=["res://.godot/imported/f5_general.png-1a0f8ff5f6bc1e45c1da50c931c494fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png new file mode 100644 index 0000000..b1c5ca3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png.import new file mode 100644 index 0000000..114594f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chniianhqewo5" +path="res://.godot/imported/f5_genesis.png-b2a233de60bec2d2fcf5012724cc349f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_genesis.png" +dest_files=["res://.godot/imported/f5_genesis.png-b2a233de60bec2d2fcf5012724cc349f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png new file mode 100644 index 0000000..3f754ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png.import new file mode 100644 index 0000000..a02e900 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blma5gxd6ax0a" +path="res://.godot/imported/f5_gibblegup.png-0ff2374ca341809a767c2e1a242dac70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gibblegup.png" +dest_files=["res://.godot/imported/f5_gibblegup.png-0ff2374ca341809a767c2e1a242dac70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png new file mode 100644 index 0000000..d274cef Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png.import new file mode 100644 index 0000000..cce1f0f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd0u7oxfcams5" +path="res://.godot/imported/f5_grandmasterkraigon.png-5fe0e5460176f60846d835997574feed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grandmasterkraigon.png" +dest_files=["res://.godot/imported/f5_grandmasterkraigon.png-5fe0e5460176f60846d835997574feed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png new file mode 100644 index 0000000..64ecedb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png.import new file mode 100644 index 0000000..9815bb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2oa370xeeqw6" +path="res://.godot/imported/f5_grimrock.png-9dfe0378f366f0cb3d47172347ab9bfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_grimrock.png" +dest_files=["res://.godot/imported/f5_grimrock.png-9dfe0378f366f0cb3d47172347ab9bfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png new file mode 100644 index 0000000..b4ca1d7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png.import new file mode 100644 index 0000000..64bcf5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl0xqodohodbu" +path="res://.godot/imported/f5_gro.png-22edebcaadc7ebd299e1ee502875a5e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_gro.png" +dest_files=["res://.godot/imported/f5_gro.png-22edebcaadc7ebd299e1ee502875a5e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png new file mode 100644 index 0000000..413d7f6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png.import new file mode 100644 index 0000000..c0c7102 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8kt45uqu5vs8" +path="res://.godot/imported/f5_juggernaut.png-9e17c7b2c4215dcd0e2e8bbfc5badfba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_juggernaut.png" +dest_files=["res://.godot/imported/f5_juggernaut.png-9e17c7b2c4215dcd0e2e8bbfc5badfba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png new file mode 100644 index 0000000..40cdbf7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png.import new file mode 100644 index 0000000..8fbfcc5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfs637f4327gj" +path="res://.godot/imported/f5_kolossus.png-2103cd028f0ccb3f75bba359c85dc9c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kolossus.png" +dest_files=["res://.godot/imported/f5_kolossus.png-2103cd028f0ccb3f75bba359c85dc9c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png new file mode 100644 index 0000000..d142db6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png.import new file mode 100644 index 0000000..ed5b3d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqya7qvyef3ps" +path="res://.godot/imported/f5_kujata.png-9d0f538512a83796c0f61907a9f880a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_kujata.png" +dest_files=["res://.godot/imported/f5_kujata.png-9d0f538512a83796c0f61907a9f880a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png new file mode 100644 index 0000000..e9e392e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png.import new file mode 100644 index 0000000..6e57d3c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4gbft3hvy2tl" +path="res://.godot/imported/f5_lavalasher.png-9062bf5a9cf8ff720e181a91dad917a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_lavalasher.png" +dest_files=["res://.godot/imported/f5_lavalasher.png-9062bf5a9cf8ff720e181a91dad917a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png new file mode 100644 index 0000000..971df5d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png.import new file mode 100644 index 0000000..923f755 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsyrsrcsecsf7" +path="res://.godot/imported/f5_magma.png-1cb62bc94ba47f4391e3a6ea453abaa4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_magma.png" +dest_files=["res://.godot/imported/f5_magma.png-1cb62bc94ba47f4391e3a6ea453abaa4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png new file mode 100644 index 0000000..8f87d5d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png.import new file mode 100644 index 0000000..bab14bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj08rjkdmnjho" +path="res://.godot/imported/f5_mandrake.png-a41519a2c60e1c42a5256931a755c6de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mandrake.png" +dest_files=["res://.godot/imported/f5_mandrake.png-a41519a2c60e1c42a5256931a755c6de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png new file mode 100644 index 0000000..f6ea46b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png.import new file mode 100644 index 0000000..807200c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://edkkqvtvm1tu" +path="res://.godot/imported/f5_mankatorwarbeast.png-387d860a0566084ffab8476ee6f2948a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mankatorwarbeast.png" +dest_files=["res://.godot/imported/f5_mankatorwarbeast.png-387d860a0566084ffab8476ee6f2948a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png new file mode 100644 index 0000000..0b52606 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png.import new file mode 100644 index 0000000..cb4fae7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dny7by38ojiue" +path="res://.godot/imported/f5_mech.png-1dcf54169bc409e1dfde0a10af07ab59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mech.png" +dest_files=["res://.godot/imported/f5_mech.png-1dcf54169bc409e1dfde0a10af07ab59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png new file mode 100644 index 0000000..98b7a52 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png.import new file mode 100644 index 0000000..9c084fc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcojyk20q45b8" +path="res://.godot/imported/f5_megabrontodon.png-106222bac1890bf341d75cd73d58754f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_megabrontodon.png" +dest_files=["res://.godot/imported/f5_megabrontodon.png-106222bac1890bf341d75cd73d58754f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png new file mode 100644 index 0000000..8091eb5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png.import new file mode 100644 index 0000000..b9a92d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmixq5aj7mwnh" +path="res://.godot/imported/f5_minibeast.png-af105013a71d79efd55fcf49ff0aa04a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_minibeast.png" +dest_files=["res://.godot/imported/f5_minibeast.png-af105013a71d79efd55fcf49ff0aa04a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png new file mode 100644 index 0000000..4e4e69d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png.import new file mode 100644 index 0000000..85da6bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l1txbc15dqgs" +path="res://.godot/imported/f5_molokihuntress.png-62c8361a68cdfe059dbc9caf6c051031.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_molokihuntress.png" +dest_files=["res://.godot/imported/f5_molokihuntress.png-62c8361a68cdfe059dbc9caf6c051031.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png new file mode 100644 index 0000000..fb0a524 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png.import new file mode 100644 index 0000000..2a3b2d0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db63d24gu370k" +path="res://.godot/imported/f5_mythronquest.png-dd9aa7f661e8bf06905f9e020a37c1e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_mythronquest.png" +dest_files=["res://.godot/imported/f5_mythronquest.png-dd9aa7f661e8bf06905f9e020a37c1e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png new file mode 100644 index 0000000..874e89c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png.import new file mode 100644 index 0000000..048aa1c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2e1thcl7gad" +path="res://.godot/imported/f5_omniseer.png-f2f29705092fb905e46444aaf494ca09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_omniseer.png" +dest_files=["res://.godot/imported/f5_omniseer.png-f2f29705092fb905e46444aaf494ca09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png new file mode 100644 index 0000000..2378325 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png.import new file mode 100644 index 0000000..685136a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddl70yllg83dq" +path="res://.godot/imported/f5_orphanoftheaspect.png-16f5112618dbd929cc888025f605b96e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_orphanoftheaspect.png" +dest_files=["res://.godot/imported/f5_orphanoftheaspect.png-16f5112618dbd929cc888025f605b96e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png new file mode 100644 index 0000000..660c9b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png.import new file mode 100644 index 0000000..055c65e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l6hfgpuahk1g" +path="res://.godot/imported/f5_oxalaia.png-a0362acc87fb314cb1e5e4eea5927909.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_oxalaia.png" +dest_files=["res://.godot/imported/f5_oxalaia.png-a0362acc87fb314cb1e5e4eea5927909.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png new file mode 100644 index 0000000..7090818 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png.import new file mode 100644 index 0000000..977f710 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3rw463flj75j" +path="res://.godot/imported/f5_primordialgazer.png-c73cc53ad99c8f5d1272e55b43c96bb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_primordialgazer.png" +dest_files=["res://.godot/imported/f5_primordialgazer.png-c73cc53ad99c8f5d1272e55b43c96bb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png new file mode 100644 index 0000000..1959de8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png.import new file mode 100644 index 0000000..40fc315 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btt0ce6nuugxx" +path="res://.godot/imported/f5_pteryx.png-16ee32de8c8028cdb77e07dbfcec960f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_pteryx.png" +dest_files=["res://.godot/imported/f5_pteryx.png-16ee32de8c8028cdb77e07dbfcec960f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png new file mode 100644 index 0000000..060b38e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png.import new file mode 100644 index 0000000..5207199 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i5vpamp3pqpe" +path="res://.godot/imported/f5_ragebinder.png-159ffca26e05ad63137f0e6292632f7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragebinder.png" +dest_files=["res://.godot/imported/f5_ragebinder.png-159ffca26e05ad63137f0e6292632f7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png new file mode 100644 index 0000000..c568690 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png.import new file mode 100644 index 0000000..7f9e419 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf5ufbjoakhgc" +path="res://.godot/imported/f5_ragnoramk2.png-1a800e805fb466718a60a8ca1a9877b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_ragnoramk2.png" +dest_files=["res://.godot/imported/f5_ragnoramk2.png-1a800e805fb466718a60a8ca1a9877b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png new file mode 100644 index 0000000..1956f51 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png.import new file mode 100644 index 0000000..e813a3e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsxyqt0xfpqd" +path="res://.godot/imported/f5_rancour.png-53262bda5e18495061edbb820b589f40.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rancour.png" +dest_files=["res://.godot/imported/f5_rancour.png-53262bda5e18495061edbb820b589f40.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png new file mode 100644 index 0000000..6a99a6d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png.import new file mode 100644 index 0000000..ab19d60 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdlqruwrluk7j" +path="res://.godot/imported/f5_rex.png-cfbde6584f42f9ac2a1f0d55fc4dc2f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_rex.png" +dest_files=["res://.godot/imported/f5_rex.png-cfbde6584f42f9ac2a1f0d55fc4dc2f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png new file mode 100644 index 0000000..d6aa132 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png.import new file mode 100644 index 0000000..3725437 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccdafbl3x6137" +path="res://.godot/imported/f5_silitharelder.png-dc70fc15acae3c8d4ea73dc334bbbf45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharelder.png" +dest_files=["res://.godot/imported/f5_silitharelder.png-dc70fc15acae3c8d4ea73dc334bbbf45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png new file mode 100644 index 0000000..d1897b2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png.import new file mode 100644 index 0000000..c422a7c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4ajoi5al5sjx" +path="res://.godot/imported/f5_silitharveteran.png-a981bbd5e87c3bcedbb02baddab49a09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharveteran.png" +dest_files=["res://.godot/imported/f5_silitharveteran.png-a981bbd5e87c3bcedbb02baddab49a09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png new file mode 100644 index 0000000..aad1c94 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png.import new file mode 100644 index 0000000..641794e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d06xcxiyep5lv" +path="res://.godot/imported/f5_silitharyoung.png-dd424b2c566a56d16793b6a49d18ec4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_silitharyoung.png" +dest_files=["res://.godot/imported/f5_silitharyoung.png-dd424b2c566a56d16793b6a49d18ec4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png new file mode 100644 index 0000000..a855d1a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png.import new file mode 100644 index 0000000..5a5e6b8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgux101j54syn" +path="res://.godot/imported/f5_sinergyunit.png-20a1fe32379f63652a8d03a35b8de900.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sinergyunit.png" +dest_files=["res://.godot/imported/f5_sinergyunit.png-20a1fe32379f63652a8d03a35b8de900.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png new file mode 100644 index 0000000..9101c4e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png.import new file mode 100644 index 0000000..bcaa26a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2qo6t0215bne" +path="res://.godot/imported/f5_sister.png-f12c6e0a5f121c9e4d872f00a1edfc8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_sister.png" +dest_files=["res://.godot/imported/f5_sister.png-f12c6e0a5f121c9e4d872f00a1edfc8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png new file mode 100644 index 0000000..2b91c5c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png.import new file mode 100644 index 0000000..2c0b472 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bojjmfpeet3ke" +path="res://.godot/imported/f5_spiritharvester.png-0224e09e8677d0bedd0216b5db5c50f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_spiritharvester.png" +dest_files=["res://.godot/imported/f5_spiritharvester.png-0224e09e8677d0bedd0216b5db5c50f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png new file mode 100644 index 0000000..492f56e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png.import new file mode 100644 index 0000000..d6894ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw5y3n5p4wjrn" +path="res://.godot/imported/f5_support.png-0c87bc161bf5669a73b1722394210dcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_support.png" +dest_files=["res://.godot/imported/f5_support.png-0c87bc161bf5669a73b1722394210dcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png new file mode 100644 index 0000000..a81aac3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png.import new file mode 100644 index 0000000..cb66bde --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxs7ptdqwrtqo" +path="res://.godot/imported/f5_tank.png-a5332997f50fbb28501cbb89d8ac34d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tank.png" +dest_files=["res://.godot/imported/f5_tank.png-a5332997f50fbb28501cbb89d8ac34d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png new file mode 100644 index 0000000..9544ca7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png.import new file mode 100644 index 0000000..654ec45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ksivb5gmm2i" +path="res://.godot/imported/f5_thraex.png-5842cd463ce0ce20c2439bf4ac7ff275.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_thraex.png" +dest_files=["res://.godot/imported/f5_thraex.png-5842cd463ce0ce20c2439bf4ac7ff275.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png new file mode 100644 index 0000000..2ea4a45 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png.import new file mode 100644 index 0000000..9aa8fae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwh5j7iwhxuer" +path="res://.godot/imported/f5_tier2general.png-d8ba3542927246166c6af0727f9dcd15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_tier2general.png" +dest_files=["res://.godot/imported/f5_tier2general.png-d8ba3542927246166c6af0727f9dcd15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png new file mode 100644 index 0000000..801c1cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png.import new file mode 100644 index 0000000..c42a56f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gqoqsejk20ot" +path="res://.godot/imported/f5_unstableflump.png-64bc53fe2b192677005aad990a853fc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableflump.png" +dest_files=["res://.godot/imported/f5_unstableflump.png-64bc53fe2b192677005aad990a853fc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png new file mode 100644 index 0000000..8be6d84 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png.import new file mode 100644 index 0000000..d86e3d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnn1phdmi775y" +path="res://.godot/imported/f5_unstableleviathan.png-6704763f12c17afc1da0695fef7957e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_unstableleviathan.png" +dest_files=["res://.godot/imported/f5_unstableleviathan.png-6704763f12c17afc1da0695fef7957e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png new file mode 100644 index 0000000..ea8ec03 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png.import new file mode 100644 index 0000000..bfdcc16 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbvnwqs3mjjb" +path="res://.godot/imported/f5_upgradizon.png-bddec2a0ee7443086a73745072a32b8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_upgradizon.png" +dest_files=["res://.godot/imported/f5_upgradizon.png-bddec2a0ee7443086a73745072a32b8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png new file mode 100644 index 0000000..0eb1b42 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png.import new file mode 100644 index 0000000..398d35f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f3vcwmegynml" +path="res://.godot/imported/f5_valknu.png-45cd82f7e68fc61dac1be96e8a04b66c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_valknu.png" +dest_files=["res://.godot/imported/f5_valknu.png-45cd82f7e68fc61dac1be96e8a04b66c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png new file mode 100644 index 0000000..4392edb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png.import new file mode 100644 index 0000000..7f8c435 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbto6gqcahfdu" +path="res://.godot/imported/f5_vindicator.png-329942df07858cc577522f5bb34c360d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_vindicator.png" +dest_files=["res://.godot/imported/f5_vindicator.png-329942df07858cc577522f5bb34c360d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png new file mode 100644 index 0000000..861c8a0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png.import new file mode 100644 index 0000000..b8a20da --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg28x2b2gh2oc" +path="res://.godot/imported/f5_visionar.png-12d3747a6a59e7e836fdb3643530a791.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_visionar.png" +dest_files=["res://.godot/imported/f5_visionar.png-12d3747a6a59e7e836fdb3643530a791.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png new file mode 100644 index 0000000..8c633d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png.import new file mode 100644 index 0000000..4a4aec9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://busdp8ahthtru" +path="res://.godot/imported/f5_wildinceptor.png-b52ca26f9f382f993d4e007a465a7e77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f5_wildinceptor.png" +dest_files=["res://.godot/imported/f5_wildinceptor.png-b52ca26f9f382f993d4e007a465a7e77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png new file mode 100644 index 0000000..cf13133 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png.import new file mode 100644 index 0000000..7b1eb8b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p3bn08v1gc8j" +path="res://.godot/imported/f6_3rdgeneral.png-acafcfd3d3f0dc3472b28f1e6dd44436.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_3rdgeneral.png" +dest_files=["res://.godot/imported/f6_3rdgeneral.png-acafcfd3d3f0dc3472b28f1e6dd44436.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png new file mode 100644 index 0000000..ecf80d9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png.import new file mode 100644 index 0000000..78b2487 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdgangaijrep7" +path="res://.godot/imported/f6_altgeneral.png-4e072a78ed3f83bdf309701b28df6c98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneral.png" +dest_files=["res://.godot/imported/f6_altgeneral.png-4e072a78ed3f83bdf309701b28df6c98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png new file mode 100644 index 0000000..dc4521b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png.import new file mode 100644 index 0000000..85d4ab0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6nswg21cpokc" +path="res://.godot/imported/f6_altgeneraltier2.png-9845fc485c76b9b75f672473b587b76f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_altgeneraltier2.png" +dest_files=["res://.godot/imported/f6_altgeneraltier2.png-9845fc485c76b9b75f672473b587b76f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png new file mode 100644 index 0000000..6ce8034 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png.import new file mode 100644 index 0000000..40dddfe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://camubix8fenea" +path="res://.godot/imported/f6_arcticrhyno.png-81939971db0fbdfef9424511d510d92b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_arcticrhyno.png" +dest_files=["res://.godot/imported/f6_arcticrhyno.png-81939971db0fbdfef9424511d510d92b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png new file mode 100644 index 0000000..ff55b78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png.import new file mode 100644 index 0000000..946bbaf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l2r3vt612rc2" +path="res://.godot/imported/f6_auroraguardian.png-b367008272d5aa427d5522c89733c8ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_auroraguardian.png" +dest_files=["res://.godot/imported/f6_auroraguardian.png-b367008272d5aa427d5522c89733c8ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png new file mode 100644 index 0000000..56dfb5d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png.import new file mode 100644 index 0000000..1d78d8a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lvdyscibrqqu" +path="res://.godot/imported/f6_blazingspines.png-a86bddd45b24fb35f7849148036989e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_blazingspines.png" +dest_files=["res://.godot/imported/f6_blazingspines.png-a86bddd45b24fb35f7849148036989e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png new file mode 100644 index 0000000..85d2628 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png.import new file mode 100644 index 0000000..cd22b6b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvpmscvxid8od" +path="res://.godot/imported/f6_bloodsurge.png-07c632243cdb6afe1e1c07a4e54be83c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bloodsurge.png" +dest_files=["res://.godot/imported/f6_bloodsurge.png-07c632243cdb6afe1e1c07a4e54be83c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png new file mode 100644 index 0000000..bebe160 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png.import new file mode 100644 index 0000000..b483ac1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr4o4ism3y654" +path="res://.godot/imported/f6_bonechillbarrier.png-f2621b7f8e5371e8dff2cb75aa736a03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bonechillbarrier.png" +dest_files=["res://.godot/imported/f6_bonechillbarrier.png-f2621b7f8e5371e8dff2cb75aa736a03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png new file mode 100644 index 0000000..d2af78a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png.import new file mode 100644 index 0000000..5022961 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://60fc4skmyav4" +path="res://.godot/imported/f6_buildcommon.png-0610746ea1af5f0af627ad838c3430ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildcommon.png" +dest_files=["res://.godot/imported/f6_buildcommon.png-0610746ea1af5f0af627ad838c3430ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png new file mode 100644 index 0000000..88fa03c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png.import new file mode 100644 index 0000000..fc53dea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p6kugwyvowe" +path="res://.godot/imported/f6_buildlegendary.png-12fa65a2558dde0518e240f831d657ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildlegendary.png" +dest_files=["res://.godot/imported/f6_buildlegendary.png-12fa65a2558dde0518e240f831d657ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png new file mode 100644 index 0000000..fa542ab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png.import new file mode 100644 index 0000000..4b7b2bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bthuck6mh3u0j" +path="res://.godot/imported/f6_buildminion.png-37bca2984008d0729bb32611bf175942.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_buildminion.png" +dest_files=["res://.godot/imported/f6_buildminion.png-37bca2984008d0729bb32611bf175942.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png new file mode 100644 index 0000000..4a2e4cd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png.import new file mode 100644 index 0000000..6f4024d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btfuld4s6118k" +path="res://.godot/imported/f6_bur.png-1cf1236eee84c8dbf2a92b3d40311803.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_bur.png" +dest_files=["res://.godot/imported/f6_bur.png-1cf1236eee84c8dbf2a92b3d40311803.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png new file mode 100644 index 0000000..6e9bf5a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png.import new file mode 100644 index 0000000..3ed3d26 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5bm7olqnp1lh" +path="res://.godot/imported/f6_circulus.png-5f4c9aec42493e3b8246ab8a2dc89cdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_circulus.png" +dest_files=["res://.godot/imported/f6_circulus.png-5f4c9aec42493e3b8246ab8a2dc89cdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png new file mode 100644 index 0000000..caae730 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png.import new file mode 100644 index 0000000..1fcf760 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwtq6hjuqo8hu" +path="res://.godot/imported/f6_crystalbeetle.png-b320fa25abb569dc803c0cbffcc156d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_crystalbeetle.png" +dest_files=["res://.godot/imported/f6_crystalbeetle.png-b320fa25abb569dc803c0cbffcc156d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png new file mode 100644 index 0000000..3f4fa9d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png.import new file mode 100644 index 0000000..7b12637 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg2q6s2to30w1" +path="res://.godot/imported/f6_doofybear.png-a0bd79a831d02daf29338e4042c5cc12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_doofybear.png" +dest_files=["res://.godot/imported/f6_doofybear.png-a0bd79a831d02daf29338e4042c5cc12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png new file mode 100644 index 0000000..419edc2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png.import new file mode 100644 index 0000000..8620d05 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgpp15bsx3tdk" +path="res://.godot/imported/f6_draugarlord.png-dd92c9dfa55fcdd343332251611deb04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_draugarlord.png" +dest_files=["res://.godot/imported/f6_draugarlord.png-dd92c9dfa55fcdd343332251611deb04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png new file mode 100644 index 0000000..4510169 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png.import new file mode 100644 index 0000000..4a4b101 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc63edxiie18t" +path="res://.godot/imported/f6_eldersaberspine.png-5dae3c6b046a62ca0941900c532f6f52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_eldersaberspine.png" +dest_files=["res://.godot/imported/f6_eldersaberspine.png-5dae3c6b046a62ca0941900c532f6f52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png new file mode 100644 index 0000000..aef6a96 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png.import new file mode 100644 index 0000000..d3ca771 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnfcf713yjgn4" +path="res://.godot/imported/f6_elklodon.png-b2be1346d780299e78a74f1f32279d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_elklodon.png" +dest_files=["res://.godot/imported/f6_elklodon.png-b2be1346d780299e78a74f1f32279d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png new file mode 100644 index 0000000..6944500 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png.import new file mode 100644 index 0000000..15d9be3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7c2vdjhjvwuf" +path="res://.godot/imported/f6_evilcrystalwisp.png-b193ee6a2238735c79b3481ebb39fdd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_evilcrystalwisp.png" +dest_files=["res://.godot/imported/f6_evilcrystalwisp.png-b193ee6a2238735c79b3481ebb39fdd4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png new file mode 100644 index 0000000..4c29dc3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png.import new file mode 100644 index 0000000..3259483 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b67p2jaqmcbnq" +path="res://.godot/imported/f6_explodingwall.png-da00864c3115e326e0b76c08321652ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_explodingwall.png" +dest_files=["res://.godot/imported/f6_explodingwall.png-da00864c3115e326e0b76c08321652ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png new file mode 100644 index 0000000..8f6c1b3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png.import new file mode 100644 index 0000000..ffc2a86 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5asnik644dws" +path="res://.godot/imported/f6_faiefestive.png-8a614f0bcb31d9be445408c97d101cee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_faiefestive.png" +dest_files=["res://.godot/imported/f6_faiefestive.png-8a614f0bcb31d9be445408c97d101cee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png new file mode 100644 index 0000000..84c92ba Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png.import new file mode 100644 index 0000000..6e53b0a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://utkm6oyl57mu" +path="res://.godot/imported/f6_fenrirwarmaster.png-6c55b23eedae75749537e0a8389572cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwarmaster.png" +dest_files=["res://.godot/imported/f6_fenrirwarmaster.png-6c55b23eedae75749537e0a8389572cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png new file mode 100644 index 0000000..421ac4a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png.import new file mode 100644 index 0000000..a094448 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx35stcjvnhs8" +path="res://.godot/imported/f6_fenrirwerewolf.png-ad63de1c37fb0ff06fd410e43e465bb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_fenrirwerewolf.png" +dest_files=["res://.godot/imported/f6_fenrirwerewolf.png-ad63de1c37fb0ff06fd410e43e465bb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png new file mode 100644 index 0000000..ba939f8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png.import new file mode 100644 index 0000000..0bee701 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doub7spt4feni" +path="res://.godot/imported/f6_freeblade.png-63a9a309057eb3f02358aa717d3a4a86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_freeblade.png" +dest_files=["res://.godot/imported/f6_freeblade.png-63a9a309057eb3f02358aa717d3a4a86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png new file mode 100644 index 0000000..afc8066 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png.import new file mode 100644 index 0000000..d7d5505 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drg8q4ev3xrg7" +path="res://.godot/imported/f6_frostbitehawker.png-3728958046ca2fde3988f8af8534d9f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostbitehawker.png" +dest_files=["res://.godot/imported/f6_frostbitehawker.png-3728958046ca2fde3988f8af8534d9f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png new file mode 100644 index 0000000..930d94d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png.import new file mode 100644 index 0000000..131e0f6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvexpp0w30b4g" +path="res://.godot/imported/f6_frostdrake.png-b2f94ca6c3e4557e1c7e9f2beeabddcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostdrake.png" +dest_files=["res://.godot/imported/f6_frostdrake.png-b2f94ca6c3e4557e1c7e9f2beeabddcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png new file mode 100644 index 0000000..40c3de3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png.import new file mode 100644 index 0000000..b8a24d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0kw6fc1pqau5" +path="res://.godot/imported/f6_frostiva.png-825a24fd5b36db6d1dd0749e094334ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_frostiva.png" +dest_files=["res://.godot/imported/f6_frostiva.png-825a24fd5b36db6d1dd0749e094334ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png new file mode 100644 index 0000000..a6f7110 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png.import new file mode 100644 index 0000000..efd695b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3qdms5ug0j4p" +path="res://.godot/imported/f6_general.png-83b6341166e76fd7544e6065c5e026d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_general.png" +dest_files=["res://.godot/imported/f6_general.png-83b6341166e76fd7544e6065c5e026d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png new file mode 100644 index 0000000..07b81a0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png.import new file mode 100644 index 0000000..0d22247 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w3ppn312kbcn" +path="res://.godot/imported/f6_ghostseraphim.png-4f783dedaba0a6a344f3a4fcea1c3c65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ghostseraphim.png" +dest_files=["res://.godot/imported/f6_ghostseraphim.png-4f783dedaba0a6a344f3a4fcea1c3c65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png new file mode 100644 index 0000000..ba27a0e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png.import new file mode 100644 index 0000000..5949102 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u3283him0tu" +path="res://.godot/imported/f6_grandmasterembla.png-44e895a59cecb17f1a06799fd28610b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_grandmasterembla.png" +dest_files=["res://.godot/imported/f6_grandmasterembla.png-44e895a59cecb17f1a06799fd28610b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png new file mode 100644 index 0000000..147cc78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png.import new file mode 100644 index 0000000..325c803 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy8250khtobkn" +path="res://.godot/imported/f6_gravitywell.png-b54fb4d29549e46482268038ca44c1f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_gravitywell.png" +dest_files=["res://.godot/imported/f6_gravitywell.png-b54fb4d29549e46482268038ca44c1f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png new file mode 100644 index 0000000..1a8b281 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png.import new file mode 100644 index 0000000..c549c38 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2mlo42nehvcu" +path="res://.godot/imported/f6_greatwhitenorth.png-4b66d41f26d6899da2356c41fc70dd07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_greatwhitenorth.png" +dest_files=["res://.godot/imported/f6_greatwhitenorth.png-4b66d41f26d6899da2356c41fc70dd07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png new file mode 100644 index 0000000..a228ad6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png.import new file mode 100644 index 0000000..fe7f287 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqm0mkb5m3hcp" +path="res://.godot/imported/f6_huldra.png-3b08aaeb899ae8d9c5b8a5662fd2e600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_huldra.png" +dest_files=["res://.godot/imported/f6_huldra.png-3b08aaeb899ae8d9c5b8a5662fd2e600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png new file mode 100644 index 0000000..97b6e9a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png.import new file mode 100644 index 0000000..0292ec2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q1tx003ug7am" +path="res://.godot/imported/f6_icedryad.png-146632c2c1c6b8ac12c33250f8022dd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icedryad.png" +dest_files=["res://.godot/imported/f6_icedryad.png-146632c2c1c6b8ac12c33250f8022dd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png new file mode 100644 index 0000000..f8eacac Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png.import new file mode 100644 index 0000000..39bd618 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy8sj1tr0brq6" +path="res://.godot/imported/f6_icehornet.png-db2cb56bd81f7edc6b59b371adeb0dcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icehornet.png" +dest_files=["res://.godot/imported/f6_icehornet.png-db2cb56bd81f7edc6b59b371adeb0dcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png new file mode 100644 index 0000000..ca5bb14 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png.import new file mode 100644 index 0000000..ea19371 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5be62p8dhldb" +path="res://.godot/imported/f6_icy.png-5283db2ad5ba93d052d778fbfb9fff65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_icy.png" +dest_files=["res://.godot/imported/f6_icy.png-5283db2ad5ba93d052d778fbfb9fff65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png new file mode 100644 index 0000000..6320e3d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png.import new file mode 100644 index 0000000..cd5574c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://svvvx37clbwv" +path="res://.godot/imported/f6_ilenamk2.png-6ed8d72a65cd2d04ab7352d160c63290.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ilenamk2.png" +dest_files=["res://.godot/imported/f6_ilenamk2.png-6ed8d72a65cd2d04ab7352d160c63290.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png new file mode 100644 index 0000000..31a5c53 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png.import new file mode 100644 index 0000000..a125cf5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ej4u053lvq13" +path="res://.godot/imported/f6_justice.png-748e21dcf02219fe9dc86afae775e08f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_justice.png" +dest_files=["res://.godot/imported/f6_justice.png-748e21dcf02219fe9dc86afae775e08f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png new file mode 100644 index 0000000..cb780c9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png.import new file mode 100644 index 0000000..421ecb4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4dcwa3lp20bk" +path="res://.godot/imported/f6_kindredhunter.png-6668d22f1e85d7de879cbc1fc1be86f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_kindredhunter.png" +dest_files=["res://.godot/imported/f6_kindredhunter.png-6668d22f1e85d7de879cbc1fc1be86f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png new file mode 100644 index 0000000..5fa23e5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png.import new file mode 100644 index 0000000..135079c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv613dfa1js0f" +path="res://.godot/imported/f6_mech.png-7c8ee6289b0ce5ee92af6de6eb966b09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mech.png" +dest_files=["res://.godot/imported/f6_mech.png-7c8ee6289b0ce5ee92af6de6eb966b09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png new file mode 100644 index 0000000..ffba594 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png.import new file mode 100644 index 0000000..e920cd9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsg1157epqvl3" +path="res://.godot/imported/f6_minitreant.png-fd9a79f0666d247f2117ff2a504bbd26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_minitreant.png" +dest_files=["res://.godot/imported/f6_minitreant.png-fd9a79f0666d247f2117ff2a504bbd26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png new file mode 100644 index 0000000..5f1cbe8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png.import new file mode 100644 index 0000000..749202e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fo32f2w452e5" +path="res://.godot/imported/f6_motherofdrakes.png-d2fc4ebdfed117da655cb1f6aed4ecc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_motherofdrakes.png" +dest_files=["res://.godot/imported/f6_motherofdrakes.png-d2fc4ebdfed117da655cb1f6aed4ecc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png new file mode 100644 index 0000000..9fe8444 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png.import new file mode 100644 index 0000000..62eeb99 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0tro5wcjfcdx" +path="res://.godot/imported/f6_myriad.png-4ac76a4c3d3c22661b8607c37f2e0d3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_myriad.png" +dest_files=["res://.godot/imported/f6_myriad.png-4ac76a4c3d3c22661b8607c37f2e0d3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png new file mode 100644 index 0000000..3cf3e23 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png.import new file mode 100644 index 0000000..3b7385f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o2ixglu8rf68" +path="res://.godot/imported/f6_mythronquest.png-533f4cfe6c53c13cb6b0dfc300c92668.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_mythronquest.png" +dest_files=["res://.godot/imported/f6_mythronquest.png-533f4cfe6c53c13cb6b0dfc300c92668.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png new file mode 100644 index 0000000..7eaff30 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png.import new file mode 100644 index 0000000..9646943 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be843e171y5sa" +path="res://.godot/imported/f6_perfectreflection.png-e106289e9424ad5486d7965aac2b06ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_perfectreflection.png" +dest_files=["res://.godot/imported/f6_perfectreflection.png-e106289e9424ad5486d7965aac2b06ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png new file mode 100644 index 0000000..c857777 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png.import new file mode 100644 index 0000000..aba8088 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cty4oomcw7qa3" +path="res://.godot/imported/f6_ravager.png-c473db6cb0d9e3f8b748935fa112a004.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ravager.png" +dest_files=["res://.godot/imported/f6_ravager.png-c473db6cb0d9e3f8b748935fa112a004.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png new file mode 100644 index 0000000..095427e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png.import new file mode 100644 index 0000000..22e2767 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csutq0aijb2v3" +path="res://.godot/imported/f6_seismicelemental.png-cc341ebb81ed75087bab8dafaf2da03c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_seismicelemental.png" +dest_files=["res://.godot/imported/f6_seismicelemental.png-cc341ebb81ed75087bab8dafaf2da03c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png new file mode 100644 index 0000000..2a3836c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png.import new file mode 100644 index 0000000..75ebec8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpkaw0cqchvc1" +path="res://.godot/imported/f6_sentinel.png-fc9bf07b7074e2fa8d194f155b0b7f23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sentinel.png" +dest_files=["res://.godot/imported/f6_sentinel.png-fc9bf07b7074e2fa8d194f155b0b7f23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png new file mode 100644 index 0000000..8650bf8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png.import new file mode 100644 index 0000000..e6a421c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmgjh0fgo2j7e" +path="res://.godot/imported/f6_shadowvespyr.png-8e7285d127d6dd7fe0502a52378ff3e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_shadowvespyr.png" +dest_files=["res://.godot/imported/f6_shadowvespyr.png-8e7285d127d6dd7fe0502a52378ff3e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png new file mode 100644 index 0000000..5a9f7c9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png.import new file mode 100644 index 0000000..1ebed32 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdbvvxderxhsa" +path="res://.godot/imported/f6_sinergyunit.png-53fb322b51dc01d15a56aba82fe9e8e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sinergyunit.png" +dest_files=["res://.godot/imported/f6_sinergyunit.png-53fb322b51dc01d15a56aba82fe9e8e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png new file mode 100644 index 0000000..77029b0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png.import new file mode 100644 index 0000000..ce1cc6c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdqhvj42iqvsd" +path="res://.godot/imported/f6_sister.png-7507238b881c73da34eab369703b250f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sister.png" +dest_files=["res://.godot/imported/f6_sister.png-7507238b881c73da34eab369703b250f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png new file mode 100644 index 0000000..f79708e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png.import new file mode 100644 index 0000000..f63a0bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfecvxasprqg" +path="res://.godot/imported/f6_sleetdasher.png-7309d02741af45751e26c5dbb18f6381.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_sleetdasher.png" +dest_files=["res://.godot/imported/f6_sleetdasher.png-7309d02741af45751e26c5dbb18f6381.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png new file mode 100644 index 0000000..99923f5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png.import new file mode 100644 index 0000000..21b1085 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvdr680316l5h" +path="res://.godot/imported/f6_snowchaser.png-7471fc1da53e544d3a23d99dd2fc7300.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchaser.png" +dest_files=["res://.godot/imported/f6_snowchaser.png-7471fc1da53e544d3a23d99dd2fc7300.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png new file mode 100644 index 0000000..906d804 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png.import new file mode 100644 index 0000000..7a2930c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt8wasf0udok7" +path="res://.godot/imported/f6_snowchasermk2.png-c2e807a40e180ccbce53e9a07e36db4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowchasermk2.png" +dest_files=["res://.godot/imported/f6_snowchasermk2.png-c2e807a40e180ccbce53e9a07e36db4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png new file mode 100644 index 0000000..a1b1e10 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png.import new file mode 100644 index 0000000..a236d11 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqv8t8jhigeeh" +path="res://.godot/imported/f6_snowman.png-a1481ca73268ab125380533efe5af165.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowman.png" +dest_files=["res://.godot/imported/f6_snowman.png-a1481ca73268ab125380533efe5af165.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png new file mode 100644 index 0000000..5809816 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png.import new file mode 100644 index 0000000..4161e1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qrtytb6dqxmc" +path="res://.godot/imported/f6_snowrippler.png-02cf002a1d0dbf798ba11cb9897b5ab1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowrippler.png" +dest_files=["res://.godot/imported/f6_snowrippler.png-02cf002a1d0dbf798ba11cb9897b5ab1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png new file mode 100644 index 0000000..6fd4cf0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png.import new file mode 100644 index 0000000..8dfcc16 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db20t6pxhib0t" +path="res://.godot/imported/f6_snowwyvern.png-4be4ae3260c9bb858a63e2513c1e6ced.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_snowwyvern.png" +dest_files=["res://.godot/imported/f6_snowwyvern.png-4be4ae3260c9bb858a63e2513c1e6ced.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png new file mode 100644 index 0000000..37b4b89 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png.import new file mode 100644 index 0000000..524b565 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4h5gj4xuroh6" +path="res://.godot/imported/f6_spiritwolf.png-39460b93881b94f9f8d8814abca42193.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_spiritwolf.png" +dest_files=["res://.godot/imported/f6_spiritwolf.png-39460b93881b94f9f8d8814abca42193.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png new file mode 100644 index 0000000..35724ce Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png.import new file mode 100644 index 0000000..3315606 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqi78lq0ohgr2" +path="res://.godot/imported/f6_tier2general.png-62eb86f604f3f4519c128a3408b0e78e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tier2general.png" +dest_files=["res://.godot/imported/f6_tier2general.png-62eb86f604f3f4519c128a3408b0e78e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png new file mode 100644 index 0000000..5e74fcc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png.import new file mode 100644 index 0000000..0f0a031 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd2axpepvi1ol" +path="res://.godot/imported/f6_treant.png-95e81f5a2213568a86288af968ad62b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_treant.png" +dest_files=["res://.godot/imported/f6_treant.png-95e81f5a2213568a86288af968ad62b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png new file mode 100644 index 0000000..2d8c453 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png.import new file mode 100644 index 0000000..7b653cd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djm2xmbpdryc2" +path="res://.godot/imported/f6_tundraguardian.png-86e0cc572c02ebbd83e67c8c6bd0d8b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_tundraguardian.png" +dest_files=["res://.godot/imported/f6_tundraguardian.png-86e0cc572c02ebbd83e67c8c6bd0d8b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png new file mode 100644 index 0000000..299f3ec Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png.import new file mode 100644 index 0000000..1f41de5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpasepckfbho7" +path="res://.godot/imported/f6_vanarsentinel.png-0b156f6e101758298fa1ee40d83b966e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_vanarsentinel.png" +dest_files=["res://.godot/imported/f6_vanarsentinel.png-0b156f6e101758298fa1ee40d83b966e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png new file mode 100644 index 0000000..606d9ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png.import new file mode 100644 index 0000000..1376101 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l5mkpn6lhb7h" +path="res://.godot/imported/f6_voiceofthewind.png-4c67c43dc6ce33ebe4e2f73739c4f5f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_voiceofthewind.png" +dest_files=["res://.godot/imported/f6_voiceofthewind.png-4c67c43dc6ce33ebe4e2f73739c4f5f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png new file mode 100644 index 0000000..9d62b76 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png.import new file mode 100644 index 0000000..b86d467 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdbfjix43ve1i" +path="res://.godot/imported/f6_waterbear.png-1cfd1e234cd857e052b56201921ea7e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterbear.png" +dest_files=["res://.godot/imported/f6_waterbear.png-1cfd1e234cd857e052b56201921ea7e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png new file mode 100644 index 0000000..b8b7499 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png.import new file mode 100644 index 0000000..fad5539 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bha4qdbr26vxl" +path="res://.godot/imported/f6_waterelemental.png-b8c0a81fc652df2bc8e6c2d28aa41f31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_waterelemental.png" +dest_files=["res://.godot/imported/f6_waterelemental.png-b8c0a81fc652df2bc8e6c2d28aa41f31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png new file mode 100644 index 0000000..714bda4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png.import new file mode 100644 index 0000000..e32a6c9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdoxqq3rcklx4" +path="res://.godot/imported/f6_whitewyvern.png-8df38feed03bd1bd44a20e45cda689ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_whitewyvern.png" +dest_files=["res://.godot/imported/f6_whitewyvern.png-8df38feed03bd1bd44a20e45cda689ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png new file mode 100644 index 0000000..2d0573c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png.import new file mode 100644 index 0000000..c69d2d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgcqo4thrjdf1" +path="res://.godot/imported/f6_wolfraven.png-efdba408785b46f0430663d7c797bff2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_wolfraven.png" +dest_files=["res://.godot/imported/f6_wolfraven.png-efdba408785b46f0430663d7c797bff2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png new file mode 100644 index 0000000..20df20a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png.import new file mode 100644 index 0000000..358214e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qrl0fhcd6yij" +path="res://.godot/imported/f6_ynuyttracker.png-69ddacdf5e5867a8cbba0795fbf50770.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuyttracker.png" +dest_files=["res://.godot/imported/f6_ynuyttracker.png-69ddacdf5e5867a8cbba0795fbf50770.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png new file mode 100644 index 0000000..3076713 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png.import new file mode 100644 index 0000000..85ce259 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4qbhlnmkr67n" +path="res://.godot/imported/f6_ynuytunleashed.png-f54a1f9eefd74b552ea06b055a254ff7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytunleashed.png" +dest_files=["res://.godot/imported/f6_ynuytunleashed.png-f54a1f9eefd74b552ea06b055a254ff7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png new file mode 100644 index 0000000..a11e28c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png.import new file mode 100644 index 0000000..68c26db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fqf1ua6hob2p" +path="res://.godot/imported/f6_ynuytwarlock.png-e177de485d84612388aa9bb61b1d867d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/f6_ynuytwarlock.png" +dest_files=["res://.godot/imported/f6_ynuytwarlock.png-e177de485d84612388aa9bb61b1d867d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png new file mode 100644 index 0000000..f424256 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png.import new file mode 100644 index 0000000..3bd1b43 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2fbxvu45ypqf" +path="res://.godot/imported/neutral_abjudicator.png-bef0adf03eb1a75b2caa529677825b13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_abjudicator.png" +dest_files=["res://.godot/imported/neutral_abjudicator.png-bef0adf03eb1a75b2caa529677825b13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png new file mode 100644 index 0000000..c2a2068 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png.import new file mode 100644 index 0000000..539cd6b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crpvxrufm6uf4" +path="res://.godot/imported/neutral_aer.png-97aa22518c972a2532c46cee4719a701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aer.png" +dest_files=["res://.godot/imported/neutral_aer.png-97aa22518c972a2532c46cee4719a701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png new file mode 100644 index 0000000..88961f2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png.import new file mode 100644 index 0000000..548d849 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crqq8clomsky1" +path="res://.godot/imported/neutral_aethermaster.png-3170b8a8c21e08313c5b9e5555cc87c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_aethermaster.png" +dest_files=["res://.godot/imported/neutral_aethermaster.png-3170b8a8c21e08313c5b9e5555cc87c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png new file mode 100644 index 0000000..22b6870 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png.import new file mode 100644 index 0000000..24ed6b8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjvn0y5biukj0" +path="res://.godot/imported/neutral_alterrexx.png-563e95292eb41a9a37d47afde3e38910.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_alterrexx.png" +dest_files=["res://.godot/imported/neutral_alterrexx.png-563e95292eb41a9a37d47afde3e38910.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png new file mode 100644 index 0000000..e0f2659 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png.import new file mode 100644 index 0000000..3c8910c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl33qqjqgkrec" +path="res://.godot/imported/neutral_amu.png-0048e86c1f716da8e9b818a8d534d579.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_amu.png" +dest_files=["res://.godot/imported/neutral_amu.png-0048e86c1f716da8e9b818a8d534d579.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png new file mode 100644 index 0000000..e353054 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png.import new file mode 100644 index 0000000..0143f82 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcqj55ssh3uya" +path="res://.godot/imported/neutral_arakiheadhunter.png-57461c28a6b08deca4c094dae65c51d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arakiheadhunter.png" +dest_files=["res://.godot/imported/neutral_arakiheadhunter.png-57461c28a6b08deca4c094dae65c51d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png new file mode 100644 index 0000000..dbb7803 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png.import new file mode 100644 index 0000000..bd31b44 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lg70nc21jx3y" +path="res://.godot/imported/neutral_arrowwhistler.png-a06c589e742ffb5657df1c557cb1c39b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_arrowwhistler.png" +dest_files=["res://.godot/imported/neutral_arrowwhistler.png-a06c589e742ffb5657df1c557cb1c39b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png new file mode 100644 index 0000000..a7902a4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png.import new file mode 100644 index 0000000..4794160 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbrq3qnxs1f12" +path="res://.godot/imported/neutral_artificer.png-08f7a0a721ce9543bf442c099655fdce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificer.png" +dest_files=["res://.godot/imported/neutral_artificer.png-08f7a0a721ce9543bf442c099655fdce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png new file mode 100644 index 0000000..0f652e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png.import new file mode 100644 index 0000000..41a612a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccj6ksjpgjhjw" +path="res://.godot/imported/neutral_artificereshaper.png-4f073aa8b951c24906908d2a0cedfbd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_artificereshaper.png" +dest_files=["res://.godot/imported/neutral_artificereshaper.png-4f073aa8b951c24906908d2a0cedfbd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png new file mode 100644 index 0000000..91d62f7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png.import new file mode 100644 index 0000000..76c80e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bocgq77t1ney1" +path="res://.godot/imported/neutral_ashmephyt.png-f5ceabdcc30b0523f94410ebe380d119.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ashmephyt.png" +dest_files=["res://.godot/imported/neutral_ashmephyt.png-f5ceabdcc30b0523f94410ebe380d119.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png new file mode 100644 index 0000000..2a1dbf3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png.import new file mode 100644 index 0000000..de3eb68 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cylb1tub7g63t" +path="res://.godot/imported/neutral_astralcrusader.png-636dcaa8096c79d9127bf29c25dbfb3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralcrusader.png" +dest_files=["res://.godot/imported/neutral_astralcrusader.png-636dcaa8096c79d9127bf29c25dbfb3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png new file mode 100644 index 0000000..b1b597a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png.import new file mode 100644 index 0000000..f801458 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by4rm67mrqfcv" +path="res://.godot/imported/neutral_astralprime.png-5ec3cdeba49e26a47ccb06eeb4eac3b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_astralprime.png" +dest_files=["res://.godot/imported/neutral_astralprime.png-5ec3cdeba49e26a47ccb06eeb4eac3b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png new file mode 100644 index 0000000..21a985a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png.import new file mode 100644 index 0000000..9df9604 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dashahigpu6bv" +path="res://.godot/imported/neutral_azureherald.png-a3a671a85047b38973eafec7dd716d3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_azureherald.png" +dest_files=["res://.godot/imported/neutral_azureherald.png-a3a671a85047b38973eafec7dd716d3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png new file mode 100644 index 0000000..919db08 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png.import new file mode 100644 index 0000000..6d50633 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfft50bs18xsm" +path="res://.godot/imported/neutral_bastion.png-3e7430512c19687039ef5882fdbb2dda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bastion.png" +dest_files=["res://.godot/imported/neutral_bastion.png-3e7430512c19687039ef5882fdbb2dda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png new file mode 100644 index 0000000..2e5e4af Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png.import new file mode 100644 index 0000000..8c00c56 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh5ywpghduahy" +path="res://.godot/imported/neutral_beastcavern.png-ad518b61c30e431001c131750e197ea8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastcavern.png" +dest_files=["res://.godot/imported/neutral_beastcavern.png-ad518b61c30e431001c131750e197ea8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png new file mode 100644 index 0000000..bfb5f5a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png.import new file mode 100644 index 0000000..588c558 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3j2llq285m0g" +path="res://.godot/imported/neutral_beastdarkharbinger.png-5f8b917eb2f7b4cd306c9407f5461f14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastdarkharbinger.png" +dest_files=["res://.godot/imported/neutral_beastdarkharbinger.png-5f8b917eb2f7b4cd306c9407f5461f14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png new file mode 100644 index 0000000..1434290 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png.import new file mode 100644 index 0000000..bd3e67b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6watiyj7vmak" +path="res://.godot/imported/neutral_beastmaster.png-b8cd6e5dd484d382869407ae17c63af7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmaster.png" +dest_files=["res://.godot/imported/neutral_beastmaster.png-b8cd6e5dd484d382869407ae17c63af7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png new file mode 100644 index 0000000..428918e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png.import new file mode 100644 index 0000000..c4dc830 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8lfjkgqbr5p3" +path="res://.godot/imported/neutral_beastmirkwooddevourer.png-aa0bc97e7b24dfdc3bb65ece9a5da135.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastmirkwooddevourer.png" +dest_files=["res://.godot/imported/neutral_beastmirkwooddevourer.png-aa0bc97e7b24dfdc3bb65ece9a5da135.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png new file mode 100644 index 0000000..b117cc6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png.import new file mode 100644 index 0000000..29c7b7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbevwwuadcb82" +path="res://.godot/imported/neutral_beastphasehound.png-055560738d5d469968d1c49b3e6e6b5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastphasehound.png" +dest_files=["res://.godot/imported/neutral_beastphasehound.png-055560738d5d469968d1c49b3e6e6b5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png new file mode 100644 index 0000000..7a0d94d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png.import new file mode 100644 index 0000000..6e8e73e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c21sl55doroe2" +path="res://.godot/imported/neutral_beastrepulsion.png-a53d7415921ca030957093cd370a4654.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastrepulsion.png" +dest_files=["res://.godot/imported/neutral_beastrepulsion.png-a53d7415921ca030957093cd370a4654.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png new file mode 100644 index 0000000..7ea046e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png.import new file mode 100644 index 0000000..a32bb9a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhncpvtsdeytf" +path="res://.godot/imported/neutral_beastsaberspinetiger.png-172dc5cc47cde0eb8edbc999e9b3b6a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastsaberspinetiger.png" +dest_files=["res://.godot/imported/neutral_beastsaberspinetiger.png-172dc5cc47cde0eb8edbc999e9b3b6a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png new file mode 100644 index 0000000..1ea2117 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png.import new file mode 100644 index 0000000..9ea6c66 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqhjwmwyty1h7" +path="res://.godot/imported/neutral_beastswamp.png-e07e8eee9a2ba36c91664e5fede90c9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_beastswamp.png" +dest_files=["res://.godot/imported/neutral_beastswamp.png-e07e8eee9a2ba36c91664e5fede90c9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png new file mode 100644 index 0000000..60301c5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png.import new file mode 100644 index 0000000..1e2d178 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://581qrblm0c4r" +path="res://.godot/imported/neutral_blacklocust.png-b63009989f539a4f949b0beb9bcce111.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blacklocust.png" +dest_files=["res://.godot/imported/neutral_blacklocust.png-b63009989f539a4f949b0beb9bcce111.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png new file mode 100644 index 0000000..d1298c1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png.import new file mode 100644 index 0000000..b527458 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://si0du0q5nr44" +path="res://.godot/imported/neutral_blisteringscorn.png-6c15dc19badd06e4e664e3676a02b6d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blisteringscorn.png" +dest_files=["res://.godot/imported/neutral_blisteringscorn.png-6c15dc19badd06e4e664e3676a02b6d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png new file mode 100644 index 0000000..800036f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png.import new file mode 100644 index 0000000..7f02ee5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhhdwfamto0gx" +path="res://.godot/imported/neutral_bloodletter.png-af402bfa48f7686b665155b3b08847ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodletter.png" +dest_files=["res://.godot/imported/neutral_bloodletter.png-af402bfa48f7686b665155b3b08847ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png new file mode 100644 index 0000000..3685665 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png.import new file mode 100644 index 0000000..ba9f441 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb1b3yhg8jo5v" +path="res://.godot/imported/neutral_bloodstonealchemist.png-5850d459f35f255c38b4925a10f70149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bloodstonealchemist.png" +dest_files=["res://.godot/imported/neutral_bloodstonealchemist.png-5850d459f35f255c38b4925a10f70149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png new file mode 100644 index 0000000..7f7ed69 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png.import new file mode 100644 index 0000000..e97258a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctujpqijso2tx" +path="res://.godot/imported/neutral_blueconjurer.png-d4639f7f933c1462e68cb248236bcc12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_blueconjurer.png" +dest_files=["res://.godot/imported/neutral_blueconjurer.png-d4639f7f933c1462e68cb248236bcc12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png new file mode 100644 index 0000000..b997739 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png.import new file mode 100644 index 0000000..e63044f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1i0p2yh05kdr" +path="res://.godot/imported/neutral_bonereaper.png-e1115c865ef32cd3a14cd91b7f364311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_bonereaper.png" +dest_files=["res://.godot/imported/neutral_bonereaper.png-e1115c865ef32cd3a14cd91b7f364311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png new file mode 100644 index 0000000..b394acf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png.import new file mode 100644 index 0000000..6ec619f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beikqgbhimlax" +path="res://.godot/imported/neutral_boulderbreach.png-c2f163ef2106901d23870404c14a44ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderbreach.png" +dest_files=["res://.godot/imported/neutral_boulderbreach.png-c2f163ef2106901d23870404c14a44ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png new file mode 100644 index 0000000..dfada7e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png.import new file mode 100644 index 0000000..40ffa1b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjm4gmf87qi1t" +path="res://.godot/imported/neutral_boulderhurler.png-3a6143f94c48d70012441f637e549949.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_boulderhurler.png" +dest_files=["res://.godot/imported/neutral_boulderhurler.png-3a6143f94c48d70012441f637e549949.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png new file mode 100644 index 0000000..2f412c7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png.import new file mode 100644 index 0000000..1446f00 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbt1uu8pkpnvk" +path="res://.godot/imported/neutral_buildcommon.png-aaffa38c5b591fadc997f389ba49acb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildcommon.png" +dest_files=["res://.godot/imported/neutral_buildcommon.png-aaffa38c5b591fadc997f389ba49acb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png new file mode 100644 index 0000000..ad47a7c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png.import new file mode 100644 index 0000000..8630e69 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw3iyyqqyhn48" +path="res://.godot/imported/neutral_buildepic.png-4698a0e8cdaf86d9a22a35d57164b527.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildepic.png" +dest_files=["res://.godot/imported/neutral_buildepic.png-4698a0e8cdaf86d9a22a35d57164b527.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png new file mode 100644 index 0000000..b807c4e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png.import new file mode 100644 index 0000000..d0eeacb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jl1myu54ygex" +path="res://.godot/imported/neutral_buildminion.png-f712a5f8196e8c3678779a1b644ef465.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_buildminion.png" +dest_files=["res://.godot/imported/neutral_buildminion.png-f712a5f8196e8c3678779a1b644ef465.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png new file mode 100644 index 0000000..820c376 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png.import new file mode 100644 index 0000000..403e9a5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lbtaf3680sw1" +path="res://.godot/imported/neutral_calculator.png-2de3d9700c4a1a07bbf91dfff07ca42f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_calculator.png" +dest_files=["res://.godot/imported/neutral_calculator.png-2de3d9700c4a1a07bbf91dfff07ca42f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png new file mode 100644 index 0000000..d7f98bd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png.import new file mode 100644 index 0000000..f9bdc81 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btrixbc140r58" +path="res://.godot/imported/neutral_capriciouswarrior.png-82b196e1818c13b9282d28d3b089f4f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_capriciouswarrior.png" +dest_files=["res://.godot/imported/neutral_capriciouswarrior.png-82b196e1818c13b9282d28d3b089f4f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png new file mode 100644 index 0000000..d37f6a4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png.import new file mode 100644 index 0000000..d1c50d6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cal5hcf4snkxx" +path="res://.godot/imported/neutral_captainhankheart.png-96a3900b7246d79502a7379867ff223d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_captainhankheart.png" +dest_files=["res://.godot/imported/neutral_captainhankheart.png-96a3900b7246d79502a7379867ff223d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png new file mode 100644 index 0000000..82a3756 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png.import new file mode 100644 index 0000000..c41a360 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deohbu7eqst1x" +path="res://.godot/imported/neutral_celebrant.png-c801553d782deb0a5a41f34e7d18a399.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_celebrant.png" +dest_files=["res://.godot/imported/neutral_celebrant.png-c801553d782deb0a5a41f34e7d18a399.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png new file mode 100644 index 0000000..1191696 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png.import new file mode 100644 index 0000000..70c1b7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1msb72wjt6ex" +path="res://.godot/imported/neutral_chakkram.png-91573777dc051930e4c15b2ff56adf33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chakkram.png" +dest_files=["res://.godot/imported/neutral_chakkram.png-91573777dc051930e4c15b2ff56adf33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png new file mode 100644 index 0000000..d59775e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png.import new file mode 100644 index 0000000..e217e9d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bysgddnb5irct" +path="res://.godot/imported/neutral_chaoselemental.png-4827c854402015ecf5dd9dbd14322283.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chaoselemental.png" +dest_files=["res://.godot/imported/neutral_chaoselemental.png-4827c854402015ecf5dd9dbd14322283.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png new file mode 100644 index 0000000..414999c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png.import new file mode 100644 index 0000000..cf1ec33 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmy0kdmj22skj" +path="res://.godot/imported/neutral_chloroara.png-7a8af750236938195733edd58278a35e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_chloroara.png" +dest_files=["res://.godot/imported/neutral_chloroara.png-7a8af750236938195733edd58278a35e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png new file mode 100644 index 0000000..9938c29 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png.import new file mode 100644 index 0000000..f54e6e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4801l37x22n8" +path="res://.godot/imported/neutral_contentiousbrute.png-ec167de5fb8fea60aa5c44b23c84bdc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_contentiousbrute.png" +dest_files=["res://.godot/imported/neutral_contentiousbrute.png-ec167de5fb8fea60aa5c44b23c84bdc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png new file mode 100644 index 0000000..1d4f24b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png.import new file mode 100644 index 0000000..af5cfaa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duv713mn1s67b" +path="res://.godot/imported/neutral_crimsonmystic.png-6d2fe9a1656ac636eb9185a75143627e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_crimsonmystic.png" +dest_files=["res://.godot/imported/neutral_crimsonmystic.png-6d2fe9a1656ac636eb9185a75143627e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png new file mode 100644 index 0000000..60b6c7a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png.import new file mode 100644 index 0000000..143cae8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqe13m668q54x" +path="res://.godot/imported/neutral_critterc.png-2fb6754999d61b10bcd9b482019d4f51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterc.png" +dest_files=["res://.godot/imported/neutral_critterc.png-2fb6754999d61b10bcd9b482019d4f51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png new file mode 100644 index 0000000..c462916 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png.import new file mode 100644 index 0000000..e3cebef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btei0is52jgyt" +path="res://.godot/imported/neutral_critterd.png-aba1b627df6117fefb5ecd29c3b44ccf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_critterd.png" +dest_files=["res://.godot/imported/neutral_critterd.png-aba1b627df6117fefb5ecd29c3b44ccf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png new file mode 100644 index 0000000..a87d318 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png.import new file mode 100644 index 0000000..7b0e4a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw74qqp0atd7d" +path="res://.godot/imported/neutral_cryptographer.png-4319733d06af5575370953f3b6a0d987.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_cryptographer.png" +dest_files=["res://.godot/imported/neutral_cryptographer.png-4319733d06af5575370953f3b6a0d987.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png new file mode 100644 index 0000000..949ab4f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png.import new file mode 100644 index 0000000..cec767d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5cfs55gqkb67" +path="res://.godot/imported/neutral_dagona.png-a60fd5f02c4d76c4eba171d2343d42cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagona.png" +dest_files=["res://.godot/imported/neutral_dagona.png-a60fd5f02c4d76c4eba171d2343d42cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png new file mode 100644 index 0000000..a9bbf9c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png.import new file mode 100644 index 0000000..eab79f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfdlilryvd2rd" +path="res://.godot/imported/neutral_dagonafish.png-63bd7123994d125d208b2e5a084192d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dagonafish.png" +dest_files=["res://.godot/imported/neutral_dagonafish.png-63bd7123994d125d208b2e5a084192d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png new file mode 100644 index 0000000..2ad5b3f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png.import new file mode 100644 index 0000000..fa92142 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwvrpypyaxekf" +path="res://.godot/imported/neutral_darknemesis.png-71e3dea45b17abf04602b6cdff3735cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_darknemesis.png" +dest_files=["res://.godot/imported/neutral_darknemesis.png-71e3dea45b17abf04602b6cdff3735cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png new file mode 100644 index 0000000..faabae2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png.import new file mode 100644 index 0000000..3187fa2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blik770mwcw7b" +path="res://.godot/imported/neutral_daywatcher.png-7c45f13b4136ad6aee64ef11d92fb681.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_daywatcher.png" +dest_files=["res://.godot/imported/neutral_daywatcher.png-7c45f13b4136ad6aee64ef11d92fb681.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png new file mode 100644 index 0000000..c06d1e4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png.import new file mode 100644 index 0000000..480adef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kyx8mjgb0fku" +path="res://.godot/imported/neutral_deathblighter.png-2b2c3212923c12dfee07d52c2989e211.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deathblighter.png" +dest_files=["res://.godot/imported/neutral_deathblighter.png-2b2c3212923c12dfee07d52c2989e211.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png new file mode 100644 index 0000000..0075889 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png.import new file mode 100644 index 0000000..71ac166 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2gjmd7lvdpw5" +path="res://.godot/imported/neutral_deceptib0t.png-ed5c59b9ccf3707bc9bb9d64931fc59f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_deceptib0t.png" +dest_files=["res://.godot/imported/neutral_deceptib0t.png-ed5c59b9ccf3707bc9bb9d64931fc59f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png new file mode 100644 index 0000000..88c368c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png.import new file mode 100644 index 0000000..fb52dfd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wkf4r03f8n8g" +path="res://.godot/imported/neutral_dex.png-b0640587bfbb74173860f5e92624f7f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dex.png" +dest_files=["res://.godot/imported/neutral_dex.png-b0640587bfbb74173860f5e92624f7f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png new file mode 100644 index 0000000..0cfe347 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png.import new file mode 100644 index 0000000..008b003 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv4wmc35xyl1p" +path="res://.godot/imported/neutral_diamondgolem.png-76e762155e88475563af6c9d4420cb0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_diamondgolem.png" +dest_files=["res://.godot/imported/neutral_diamondgolem.png-76e762155e88475563af6c9d4420cb0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png new file mode 100644 index 0000000..192c2ea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png.import new file mode 100644 index 0000000..64178de --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsvk1ksav0f2y" +path="res://.godot/imported/neutral_dilotas_attack.png-da86c23aad043014f1759441ad4ed3dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dilotas_attack.png" +dest_files=["res://.godot/imported/neutral_dilotas_attack.png-da86c23aad043014f1759441ad4ed3dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png new file mode 100644 index 0000000..9180802 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png.import new file mode 100644 index 0000000..32d1d6a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjtvp0vn6c3tb" +path="res://.godot/imported/neutral_dreamgazer.png-f9bea017f146fa59983bebde662261b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dreamgazer.png" +dest_files=["res://.godot/imported/neutral_dreamgazer.png-f9bea017f146fa59983bebde662261b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png new file mode 100644 index 0000000..bcff468 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png.import new file mode 100644 index 0000000..d1fb6ab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhghbnr4ktssp" +path="res://.godot/imported/neutral_dustwailer.png-3996eb6e33d54ef16afd9a870dfaeef3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_dustwailer.png" +dest_files=["res://.godot/imported/neutral_dustwailer.png-3996eb6e33d54ef16afd9a870dfaeef3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png new file mode 100644 index 0000000..86d13b6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png.import new file mode 100644 index 0000000..84a3256 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wvux75t3hp4l" +path="res://.godot/imported/neutral_eclipse.png-e0252669061ac268e5de3639809ccc97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_eclipse.png" +dest_files=["res://.godot/imported/neutral_eclipse.png-e0252669061ac268e5de3639809ccc97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png new file mode 100644 index 0000000..56c0d83 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png.import new file mode 100644 index 0000000..b2cb6d7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0nqds1uj1rvu" +path="res://.godot/imported/neutral_emp.png-4bcd37db17c3c18c0e4966c13fb79255.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_emp.png" +dest_files=["res://.godot/imported/neutral_emp.png-4bcd37db17c3c18c0e4966c13fb79255.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png new file mode 100644 index 0000000..3a36374 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png.import new file mode 100644 index 0000000..ea06e5f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blmj45q1x8o5n" +path="res://.godot/imported/neutral_envybaer.png-370e9d1662c27e6571d6ab3e2069d016.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_envybaer.png" +dest_files=["res://.godot/imported/neutral_envybaer.png-370e9d1662c27e6571d6ab3e2069d016.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png new file mode 100644 index 0000000..a6edef0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png.import new file mode 100644 index 0000000..526f779 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0p40j18hc018" +path="res://.godot/imported/neutral_exun.png-707229630d7610797806e39d64de8e0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_exun.png" +dest_files=["res://.godot/imported/neutral_exun.png-707229630d7610797806e39d64de8e0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png new file mode 100644 index 0000000..ca44b48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png.import new file mode 100644 index 0000000..3816e5a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca3erm4oukioi" +path="res://.godot/imported/neutral_feralu.png-8468c9baca891388f6daa6ba9382cb8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_feralu.png" +dest_files=["res://.godot/imported/neutral_feralu.png-8468c9baca891388f6daa6ba9382cb8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png new file mode 100644 index 0000000..fba1b99 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png.import new file mode 100644 index 0000000..7f5bfec --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs6f8cxn6mitx" +path="res://.godot/imported/neutral_firestarter.png-33b5b4d4d3ef6f83924b6903f64c538f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_firestarter.png" +dest_files=["res://.godot/imported/neutral_firestarter.png-33b5b4d4d3ef6f83924b6903f64c538f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png new file mode 100644 index 0000000..8a7be86 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png.import new file mode 100644 index 0000000..c592143 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://day6pqpke7a6b" +path="res://.godot/imported/neutral_fog.png-27a998236ac7a0d76d13dc4b2c3336f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_fog.png" +dest_files=["res://.godot/imported/neutral_fog.png-27a998236ac7a0d76d13dc4b2c3336f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png new file mode 100644 index 0000000..ccfd76f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png.import new file mode 100644 index 0000000..8589b69 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buegijnf8wgnq" +path="res://.godot/imported/neutral_gambler.png-0816c972e2209b31b4b50f1707898a70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gambler.png" +dest_files=["res://.godot/imported/neutral_gambler.png-0816c972e2209b31b4b50f1707898a70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png new file mode 100644 index 0000000..3c6a503 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png.import new file mode 100644 index 0000000..a05b342 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb6klfap1wte6" +path="res://.godot/imported/neutral_gauntletmaster.png-33c1d89e69c7e7db31f989bfcf6d283b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gauntletmaster.png" +dest_files=["res://.godot/imported/neutral_gauntletmaster.png-33c1d89e69c7e7db31f989bfcf6d283b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png new file mode 100644 index 0000000..754a2a8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png.import new file mode 100644 index 0000000..81d0077 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct37egyyogk2w" +path="res://.godot/imported/neutral_geargrinder.png-a6eeb35e3a5fb969fd9d9007ca0962c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_geargrinder.png" +dest_files=["res://.godot/imported/neutral_geargrinder.png-a6eeb35e3a5fb969fd9d9007ca0962c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png new file mode 100644 index 0000000..bade08a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png.import new file mode 100644 index 0000000..1dee446 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxrqb4r6osj56" +path="res://.godot/imported/neutral_ghostlynx.png-ca27cb34788b1906aa59b70c2dc4183b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghostlynx.png" +dest_files=["res://.godot/imported/neutral_ghostlynx.png-ca27cb34788b1906aa59b70c2dc4183b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png new file mode 100644 index 0000000..7f506e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png.import new file mode 100644 index 0000000..72b0adf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dktb78i1gy1x" +path="res://.godot/imported/neutral_ghoulie.png-8c5a849554b7a1fb2984e4cfb90af1a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ghoulie.png" +dest_files=["res://.godot/imported/neutral_ghoulie.png-8c5a849554b7a1fb2984e4cfb90af1a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png new file mode 100644 index 0000000..b35359f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png.import new file mode 100644 index 0000000..3725741 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0m4ynwce6ota" +path="res://.godot/imported/neutral_giantcrab.png-20a5659c62438bd2da41308cbe2050bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_giantcrab.png" +dest_files=["res://.godot/imported/neutral_giantcrab.png-20a5659c62438bd2da41308cbe2050bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png new file mode 100644 index 0000000..fb4b157 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png.import new file mode 100644 index 0000000..5bfc6e0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4atu8frnbrtt" +path="res://.godot/imported/neutral_gnasher.png-dd3b809977df631fab8d7ba86bf49735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gnasher.png" +dest_files=["res://.godot/imported/neutral_gnasher.png-dd3b809977df631fab8d7ba86bf49735.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png new file mode 100644 index 0000000..5dd7b48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png.import new file mode 100644 index 0000000..3d01743 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2mcw1ym7wuid" +path="res://.godot/imported/neutral_goldenhammer.png-f0747b546d2b9dcdfa29875b1e78d820.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenhammer.png" +dest_files=["res://.godot/imported/neutral_goldenhammer.png-f0747b546d2b9dcdfa29875b1e78d820.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png new file mode 100644 index 0000000..b09b36f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png.import new file mode 100644 index 0000000..3de56ed --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7suagtcpsydr" +path="res://.godot/imported/neutral_goldenjusticar.png-4a501ecc167b785dc817a0ddf146e4b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenjusticar.png" +dest_files=["res://.godot/imported/neutral_goldenjusticar.png-4a501ecc167b785dc817a0ddf146e4b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png new file mode 100644 index 0000000..5070a0c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png.import new file mode 100644 index 0000000..92515f5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d33ekc6gxkluh" +path="res://.godot/imported/neutral_goldenmantella.png-6ccaa078b87c4deb03d0ec5580fe185d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_goldenmantella.png" +dest_files=["res://.godot/imported/neutral_goldenmantella.png-6ccaa078b87c4deb03d0ec5580fe185d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png new file mode 100644 index 0000000..2283042 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png.import new file mode 100644 index 0000000..b4679b7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c76pwnxqq37j8" +path="res://.godot/imported/neutral_golem_crossbones.png-28404f0b0aacd8576747510845665ebd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golem_crossbones.png" +dest_files=["res://.godot/imported/neutral_golem_crossbones.png-28404f0b0aacd8576747510845665ebd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png new file mode 100644 index 0000000..23d050c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png.import new file mode 100644 index 0000000..0ee3bd5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc2x4fc1wdxeh" +path="res://.godot/imported/neutral_golembloodshard.png-b065ed8ab5b724ae1268bcd5f68d6ec1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golembloodshard.png" +dest_files=["res://.godot/imported/neutral_golembloodshard.png-b065ed8ab5b724ae1268bcd5f68d6ec1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png new file mode 100644 index 0000000..ff7c99e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png.import new file mode 100644 index 0000000..88db6a2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn464er1m0w4v" +path="res://.godot/imported/neutral_golemdragonbone.png-8b9fcc047160190df156f529317e9bf8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemdragonbone.png" +dest_files=["res://.godot/imported/neutral_golemdragonbone.png-8b9fcc047160190df156f529317e9bf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png new file mode 100644 index 0000000..eb23a94 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png.import new file mode 100644 index 0000000..188091e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b20uamldv2evi" +path="res://.godot/imported/neutral_golemice.png-e382a5fe2ceb69f94ed802ab1bcbe5dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemice.png" +dest_files=["res://.godot/imported/neutral_golemice.png-e382a5fe2ceb69f94ed802ab1bcbe5dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png new file mode 100644 index 0000000..9d07b30 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png.import new file mode 100644 index 0000000..5fca6db --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpkwkygfx0sn7" +path="res://.godot/imported/neutral_golemnature.png-c61af9d6145a4a6c4bd967dab5ce8de0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemnature.png" +dest_files=["res://.godot/imported/neutral_golemnature.png-c61af9d6145a4a6c4bd967dab5ce8de0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png new file mode 100644 index 0000000..32fa8e0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png.import new file mode 100644 index 0000000..a132fbe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de6uvxre36f3y" +path="res://.godot/imported/neutral_golemrunesand.png-9108f92e361513b92995cb9b04a546f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemrunesand.png" +dest_files=["res://.godot/imported/neutral_golemrunesand.png-9108f92e361513b92995cb9b04a546f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png new file mode 100644 index 0000000..c1afc37 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png.import new file mode 100644 index 0000000..20cc399 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgkk747hxw5qi" +path="res://.godot/imported/neutral_golemsteel.png-66369b2cb8121ab09ab11f2e9e0aa053.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemsteel.png" +dest_files=["res://.godot/imported/neutral_golemsteel.png-66369b2cb8121ab09ab11f2e9e0aa053.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png new file mode 100644 index 0000000..4ad1752 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png.import new file mode 100644 index 0000000..679a885 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqj221s6c3om6" +path="res://.godot/imported/neutral_golemstone.png-b43e5662d03447019881af46bafb0b36.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstone.png" +dest_files=["res://.godot/imported/neutral_golemstone.png-b43e5662d03447019881af46bafb0b36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png new file mode 100644 index 0000000..47098f7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png.import new file mode 100644 index 0000000..b409cb1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckpioll50lj8c" +path="res://.godot/imported/neutral_golemstormmetal.png-1d6413906b913a1f71d5085d3bf8ad86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_golemstormmetal.png" +dest_files=["res://.godot/imported/neutral_golemstormmetal.png-1d6413906b913a1f71d5085d3bf8ad86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png new file mode 100644 index 0000000..540aec9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png.import new file mode 100644 index 0000000..d60b720 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nbj8tg05j1y5" +path="res://.godot/imported/neutral_grablackhole.png-50dec752fce6c31f6b56375d5f9f0000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grablackhole.png" +dest_files=["res://.godot/imported/neutral_grablackhole.png-50dec752fce6c31f6b56375d5f9f0000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png new file mode 100644 index 0000000..2a0fb1e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png.import new file mode 100644 index 0000000..1fe6848 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxawkw85mljbr" +path="res://.godot/imported/neutral_grimes.png-de880f140b7cc68d96a86530c796fb65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grimes.png" +dest_files=["res://.godot/imported/neutral_grimes.png-de880f140b7cc68d96a86530c796fb65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png new file mode 100644 index 0000000..cb3ab8c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png.import new file mode 100644 index 0000000..e512d54 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5n4v824j5yul" +path="res://.godot/imported/neutral_grincher.png-d69425cc0a1b27f33f7f5403f6e361c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_grincher.png" +dest_files=["res://.godot/imported/neutral_grincher.png-d69425cc0a1b27f33f7f5403f6e361c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png new file mode 100644 index 0000000..8df4fa2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png.import new file mode 100644 index 0000000..765b0bf --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5550i8y33af3" +path="res://.godot/imported/neutral_gro.png-776743c386a99a9007a8fa19370dcafe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_gro.png" +dest_files=["res://.godot/imported/neutral_gro.png-776743c386a99a9007a8fa19370dcafe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png new file mode 100644 index 0000000..33d3493 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png.import new file mode 100644 index 0000000..54c3982 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddv1jlesyklva" +path="res://.godot/imported/neutral_hatred.png-aad3deadd835e54460d631984b3573a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hatred.png" +dest_files=["res://.godot/imported/neutral_hatred.png-aad3deadd835e54460d631984b3573a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png new file mode 100644 index 0000000..a683b36 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png.import new file mode 100644 index 0000000..bea5cf2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nl5hbpcbfrk5" +path="res://.godot/imported/neutral_healingmystic.png-fce25218f5c373dbfddd767d34ceb60f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystic.png" +dest_files=["res://.godot/imported/neutral_healingmystic.png-fce25218f5c373dbfddd767d34ceb60f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png new file mode 100644 index 0000000..a30259e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png.import new file mode 100644 index 0000000..2684a13 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd1i04w55qmkk" +path="res://.godot/imported/neutral_healingmysticbandainamco.png-2285dbecd02b9828a61576818d8dc57a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmysticbandainamco.png" +dest_files=["res://.godot/imported/neutral_healingmysticbandainamco.png-2285dbecd02b9828a61576818d8dc57a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png new file mode 100644 index 0000000..4548ddc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png.import new file mode 100644 index 0000000..67af15d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhag6kanta4dr" +path="res://.godot/imported/neutral_healingmystictwitch.png-e598b5f34c44eed5c1232bab067a448b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_healingmystictwitch.png" +dest_files=["res://.godot/imported/neutral_healingmystictwitch.png-e598b5f34c44eed5c1232bab067a448b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png new file mode 100644 index 0000000..436f6a7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png.import new file mode 100644 index 0000000..1a18842 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d03ln8qn5d3ic" +path="res://.godot/imported/neutral_highhand.png-d0a5a4cc0c5e415f3bec67a9853c2ac2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_highhand.png" +dest_files=["res://.godot/imported/neutral_highhand.png-d0a5a4cc0c5e415f3bec67a9853c2ac2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png new file mode 100644 index 0000000..012bd42 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png.import new file mode 100644 index 0000000..3a4bf7a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ploawv08kqc4" +path="res://.godot/imported/neutral_hollowgrovekeeper.png-22ef42b23d5844d3097c0d79151a2cad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hollowgrovekeeper.png" +dest_files=["res://.godot/imported/neutral_hollowgrovekeeper.png-22ef42b23d5844d3097c0d79151a2cad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png new file mode 100644 index 0000000..67925b7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png.import new file mode 100644 index 0000000..47ad0ca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d5pwf7vqtv3o" +path="res://.godot/imported/neutral_hsuku.png-48f3ad3316e0bc3a27f2222e35865272.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hsuku.png" +dest_files=["res://.godot/imported/neutral_hsuku.png-48f3ad3316e0bc3a27f2222e35865272.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png new file mode 100644 index 0000000..f80dc59 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png.import new file mode 100644 index 0000000..f32f1f4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkrvbhpdw1xvv" +path="res://.godot/imported/neutral_hydrax.png-6df10eb94b2d8212313eac0e583e9441.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_hydrax.png" +dest_files=["res://.godot/imported/neutral_hydrax.png-6df10eb94b2d8212313eac0e583e9441.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png new file mode 100644 index 0000000..e0af362 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png.import new file mode 100644 index 0000000..fef6b45 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be2tmqgf0v1dm" +path="res://.godot/imported/neutral_incindy.png-6be3ee8533af90177fef11c395eb2743.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_incindy.png" +dest_files=["res://.godot/imported/neutral_incindy.png-6be3ee8533af90177fef11c395eb2743.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png new file mode 100644 index 0000000..1325425 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png.import new file mode 100644 index 0000000..201713b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4hb0f8i880b" +path="res://.godot/imported/neutral_inquisitorkron.png-13e6b2c4afd5bd27cc4a0cffb218274f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_inquisitorkron.png" +dest_files=["res://.godot/imported/neutral_inquisitorkron.png-13e6b2c4afd5bd27cc4a0cffb218274f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png new file mode 100644 index 0000000..141aa93 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png.import new file mode 100644 index 0000000..e67f271 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2rpj3o2gjbxt" +path="res://.godot/imported/neutral_ion.png-468685294d2d16541383b4fe099397fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ion.png" +dest_files=["res://.godot/imported/neutral_ion.png-468685294d2d16541383b4fe099397fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png new file mode 100644 index 0000000..25bf0da Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png.import new file mode 100644 index 0000000..f4fb67e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd8x1ys7oh8fd" +path="res://.godot/imported/neutral_ironclad.png-204aa6b2cddc271eb6c12fab00cdbc68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ironclad.png" +dest_files=["res://.godot/imported/neutral_ironclad.png-204aa6b2cddc271eb6c12fab00cdbc68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png new file mode 100644 index 0000000..ad2e8f7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png.import new file mode 100644 index 0000000..63c2e74 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx7j8l01alcao" +path="res://.godot/imported/neutral_jaxi.png-baf66fc32611c053d2fedb57581bc200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxi.png" +dest_files=["res://.godot/imported/neutral_jaxi.png-baf66fc32611c053d2fedb57581bc200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png new file mode 100644 index 0000000..e4391fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png.import new file mode 100644 index 0000000..26a7d2a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfhen1nnldlf8" +path="res://.godot/imported/neutral_jaxtruesight.png-80f5ead2ed1e332fa6a5832d6381ed8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_jaxtruesight.png" +dest_files=["res://.godot/imported/neutral_jaxtruesight.png-80f5ead2ed1e332fa6a5832d6381ed8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png new file mode 100644 index 0000000..0e9d03a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png.import new file mode 100644 index 0000000..c5360ff --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwro26nqucja" +path="res://.godot/imported/neutral_keeperofthevale.png-b87d0863e26dd4352f1f585ece499c90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevale.png" +dest_files=["res://.godot/imported/neutral_keeperofthevale.png-b87d0863e26dd4352f1f585ece499c90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png new file mode 100644 index 0000000..a329e40 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png.import new file mode 100644 index 0000000..1fa0877 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfutyfqk6qqod" +path="res://.godot/imported/neutral_keeperofthevalue.png-4a20f1b1babdaae6ea390ee12b568b7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_keeperofthevalue.png" +dest_files=["res://.godot/imported/neutral_keeperofthevalue.png-4a20f1b1babdaae6ea390ee12b568b7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png new file mode 100644 index 0000000..e9ea6d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png.import new file mode 100644 index 0000000..4ee28b7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2tkd7oplxtyd" +path="res://.godot/imported/neutral_khymera.png-1781b3bc805b1d3f115f8661d777690d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_khymera.png" +dest_files=["res://.godot/imported/neutral_khymera.png-1781b3bc805b1d3f115f8661d777690d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png new file mode 100644 index 0000000..0705e4f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png.import new file mode 100644 index 0000000..e246996 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlnhtxkvvk06x" +path="res://.godot/imported/neutral_kin.png-5f8919f1a1e93fd3d1d1284a0b2e3000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_kin.png" +dest_files=["res://.godot/imported/neutral_kin.png-5f8919f1a1e93fd3d1d1284a0b2e3000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png new file mode 100644 index 0000000..9974f2c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png.import new file mode 100644 index 0000000..717b020 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ptt4ej3wtl8v" +path="res://.godot/imported/neutral_koi.png-3623c9edc9c914a2be69ba1dbe04f108.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_koi.png" +dest_files=["res://.godot/imported/neutral_koi.png-3623c9edc9c914a2be69ba1dbe04f108.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png new file mode 100644 index 0000000..a8dad26 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png.import new file mode 100644 index 0000000..0668589 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhx6wieglnlsg" +path="res://.godot/imported/neutral_komodokin.png-68a97ad062a3eeeda8d35a3febea5794.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_komodokin.png" +dest_files=["res://.godot/imported/neutral_komodokin.png-68a97ad062a3eeeda8d35a3febea5794.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png new file mode 100644 index 0000000..5068a82 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png.import new file mode 100644 index 0000000..0962d97 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvp5wdme8mahn" +path="res://.godot/imported/neutral_ladylocke.png-1449e0e6b4cd9a70882660fba186e3c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ladylocke.png" +dest_files=["res://.godot/imported/neutral_ladylocke.png-1449e0e6b4cd9a70882660fba186e3c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png new file mode 100644 index 0000000..d9a6593 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png.import new file mode 100644 index 0000000..d7e6b2c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca4e5n2n5hs2n" +path="res://.godot/imported/neutral_letigress.png-26415ba8a85136774c02ec8e0564381b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigress.png" +dest_files=["res://.godot/imported/neutral_letigress.png-26415ba8a85136774c02ec8e0564381b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png new file mode 100644 index 0000000..d1be8d6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png.import new file mode 100644 index 0000000..a8c455c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://broeaw4udp85v" +path="res://.godot/imported/neutral_letigresscub.png-1504ed0c8785e80bec2722a7085b7352.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_letigresscub.png" +dest_files=["res://.godot/imported/neutral_letigresscub.png-1504ed0c8785e80bec2722a7085b7352.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png new file mode 100644 index 0000000..7281ea0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png.import new file mode 100644 index 0000000..f23bf55 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqssj4tyb2y6q" +path="res://.godot/imported/neutral_loreweaver.png-697b9906eafb74893778431faff4f263.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_loreweaver.png" +dest_files=["res://.godot/imported/neutral_loreweaver.png-697b9906eafb74893778431faff4f263.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png new file mode 100644 index 0000000..6781b17 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png.import new file mode 100644 index 0000000..0c0bc87 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkbwkht7repks" +path="res://.godot/imported/neutral_luxignis.png-5559c9c965ac0c158fdb8e99696cb734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_luxignis.png" +dest_files=["res://.godot/imported/neutral_luxignis.png-5559c9c965ac0c158fdb8e99696cb734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png new file mode 100644 index 0000000..8ca0bfc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png.import new file mode 100644 index 0000000..fedb61e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2k3hjw44yg6" +path="res://.godot/imported/neutral_mageswarm.png-56f5649e92cabca1fbfcd5ed829512da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mageswarm.png" +dest_files=["res://.godot/imported/neutral_mageswarm.png-56f5649e92cabca1fbfcd5ed829512da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png new file mode 100644 index 0000000..3285f9d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png.import new file mode 100644 index 0000000..1f5779d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tay3uo58pdp0" +path="res://.godot/imported/neutral_masteroftheseven.png-6bed366d4733c4808012d15000ffde4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_masteroftheseven.png" +dest_files=["res://.godot/imported/neutral_masteroftheseven.png-6bed366d4733c4808012d15000ffde4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png new file mode 100644 index 0000000..dd2085f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png.import new file mode 100644 index 0000000..fcd25f1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpspoiycsv6sd" +path="res://.godot/imported/neutral_maw.png-c271b62ec9e01cb20bba8f9e56414dcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_maw.png" +dest_files=["res://.godot/imported/neutral_maw.png-c271b62ec9e01cb20bba8f9e56414dcb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png new file mode 100644 index 0000000..03c2dcc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png.import new file mode 100644 index 0000000..57ba151 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjho3ygbynsmp" +path="res://.godot/imported/neutral_mechaz0rcannon.png-a7d37dd74e8dbf630558a2975910d50d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rcannon.png" +dest_files=["res://.godot/imported/neutral_mechaz0rcannon.png-a7d37dd74e8dbf630558a2975910d50d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png new file mode 100644 index 0000000..abaea47 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png.import new file mode 100644 index 0000000..d09eeb6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba6lbtpvrrqm3" +path="res://.godot/imported/neutral_mechaz0rchassis.png-5b74db4a86aa8dfccc248991971b1117.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rchassis.png" +dest_files=["res://.godot/imported/neutral_mechaz0rchassis.png-5b74db4a86aa8dfccc248991971b1117.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png new file mode 100644 index 0000000..87068b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png.import new file mode 100644 index 0000000..507ee2b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c686f38jlkwhl" +path="res://.godot/imported/neutral_mechaz0rhelm.png-802ee4782f0b11e2a73e4a29ef1a5200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rhelm.png" +dest_files=["res://.godot/imported/neutral_mechaz0rhelm.png-802ee4782f0b11e2a73e4a29ef1a5200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png new file mode 100644 index 0000000..3edf483 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png.import new file mode 100644 index 0000000..ac572dc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl5p2lcep3aj6" +path="res://.godot/imported/neutral_mechaz0rsuper.png-1c8d0a3df319bbca80423f1c1e5e2346.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsuper.png" +dest_files=["res://.godot/imported/neutral_mechaz0rsuper.png-1c8d0a3df319bbca80423f1c1e5e2346.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png new file mode 100644 index 0000000..070285e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png.import new file mode 100644 index 0000000..af489c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1upew3ctlc7k" +path="res://.godot/imported/neutral_mechaz0rsword.png-ac1ebedc225284bb984b3b364167f142.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rsword.png" +dest_files=["res://.godot/imported/neutral_mechaz0rsword.png-ac1ebedc225284bb984b3b364167f142.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png new file mode 100644 index 0000000..fbc4651 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png.import new file mode 100644 index 0000000..7b50b55 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qiixofi6gx7r" +path="res://.godot/imported/neutral_mechaz0rwing.png-eb6e07287bd046e5b862782f4587c087.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mechaz0rwing.png" +dest_files=["res://.godot/imported/neutral_mechaz0rwing.png-eb6e07287bd046e5b862782f4587c087.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png new file mode 100644 index 0000000..c156f75 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png.import new file mode 100644 index 0000000..e868c09 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo80afsiufy6q" +path="res://.godot/imported/neutral_meltdown.png-276a48e0e4374d74015d07bf3b6713cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_meltdown.png" +dest_files=["res://.godot/imported/neutral_meltdown.png-276a48e0e4374d74015d07bf3b6713cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png new file mode 100644 index 0000000..2cba2fc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png.import new file mode 100644 index 0000000..b94e934 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvvxeo2gwc32f" +path="res://.godot/imported/neutral_mercarcanelimiter.png-0f600323f92ebfe1b885a5f65e55c840.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarcanelimiter.png" +dest_files=["res://.godot/imported/neutral_mercarcanelimiter.png-0f600323f92ebfe1b885a5f65e55c840.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png new file mode 100644 index 0000000..6686bf8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png.import new file mode 100644 index 0000000..36d008f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvecqvwnc61fj" +path="res://.godot/imported/neutral_mercarchonspellbinder.png-3e3cd28550820c9acf911cd43edee5c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercarchonspellbinder.png" +dest_files=["res://.godot/imported/neutral_mercarchonspellbinder.png-3e3cd28550820c9acf911cd43edee5c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png new file mode 100644 index 0000000..76c6857 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png.import new file mode 100644 index 0000000..ad88043 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5k852fvl4kb0" +path="res://.godot/imported/neutral_mercazurehorn.png-d5737305ab9ee707ab334cb135989533.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercazurehorn.png" +dest_files=["res://.godot/imported/neutral_mercazurehorn.png-d5737305ab9ee707ab334cb135989533.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png new file mode 100644 index 0000000..c614dc6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png.import new file mode 100644 index 0000000..7f9922d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dskj33tisw4uo" +path="res://.godot/imported/neutral_merccaster1.png-60a59377937fa572cbade8c5ee75f84d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merccaster1.png" +dest_files=["res://.godot/imported/neutral_merccaster1.png-60a59377937fa572cbade8c5ee75f84d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png new file mode 100644 index 0000000..af271b1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png.import new file mode 100644 index 0000000..e2b7c88 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5rl4pfwfrupn" +path="res://.godot/imported/neutral_mercdaggerkiri.png-8285d0cee6063598ea95c1724f9226df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercdaggerkiri.png" +dest_files=["res://.godot/imported/neutral_mercdaggerkiri.png-8285d0cee6063598ea95c1724f9226df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png new file mode 100644 index 0000000..971206c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png.import new file mode 100644 index 0000000..35bc36f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uaadnminiunh" +path="res://.godot/imported/neutral_mercflamebloodwarlock.png-c4ce20a73136b4f2b8bd2beb0ae1aa87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercflamebloodwarlock.png" +dest_files=["res://.godot/imported/neutral_mercflamebloodwarlock.png-c4ce20a73136b4f2b8bd2beb0ae1aa87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png new file mode 100644 index 0000000..9b3a695 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png.import new file mode 100644 index 0000000..a7660aa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx6xmgxggfba2" +path="res://.godot/imported/neutral_mercfrostbonenaga.png-90e27dbc526c74a0e097859f2b4a29aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercfrostbonenaga.png" +dest_files=["res://.godot/imported/neutral_mercfrostbonenaga.png-90e27dbc526c74a0e097859f2b4a29aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png new file mode 100644 index 0000000..cf0a1e3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png.import new file mode 100644 index 0000000..bc53e32 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30fhtjhk2s7t" +path="res://.godot/imported/neutral_mercgambitgirl.png-1c3d90b53de2c534ad587f7bf47fc007.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgambitgirl.png" +dest_files=["res://.godot/imported/neutral_mercgambitgirl.png-1c3d90b53de2c534ad587f7bf47fc007.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png new file mode 100644 index 0000000..a5794a3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png.import new file mode 100644 index 0000000..b728890 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mq7crb4pcguh" +path="res://.godot/imported/neutral_mercgrenadier.png-ac8eac9832f5c9bcba856f4c482b301c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercgrenadier.png" +dest_files=["res://.godot/imported/neutral_mercgrenadier.png-ac8eac9832f5c9bcba856f4c482b301c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png new file mode 100644 index 0000000..604003b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png.import new file mode 100644 index 0000000..b547463 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq34plean2n68" +path="res://.godot/imported/neutral_mercmelee1.png-6265a62e544288c6c424509b14e97175.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee1.png" +dest_files=["res://.godot/imported/neutral_mercmelee1.png-6265a62e544288c6c424509b14e97175.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png new file mode 100644 index 0000000..c431a72 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png.import new file mode 100644 index 0000000..ebab6bc --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpcd7shn1rq5a" +path="res://.godot/imported/neutral_mercmelee2.png-481b41518d629807c0e92487437ecbc4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee2.png" +dest_files=["res://.godot/imported/neutral_mercmelee2.png-481b41518d629807c0e92487437ecbc4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png new file mode 100644 index 0000000..33b021c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png.import new file mode 100644 index 0000000..5839afe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ioeg7m1xa6jj" +path="res://.godot/imported/neutral_mercmelee3.png-3f26792cd389bda0d6f5f13c5894cec5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee3.png" +dest_files=["res://.godot/imported/neutral_mercmelee3.png-3f26792cd389bda0d6f5f13c5894cec5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png new file mode 100644 index 0000000..7bba8f3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png.import new file mode 100644 index 0000000..423e75a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dulmaew7c02i8" +path="res://.godot/imported/neutral_mercmelee4.png-cfa48e40dfd9929d582d467299d3e9c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmelee4.png" +dest_files=["res://.godot/imported/neutral_mercmelee4.png-cfa48e40dfd9929d582d467299d3e9c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png new file mode 100644 index 0000000..6a61724 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png.import new file mode 100644 index 0000000..ed0be60 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c603bucnnp37e" +path="res://.godot/imported/neutral_mercmindwarper.png-70c3bd71a86ce78bf9cd8f739446dae7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercmindwarper.png" +dest_files=["res://.godot/imported/neutral_mercmindwarper.png-70c3bd71a86ce78bf9cd8f739446dae7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png new file mode 100644 index 0000000..024ee57 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png.import new file mode 100644 index 0000000..fc095d8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6d7tusqm3epy" +path="res://.godot/imported/neutral_mercneedler.png-d62775ca9f891e2563b75b8867b861f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercneedler.png" +dest_files=["res://.godot/imported/neutral_mercneedler.png-d62775ca9f891e2563b75b8867b861f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png new file mode 100644 index 0000000..9906954 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png.import new file mode 100644 index 0000000..5fc6524 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6jl82tfrexom" +path="res://.godot/imported/neutral_mercowlbearmage.png-845b1894efe8b1c224726e448d204ad3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercowlbearmage.png" +dest_files=["res://.godot/imported/neutral_mercowlbearmage.png-845b1894efe8b1c224726e448d204ad3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png new file mode 100644 index 0000000..cdd0afa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png.import new file mode 100644 index 0000000..152d02c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbjr8a46biawx" +path="res://.godot/imported/neutral_mercpirate.png-47a9eb3f7fef137d7cbe67f79d3153db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpirate.png" +dest_files=["res://.godot/imported/neutral_mercpirate.png-47a9eb3f7fef137d7cbe67f79d3153db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png new file mode 100644 index 0000000..535cc48 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png.import new file mode 100644 index 0000000..d1c876e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cak870kkpt04" +path="res://.godot/imported/neutral_mercpiratebeast.png-23ad15c1fab7355db8d6559d4e1d0ed0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercpiratebeast.png" +dest_files=["res://.godot/imported/neutral_mercpiratebeast.png-23ad15c1fab7355db8d6559d4e1d0ed0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png new file mode 100644 index 0000000..788e802 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png.import new file mode 100644 index 0000000..d1582a8 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rcelhhsa1y32" +path="res://.godot/imported/neutral_mercranged1.png-bacd291a7d69fe95edf9dc3659079319.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercranged1.png" +dest_files=["res://.godot/imported/neutral_mercranged1.png-bacd291a7d69fe95edf9dc3659079319.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png new file mode 100644 index 0000000..9b17263 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png.import new file mode 100644 index 0000000..c14679c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgu587fujc8ni" +path="res://.godot/imported/neutral_mercshieldoracle.png-d2765e6392d18ec789929a4625622020.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercshieldoracle.png" +dest_files=["res://.godot/imported/neutral_mercshieldoracle.png-d2765e6392d18ec789929a4625622020.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png new file mode 100644 index 0000000..e9bc17e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png.import new file mode 100644 index 0000000..25825f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djysqudaihp27" +path="res://.godot/imported/neutral_mercsightlessfarseer.png-ac632a92396901a8369f5e02b19ad5ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsightlessfarseer.png" +dest_files=["res://.godot/imported/neutral_mercsightlessfarseer.png-ac632a92396901a8369f5e02b19ad5ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png new file mode 100644 index 0000000..374c79b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png.import new file mode 100644 index 0000000..2c3182e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw7biu1c1b6qy" +path="res://.godot/imported/neutral_mercsongweaver.png-8e436ad422f51cfe3380618bed2fc509.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsongweaver.png" +dest_files=["res://.godot/imported/neutral_mercsongweaver.png-8e436ad422f51cfe3380618bed2fc509.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png new file mode 100644 index 0000000..83c3370 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png.import new file mode 100644 index 0000000..b3c5c50 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv2fqcmtttcjd" +path="res://.godot/imported/neutral_mercsunseer.png-5bb0b267938e6895f1063e4fedfa5c1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsunseer.png" +dest_files=["res://.godot/imported/neutral_mercsunseer.png-5bb0b267938e6895f1063e4fedfa5c1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png new file mode 100644 index 0000000..c0ab8d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png.import new file mode 100644 index 0000000..ab56b9a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dods0v33ccqbb" +path="res://.godot/imported/neutral_mercswornavanger.png-4e351ee3f64c129c86d24be76671e413.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercswornavanger.png" +dest_files=["res://.godot/imported/neutral_mercswornavanger.png-4e351ee3f64c129c86d24be76671e413.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png new file mode 100644 index 0000000..4047b66 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png.import new file mode 100644 index 0000000..2e040d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce2gw8ovohvhk" +path="res://.godot/imported/neutral_mercsworndefender.png-3f799ec63f75b8a9083fb6b42c2b6bfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mercsworndefender.png" +dest_files=["res://.godot/imported/neutral_mercsworndefender.png-3f799ec63f75b8a9083fb6b42c2b6bfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png new file mode 100644 index 0000000..a2567b8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png.import new file mode 100644 index 0000000..0d9b29f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g10avc3ih5mc" +path="res://.godot/imported/neutral_merctwilightmage.png-b853e59f82cffb0d363beffdc544d3dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwilightmage.png" +dest_files=["res://.godot/imported/neutral_merctwilightmage.png-b853e59f82cffb0d363beffdc544d3dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png new file mode 100644 index 0000000..c5eeaa1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png.import new file mode 100644 index 0000000..2594a58 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn83mb2p380ja" +path="res://.godot/imported/neutral_merctwinbladewarmonger.png-6ce57332329f6ce8120c796907115477.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_merctwinbladewarmonger.png" +dest_files=["res://.godot/imported/neutral_merctwinbladewarmonger.png-6ce57332329f6ce8120c796907115477.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png new file mode 100644 index 0000000..c2e0693 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png.import new file mode 100644 index 0000000..94334d3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jmyblmlpsa4u" +path="res://.godot/imported/neutral_metaltooth.png-644c0ed59cd43d208ae320cf2808c370.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_metaltooth.png" +dest_files=["res://.godot/imported/neutral_metaltooth.png-644c0ed59cd43d208ae320cf2808c370.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png new file mode 100644 index 0000000..027ae19 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png.import new file mode 100644 index 0000000..4877134 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdpbhnu0o53cj" +path="res://.godot/imported/neutral_minijax.png-0fb71f3d07ac5d37f443dc014aabb2cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_minijax.png" +dest_files=["res://.godot/imported/neutral_minijax.png-0fb71f3d07ac5d37f443dc014aabb2cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png new file mode 100644 index 0000000..3280c4f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png.import new file mode 100644 index 0000000..10915a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ys14i5uf6gmf" +path="res://.godot/imported/neutral_mirrormancer.png-53fabc336fa1eaa5bc3d7d334053d2a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mirrormancer.png" +dest_files=["res://.godot/imported/neutral_mirrormancer.png-53fabc336fa1eaa5bc3d7d334053d2a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png new file mode 100644 index 0000000..1769370 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png.import new file mode 100644 index 0000000..e05a199 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxx3pb4b0wrqa" +path="res://.godot/imported/neutral_moebius.png-a8a0d2298ef8ca25b42c79a90c249cbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moebius.png" +dest_files=["res://.godot/imported/neutral_moebius.png-a8a0d2298ef8ca25b42c79a90c249cbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png new file mode 100644 index 0000000..89be923 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png.import new file mode 100644 index 0000000..d591d50 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqoxk1w7sua6d" +path="res://.godot/imported/neutral_mogwai.png-1d9440693842f2e3e48cebdd3362d08e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mogwai.png" +dest_files=["res://.godot/imported/neutral_mogwai.png-1d9440693842f2e3e48cebdd3362d08e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png new file mode 100644 index 0000000..2dbfaac Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png.import new file mode 100644 index 0000000..984e4a4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2wevr7u6p8ef" +path="res://.godot/imported/neutral_moltengolem.png-ada27f28f8ef8f45de96d9e3f263d4df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moltengolem.png" +dest_files=["res://.godot/imported/neutral_moltengolem.png-ada27f28f8ef8f45de96d9e3f263d4df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png new file mode 100644 index 0000000..951817f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png.import new file mode 100644 index 0000000..cf7b898 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc2tadc8wfnp8" +path="res://.godot/imported/neutral_monster_explodingdemon.png-72ef16a5acf9a4afe33151a2c36660c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monster_explodingdemon.png" +dest_files=["res://.godot/imported/neutral_monster_explodingdemon.png-72ef16a5acf9a4afe33151a2c36660c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png new file mode 100644 index 0000000..3ca08ea Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png.import new file mode 100644 index 0000000..50d7b1a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da5o6ocgb5qqe" +path="res://.godot/imported/neutral_monsterartifacthunter.png-5aa75d40edcb410595062370487398aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterartifacthunter.png" +dest_files=["res://.godot/imported/neutral_monsterartifacthunter.png-5aa75d40edcb410595062370487398aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png new file mode 100644 index 0000000..c943f5d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png.import new file mode 100644 index 0000000..f999904 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bltrob5np3kfc" +path="res://.godot/imported/neutral_monsterblacksandburrower.png-5dcb77c17d1493c6b80db8a61a5b007b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterblacksandburrower.png" +dest_files=["res://.godot/imported/neutral_monsterblacksandburrower.png-5dcb77c17d1493c6b80db8a61a5b007b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png new file mode 100644 index 0000000..349a2ce Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png.import new file mode 100644 index 0000000..685af8f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byiv0v6fexyt8" +path="res://.godot/imported/neutral_monstercoiledcrawler.png-75d0d8f98afe03195cc36839098846ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercoiledcrawler.png" +dest_files=["res://.godot/imported/neutral_monstercoiledcrawler.png-75d0d8f98afe03195cc36839098846ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png new file mode 100644 index 0000000..4f17b32 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png.import new file mode 100644 index 0000000..d73bcf3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deomn5i42r4xe" +path="res://.godot/imported/neutral_monstercrystalwisp.png-0b3ec0d6f292a2cd3ddcc73aacbdb4ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstercrystalwisp.png" +dest_files=["res://.godot/imported/neutral_monstercrystalwisp.png-0b3ec0d6f292a2cd3ddcc73aacbdb4ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png new file mode 100644 index 0000000..3170c44 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png.import new file mode 100644 index 0000000..2e0da86 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rlrqclwhkntk" +path="res://.godot/imported/neutral_monsterdancingblades.png-8524b198d66dd766f2b81745b29030bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdancingblades.png" +dest_files=["res://.godot/imported/neutral_monsterdancingblades.png-8524b198d66dd766f2b81745b29030bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png new file mode 100644 index 0000000..0172773 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png.import new file mode 100644 index 0000000..c36463e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx838ypgmsvpx" +path="res://.godot/imported/neutral_monsterdarkharbinger.png-dbcf9ae0ec9d05486331bd48de4573bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdarkharbinger.png" +dest_files=["res://.godot/imported/neutral_monsterdarkharbinger.png-dbcf9ae0ec9d05486331bd48de4573bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png new file mode 100644 index 0000000..2878ed2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png.import new file mode 100644 index 0000000..6427fae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://64r4x1eksc7b" +path="res://.godot/imported/neutral_monsterdragonhawk.png-a79273862aec81f316ed0eaa3ba61efa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdragonhawk.png" +dest_files=["res://.godot/imported/neutral_monsterdragonhawk.png-a79273862aec81f316ed0eaa3ba61efa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png new file mode 100644 index 0000000..04c30aa Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png.import new file mode 100644 index 0000000..cd0b91c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d27ujisdffy2k" +path="res://.godot/imported/neutral_monsterdreamoracle.png-da5e9ab4a4a6b3817804ef776a5cff10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterdreamoracle.png" +dest_files=["res://.godot/imported/neutral_monsterdreamoracle.png-da5e9ab4a4a6b3817804ef776a5cff10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png new file mode 100644 index 0000000..ae4435e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png.import new file mode 100644 index 0000000..4889809 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm1r7r1q3xafm" +path="res://.godot/imported/neutral_monsterexplodingdemon.png-74b943cb97dd30f2b2daf63bbdac612c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterexplodingdemon.png" +dest_files=["res://.godot/imported/neutral_monsterexplodingdemon.png-74b943cb97dd30f2b2daf63bbdac612c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png new file mode 100644 index 0000000..a41d5d6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png.import new file mode 100644 index 0000000..5477a69 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4e85vh4cmrhm" +path="res://.godot/imported/neutral_monsterflamewing.png-9cf7e9ff2350b508d0710d901fd84f95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterflamewing.png" +dest_files=["res://.godot/imported/neutral_monsterflamewing.png-9cf7e9ff2350b508d0710d901fd84f95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png new file mode 100644 index 0000000..a12cd82 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png.import new file mode 100644 index 0000000..deee148 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ielk8wac511i" +path="res://.godot/imported/neutral_monsterlightningbeetle.png-747d182c09923922a79db43576957c87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterlightningbeetle.png" +dest_files=["res://.godot/imported/neutral_monsterlightningbeetle.png-747d182c09923922a79db43576957c87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png new file mode 100644 index 0000000..db1a0cc Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png.import new file mode 100644 index 0000000..bca338d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt6ol2k2l6nmt" +path="res://.godot/imported/neutral_monsteroculus.png-0a7c5d4f01c6e6a82c793a2dfa920c45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteroculus.png" +dest_files=["res://.godot/imported/neutral_monsteroculus.png-0a7c5d4f01c6e6a82c793a2dfa920c45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png new file mode 100644 index 0000000..350f4b8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png.import new file mode 100644 index 0000000..7c804b1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crkn66r3vud04" +path="res://.godot/imported/neutral_monsteronyxscorpion.png-7266b961c97a7d1cca66f484f2c6fb65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsteronyxscorpion.png" +dest_files=["res://.godot/imported/neutral_monsteronyxscorpion.png-7266b961c97a7d1cca66f484f2c6fb65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png new file mode 100644 index 0000000..1788cc8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png.import new file mode 100644 index 0000000..4d1d576 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5sgv6tpxonnx" +path="res://.godot/imported/neutral_monsterputridmindflayer.png-e0ca6a50e74c495a804943dbfcfbe0bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterputridmindflayer.png" +dest_files=["res://.godot/imported/neutral_monsterputridmindflayer.png-e0ca6a50e74c495a804943dbfcfbe0bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png new file mode 100644 index 0000000..4bde239 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png.import new file mode 100644 index 0000000..67ea453 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqyt1u3esj84f" +path="res://.godot/imported/neutral_monsterredsynja.png-aaea3b1be3acfd7cbe7e2645e4a6bda1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterredsynja.png" +dest_files=["res://.godot/imported/neutral_monsterredsynja.png-aaea3b1be3acfd7cbe7e2645e4a6bda1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png new file mode 100644 index 0000000..10898e9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png.import new file mode 100644 index 0000000..71fccbd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df0lgjk1rcyw2" +path="res://.godot/imported/neutral_monstershreddingmantis.png-36fa576917e993f86068a88158c08f5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monstershreddingmantis.png" +dest_files=["res://.godot/imported/neutral_monstershreddingmantis.png-36fa576917e993f86068a88158c08f5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png new file mode 100644 index 0000000..662cfc8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png.import new file mode 100644 index 0000000..fd0aa38 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brk2stq0fxnsw" +path="res://.godot/imported/neutral_monsterwhistlingblade.png-d768642c275fe67e5079b4aeec5d7b83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_monsterwhistlingblade.png" +dest_files=["res://.godot/imported/neutral_monsterwhistlingblade.png-d768642c275fe67e5079b4aeec5d7b83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png new file mode 100644 index 0000000..1e13ab0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png.import new file mode 100644 index 0000000..2bf4fe6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8sc4x8ee87rq" +path="res://.godot/imported/neutral_moonlitsorcerer.png-79bca535599923b49814547515197316.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_moonlitsorcerer.png" +dest_files=["res://.godot/imported/neutral_moonlitsorcerer.png-79bca535599923b49814547515197316.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png new file mode 100644 index 0000000..3aa7540 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png.import new file mode 100644 index 0000000..fc44fc1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1xgo1dcht3w0" +path="res://.godot/imported/neutral_mrgoldmclover.png-930763acddeb16c364b29bdeafd328d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mrgoldmclover.png" +dest_files=["res://.godot/imported/neutral_mrgoldmclover.png-930763acddeb16c364b29bdeafd328d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png new file mode 100644 index 0000000..8b024fd Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png.import new file mode 100644 index 0000000..cd64e84 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bttwk7b4yeu17" +path="res://.godot/imported/neutral_mystery.png-8cdc9ad9587580cd5bcaa39230176062.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_mystery.png" +dest_files=["res://.godot/imported/neutral_mystery.png-8cdc9ad9587580cd5bcaa39230176062.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png new file mode 100644 index 0000000..e596fe1 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png.import new file mode 100644 index 0000000..ed8e1ae --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpvitgotiu6k" +path="res://.godot/imported/neutral_nightwatcher.png-b7973a49a36ff833601b3b0ddb604427.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nightwatcher.png" +dest_files=["res://.godot/imported/neutral_nightwatcher.png-b7973a49a36ff833601b3b0ddb604427.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png new file mode 100644 index 0000000..be1c7d2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png.import new file mode 100644 index 0000000..b5794ca --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp0ib85u11dhx" +path="res://.godot/imported/neutral_nip.png-91bb8c3db20db4c20ffa13185d86b248.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_nip.png" +dest_files=["res://.godot/imported/neutral_nip.png-91bb8c3db20db4c20ffa13185d86b248.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png new file mode 100644 index 0000000..496c525 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png.import new file mode 100644 index 0000000..97c750c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sv3smhwihuth" +path="res://.godot/imported/neutral_oni.png-72a825c753a5d90c70bbc7afe5c17025.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_oni.png" +dest_files=["res://.godot/imported/neutral_oni.png-72a825c753a5d90c70bbc7afe5c17025.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png new file mode 100644 index 0000000..5760f9a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png.import new file mode 100644 index 0000000..d3171dd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df81vqcqfidd2" +path="res://.godot/imported/neutral_owlshadescholar.png-d522351166cc0a45f774615aa9ca904c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_owlshadescholar.png" +dest_files=["res://.godot/imported/neutral_owlshadescholar.png-d522351166cc0a45f774615aa9ca904c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png new file mode 100644 index 0000000..6fe2d5c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png.import new file mode 100644 index 0000000..96cc431 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyhn81ynjo64j" +path="res://.godot/imported/neutral_paddo.png-06504e3d822e969fad8780b46f240f6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_paddo.png" +dest_files=["res://.godot/imported/neutral_paddo.png-06504e3d822e969fad8780b46f240f6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png new file mode 100644 index 0000000..f48fdb8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png.import new file mode 100644 index 0000000..fd951c7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8ebisaqwt0it" +path="res://.godot/imported/neutral_pandora.png-c8de9585837fd55dcd2ac80093c28755.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandora.png" +dest_files=["res://.godot/imported/neutral_pandora.png-c8de9585837fd55dcd2ac80093c28755.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png new file mode 100644 index 0000000..54f1e39 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png.import new file mode 100644 index 0000000..2ace747 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bamnyge6dvib1" +path="res://.godot/imported/neutral_pandoraminioncelerity.png-a5563a9c59b2debe07ee2cd685b78848.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminioncelerity.png" +dest_files=["res://.godot/imported/neutral_pandoraminioncelerity.png-a5563a9c59b2debe07ee2cd685b78848.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png new file mode 100644 index 0000000..2d4636e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png.import new file mode 100644 index 0000000..00b625c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx5i5r3pvrdgt" +path="res://.godot/imported/neutral_pandoraminionfly.png-2b23e6841dc2faa388af4a4b136d4e30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfly.png" +dest_files=["res://.godot/imported/neutral_pandoraminionfly.png-2b23e6841dc2faa388af4a4b136d4e30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png new file mode 100644 index 0000000..b152e70 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png.import new file mode 100644 index 0000000..55497ce --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ynx35ko0xiy" +path="res://.godot/imported/neutral_pandoraminionfrenzy.png-c91560444c678185fb63ea22a0973512.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionfrenzy.png" +dest_files=["res://.godot/imported/neutral_pandoraminionfrenzy.png-c91560444c678185fb63ea22a0973512.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png new file mode 100644 index 0000000..0de38d4 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png.import new file mode 100644 index 0000000..f2c83f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqeemqqovh7ox" +path="res://.godot/imported/neutral_pandoraminionprovoke.png-66f79f03ce2ed71ad2bd06f5bc02611c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionprovoke.png" +dest_files=["res://.godot/imported/neutral_pandoraminionprovoke.png-66f79f03ce2ed71ad2bd06f5bc02611c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png new file mode 100644 index 0000000..a9e4690 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png.import new file mode 100644 index 0000000..1cdc87c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2rc6y34psa47" +path="res://.godot/imported/neutral_pandoraminionrush.png-c138fbd16619d0413b29343b73e2796f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pandoraminionrush.png" +dest_files=["res://.godot/imported/neutral_pandoraminionrush.png-c138fbd16619d0413b29343b73e2796f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png new file mode 100644 index 0000000..20b0634 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png.import new file mode 100644 index 0000000..1093d85 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr3r7j86fsc0k" +path="res://.godot/imported/neutral_partyelf.png-d834476b35914ed7425a8d25ebe2a6c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_partyelf.png" +dest_files=["res://.godot/imported/neutral_partyelf.png-d834476b35914ed7425a8d25ebe2a6c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png new file mode 100644 index 0000000..f15d276 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png.import new file mode 100644 index 0000000..1a84090 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csiq4pgch0hl1" +path="res://.godot/imported/neutral_pennyarcade01.png-e946a8d1947c21f3ff5e3e922da5031b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade01.png" +dest_files=["res://.godot/imported/neutral_pennyarcade01.png-e946a8d1947c21f3ff5e3e922da5031b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png new file mode 100644 index 0000000..092cd56 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png.import new file mode 100644 index 0000000..ca18577 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcxw1dian373f" +path="res://.godot/imported/neutral_pennyarcade02.png-e73ffa4f87ea940ac63217d716b9e3b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade02.png" +dest_files=["res://.godot/imported/neutral_pennyarcade02.png-e73ffa4f87ea940ac63217d716b9e3b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png new file mode 100644 index 0000000..6439fd6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png.import new file mode 100644 index 0000000..75bf5a1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbf3n66tc6twm" +path="res://.godot/imported/neutral_pennyarcade03.png-9e1c237733d0a2cb4ea506dce776a9d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade03.png" +dest_files=["res://.godot/imported/neutral_pennyarcade03.png-9e1c237733d0a2cb4ea506dce776a9d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png new file mode 100644 index 0000000..10e4fda Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png.import new file mode 100644 index 0000000..9472c41 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cexdgv52hij6j" +path="res://.godot/imported/neutral_pennyarcade04.png-f42d2fa10fef6a7df925d38f52620779.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_pennyarcade04.png" +dest_files=["res://.godot/imported/neutral_pennyarcade04.png-f42d2fa10fef6a7df925d38f52620779.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png new file mode 100644 index 0000000..ccd1829 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png.import new file mode 100644 index 0000000..53ed4ea --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d16h6dnt88r6u" +path="res://.godot/imported/neutral_primusshieldmaster.png-b06c10e3a16b7639a26205b2fb2a8a5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_primusshieldmaster.png" +dest_files=["res://.godot/imported/neutral_primusshieldmaster.png-b06c10e3a16b7639a26205b2fb2a8a5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png new file mode 100644 index 0000000..80bece3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png.import new file mode 100644 index 0000000..29432f3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkv1afgj0n0v2" +path="res://.godot/imported/neutral_prismaticillusionist.png-4a8f8985431dc2d6be798f4c55fd6091.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionist.png" +dest_files=["res://.godot/imported/neutral_prismaticillusionist.png-4a8f8985431dc2d6be798f4c55fd6091.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png new file mode 100644 index 0000000..167ba13 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png.import new file mode 100644 index 0000000..8fd5870 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de2rtm7al7r8a" +path="res://.godot/imported/neutral_prismaticillusionistminion.png-a2f2a019622ebb96d961a03bda9a3980.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prismaticillusionistminion.png" +dest_files=["res://.godot/imported/neutral_prismaticillusionistminion.png-a2f2a019622ebb96d961a03bda9a3980.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png new file mode 100644 index 0000000..7eba7b9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png.import new file mode 100644 index 0000000..de2a9fa --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2hnh5nvquhix" +path="res://.godot/imported/neutral_prongbok.png-3267073e32a9144335b99c4ef4b67d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prongbok.png" +dest_files=["res://.godot/imported/neutral_prongbok.png-3267073e32a9144335b99c4ef4b67d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png new file mode 100644 index 0000000..28a7d5f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png.import new file mode 100644 index 0000000..34905b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ehu47n6ipm8" +path="res://.godot/imported/neutral_prophetwhitepalm.png-645ff62b1f6842b19c120731bebbc454.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_prophetwhitepalm.png" +dest_files=["res://.godot/imported/neutral_prophetwhitepalm.png-645ff62b1f6842b19c120731bebbc454.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png new file mode 100644 index 0000000..4aefed9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png.import new file mode 100644 index 0000000..7d4984d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bid3ujx3aowdy" +path="res://.godot/imported/neutral_purgatos.png-7485d6260bd18679a5baccbf95669296.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_purgatos.png" +dest_files=["res://.godot/imported/neutral_purgatos.png-7485d6260bd18679a5baccbf95669296.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png new file mode 100644 index 0000000..db8f395 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png.import new file mode 100644 index 0000000..ebb7ad7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbyip3u51eovh" +path="res://.godot/imported/neutral_quahog.png-c6d4d6b3f0a60c7ec339ea89885995a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quahog.png" +dest_files=["res://.godot/imported/neutral_quahog.png-c6d4d6b3f0a60c7ec339ea89885995a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png new file mode 100644 index 0000000..68575e5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png.import new file mode 100644 index 0000000..c2dc00b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dilsuqhp1gn82" +path="res://.godot/imported/neutral_quartermastergauj.png-4e871ceafbeabedcd48f98ab32c1ced3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_quartermastergauj.png" +dest_files=["res://.godot/imported/neutral_quartermastergauj.png-4e871ceafbeabedcd48f98ab32c1ced3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png new file mode 100644 index 0000000..582ec4d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png.import new file mode 100644 index 0000000..bfd537d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp4welak8l6e1" +path="res://.godot/imported/neutral_rawr.png-9bed7b9a4d12dbaf806214996ca1032e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rawr.png" +dest_files=["res://.godot/imported/neutral_rawr.png-9bed7b9a4d12dbaf806214996ca1032e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png new file mode 100644 index 0000000..41eb837 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png.import new file mode 100644 index 0000000..f04742d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnek5uqwvs6d5" +path="res://.godot/imported/neutral_razorcraggolem.png-4dc7e5cca075e41e4de288e6bdf2a97b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_razorcraggolem.png" +dest_files=["res://.godot/imported/neutral_razorcraggolem.png-4dc7e5cca075e41e4de288e6bdf2a97b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png new file mode 100644 index 0000000..372c841 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png.import new file mode 100644 index 0000000..af55674 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk50xuuhk4hfu" +path="res://.godot/imported/neutral_rejuvenator.png-036ce38651d0ef04a7acad66f5dbd556.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rejuvenator.png" +dest_files=["res://.godot/imported/neutral_rejuvenator.png-036ce38651d0ef04a7acad66f5dbd556.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png new file mode 100644 index 0000000..e88b7e7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png.import new file mode 100644 index 0000000..7c983f7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doam5ox1id5jr" +path="res://.godot/imported/neutral_replicator.png-f6a3e4cc413cb292bcee59aaef81e2fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_replicator.png" +dest_files=["res://.godot/imported/neutral_replicator.png-f6a3e4cc413cb292bcee59aaef81e2fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png new file mode 100644 index 0000000..ba5e954 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png.import new file mode 100644 index 0000000..b69717e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddr85w1gd5ujj" +path="res://.godot/imported/neutral_rok.png-a876847fb28b299cf1d20ba4924884b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rok.png" +dest_files=["res://.godot/imported/neutral_rok.png-a876847fb28b299cf1d20ba4924884b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png new file mode 100644 index 0000000..60cb26c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png.import new file mode 100644 index 0000000..881e19d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b33k4c5r77h6u" +path="res://.godot/imported/neutral_rook.png-7a5cf74b85d734ae5c1ff73d081ef89b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rook.png" +dest_files=["res://.godot/imported/neutral_rook.png-7a5cf74b85d734ae5c1ff73d081ef89b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png new file mode 100644 index 0000000..0c51f74 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png.import new file mode 100644 index 0000000..9e3d676 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwiw6wv2co8xo" +path="res://.godot/imported/neutral_rubyrifter.png-3417ba528c6e082b7c61fff3de7b51b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_rubyrifter.png" +dest_files=["res://.godot/imported/neutral_rubyrifter.png-3417ba528c6e082b7c61fff3de7b51b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png new file mode 100644 index 0000000..f99bed2 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png.import new file mode 100644 index 0000000..81cfbe7 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f84j7gxxj28a" +path="res://.godot/imported/neutral_saberspinemk2.png-070cf78b016989e9fc9795af7e3cfe84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_saberspinemk2.png" +dest_files=["res://.godot/imported/neutral_saberspinemk2.png-070cf78b016989e9fc9795af7e3cfe84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png new file mode 100644 index 0000000..e95c166 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png.import new file mode 100644 index 0000000..b39d35e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctkvaa5ogucs8" +path="res://.godot/imported/neutral_sai.png-b377a928b06a65c116f12e268a9b58d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sai.png" +dest_files=["res://.godot/imported/neutral_sai.png-b377a928b06a65c116f12e268a9b58d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png new file mode 100644 index 0000000..d38ab68 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png.import new file mode 100644 index 0000000..6121e7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgx1qtrdn37fp" +path="res://.godot/imported/neutral_sapphireseer.png-a9b82888230f44a667a3d3bf79c856d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sapphireseer.png" +dest_files=["res://.godot/imported/neutral_sapphireseer.png-a9b82888230f44a667a3d3bf79c856d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png new file mode 100644 index 0000000..d3f4ad5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png.import new file mode 100644 index 0000000..3361289 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o4d0mora8td0" +path="res://.godot/imported/neutral_sarlacmk2.png-728f64b53347852dfcfd1e0bdccc93e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sarlacmk2.png" +dest_files=["res://.godot/imported/neutral_sarlacmk2.png-728f64b53347852dfcfd1e0bdccc93e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png new file mode 100644 index 0000000..756a27a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png.import new file mode 100644 index 0000000..2b281f3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b71t1vksj5cy" +path="res://.godot/imported/neutral_scarzig.png-32cca44deaf09f9f8328c3b45df9860c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_scarzig.png" +dest_files=["res://.godot/imported/neutral_scarzig.png-32cca44deaf09f9f8328c3b45df9860c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png new file mode 100644 index 0000000..7456057 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png.import new file mode 100644 index 0000000..34bb499 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://davekpysohwsr" +path="res://.godot/imported/neutral_serpenti.png-e80c232a539992bcdc221f8d89d26a43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_serpenti.png" +dest_files=["res://.godot/imported/neutral_serpenti.png-e80c232a539992bcdc221f8d89d26a43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png new file mode 100644 index 0000000..6fd9864 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png.import new file mode 100644 index 0000000..0f55495 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diig3hk3ie701" +path="res://.godot/imported/neutral_shadow1.png-43ca2076ff34f802bffc0659c9d8e602.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow1.png" +dest_files=["res://.godot/imported/neutral_shadow1.png-43ca2076ff34f802bffc0659c9d8e602.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png new file mode 100644 index 0000000..306133b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png.import new file mode 100644 index 0000000..067a73d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bckebm4sho38p" +path="res://.godot/imported/neutral_shadow2.png-b1b919d246b87db44c9ae03e9fc2face.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow2.png" +dest_files=["res://.godot/imported/neutral_shadow2.png-b1b919d246b87db44c9ae03e9fc2face.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png new file mode 100644 index 0000000..de25e1e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png.import new file mode 100644 index 0000000..88bf7ac --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs0thytufg7s6" +path="res://.godot/imported/neutral_shadow3.png-564dafd651e4df572a8e815fc04608a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadow3.png" +dest_files=["res://.godot/imported/neutral_shadow3.png-564dafd651e4df572a8e815fc04608a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png new file mode 100644 index 0000000..059c4d6 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png.import new file mode 100644 index 0000000..a865624 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cexxao53o82gk" +path="res://.godot/imported/neutral_shadowcaster.png-f86055861d52740ecc271a7de298f57a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowcaster.png" +dest_files=["res://.godot/imported/neutral_shadowcaster.png-f86055861d52740ecc271a7de298f57a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png new file mode 100644 index 0000000..ec53263 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png.import new file mode 100644 index 0000000..99f24d1 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxlpohpfnj0wp" +path="res://.godot/imported/neutral_shadowranged.png-58de4c5e75da5e0a3b93b63b3c5e4e95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shadowranged.png" +dest_files=["res://.godot/imported/neutral_shadowranged.png-58de4c5e75da5e0a3b93b63b3c5e4e95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png new file mode 100644 index 0000000..9f99ebf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png.import new file mode 100644 index 0000000..172c79a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch1bstwv5m0dm" +path="res://.godot/imported/neutral_shirodogdragon.png-9900b30cf7c1f0c5129147c7d466008f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shirodogdragon.png" +dest_files=["res://.godot/imported/neutral_shirodogdragon.png-9900b30cf7c1f0c5129147c7d466008f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png new file mode 100644 index 0000000..12c6acf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png.import new file mode 100644 index 0000000..6579502 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp7g2exl20og6" +path="res://.godot/imported/neutral_shuffler.png-8a412c30a4efcf4bf5eac185cd949dbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_shuffler.png" +dest_files=["res://.godot/imported/neutral_shuffler.png-8a412c30a4efcf4bf5eac185cd949dbb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png new file mode 100644 index 0000000..6c92e42 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png.import new file mode 100644 index 0000000..ef0d01a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo32w7sre6kpi" +path="res://.godot/imported/neutral_silhouettetracer.png-76c31fc18b1869af0b6fe1a880b6232d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silhouettetracer.png" +dest_files=["res://.godot/imported/neutral_silhouettetracer.png-76c31fc18b1869af0b6fe1a880b6232d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png new file mode 100644 index 0000000..bf3ebcb Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png.import new file mode 100644 index 0000000..e8977f3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wu4kop54dp4q" +path="res://.godot/imported/neutral_silverbeak.png-86b10b2b0166e0c5aa45e9e5dc3bd751.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silverbeak.png" +dest_files=["res://.godot/imported/neutral_silverbeak.png-86b10b2b0166e0c5aa45e9e5dc3bd751.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png new file mode 100644 index 0000000..d31a9d3 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png.import new file mode 100644 index 0000000..a59bcbe --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqy57hddxjctu" +path="res://.godot/imported/neutral_silvermech.png-242ccd72efa81688f1324e2186f1cc8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_silvermech.png" +dest_files=["res://.godot/imported/neutral_silvermech.png-242ccd72efa81688f1324e2186f1cc8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png new file mode 100644 index 0000000..4210903 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png.import new file mode 100644 index 0000000..d66cda4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtjetcmt4dsi6" +path="res://.godot/imported/neutral_singletonmythron.png-08a6ac6edced3d1910a748818a91a01a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_singletonmythron.png" +dest_files=["res://.godot/imported/neutral_singletonmythron.png-08a6ac6edced3d1910a748818a91a01a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png new file mode 100644 index 0000000..73806b7 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png.import new file mode 100644 index 0000000..ab97948 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clk4gdwclfwlg" +path="res://.godot/imported/neutral_sinistersilhouette.png-2d5587fce25e1ed7d1eb14fcc64326f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sinistersilhouette.png" +dest_files=["res://.godot/imported/neutral_sinistersilhouette.png-2d5587fce25e1ed7d1eb14fcc64326f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png new file mode 100644 index 0000000..3e3cc3c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png.import new file mode 100644 index 0000000..fe22fab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dci2fax36femy" +path="res://.godot/imported/neutral_sister.png-efaa705ad23ad1cf460667149bf77ae9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sister.png" +dest_files=["res://.godot/imported/neutral_sister.png-efaa705ad23ad1cf460667149bf77ae9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png new file mode 100644 index 0000000..63640ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png.import new file mode 100644 index 0000000..db4fd8c --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7n2ml2jjc8e8" +path="res://.godot/imported/neutral_skywing.png-aba05ceda8e181d875be9c9cd8076e4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_skywing.png" +dest_files=["res://.godot/imported/neutral_skywing.png-aba05ceda8e181d875be9c9cd8076e4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png new file mode 100644 index 0000000..c944f6f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png.import new file mode 100644 index 0000000..1930d94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brkiy0jlh0drd" +path="res://.godot/imported/neutral_soboro.png-8b0a332b088b67921772df843b8bfef1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_soboro.png" +dest_files=["res://.godot/imported/neutral_soboro.png-8b0a332b088b67921772df843b8bfef1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png new file mode 100644 index 0000000..963525a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png.import new file mode 100644 index 0000000..218b09d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5on2yy0s77vt" +path="res://.godot/imported/neutral_sol.png-06fbf54aa740d1953ff60046652c00ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sol.png" +dest_files=["res://.godot/imported/neutral_sol.png-06fbf54aa740d1953ff60046652c00ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png new file mode 100644 index 0000000..a749391 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png.import new file mode 100644 index 0000000..8a7f029 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uiaimcx8u2h2" +path="res://.godot/imported/neutral_spelljammer.png-c66fbfa6b20619b74fda3b1333082116.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spelljammer.png" +dest_files=["res://.godot/imported/neutral_spelljammer.png-c66fbfa6b20619b74fda3b1333082116.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png new file mode 100644 index 0000000..c89cf51 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png.import new file mode 100644 index 0000000..827b35b --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm0etnxx4skwq" +path="res://.godot/imported/neutral_spellsammermk2.png-7339f44193208e311d64369cac761f0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellsammermk2.png" +dest_files=["res://.godot/imported/neutral_spellsammermk2.png-7339f44193208e311d64369cac761f0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png new file mode 100644 index 0000000..866488c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png.import new file mode 100644 index 0000000..8bed870 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dboy0e055sa2u" +path="res://.godot/imported/neutral_spellspark.png-668ece855decb5d4fcc77e0c160093f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spellspark.png" +dest_files=["res://.godot/imported/neutral_spellspark.png-668ece855decb5d4fcc77e0c160093f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png new file mode 100644 index 0000000..9b89d13 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png.import new file mode 100644 index 0000000..9fbbd1d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iobu7sgwc832" +path="res://.godot/imported/neutral_spiritscribe.png-217b37ae6995de56d25f9b6f371d9653.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_spiritscribe.png" +dest_files=["res://.godot/imported/neutral_spiritscribe.png-217b37ae6995de56d25f9b6f371d9653.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png new file mode 100644 index 0000000..234a797 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png.import new file mode 100644 index 0000000..64c4069 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2vlloeqvbrnh" +path="res://.godot/imported/neutral_sunelemental.png-24553cf31fa421cff946977976444eee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunelemental.png" +dest_files=["res://.godot/imported/neutral_sunelemental.png-24553cf31fa421cff946977976444eee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png new file mode 100644 index 0000000..2e172b8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png.import new file mode 100644 index 0000000..3e320a0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c11ywxpycdm0q" +path="res://.godot/imported/neutral_sunsetparagon.png-0624837b4f3912da3539c74ac4c5b419.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsetparagon.png" +dest_files=["res://.godot/imported/neutral_sunsetparagon.png-0624837b4f3912da3539c74ac4c5b419.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png new file mode 100644 index 0000000..c41098d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png.import new file mode 100644 index 0000000..e60efdd --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cscbb5g7obsau" +path="res://.godot/imported/neutral_sunsteeldefender.png-146ec814e77702bbdd6641213a4a72f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_sunsteeldefender.png" +dest_files=["res://.godot/imported/neutral_sunsteeldefender.png-146ec814e77702bbdd6641213a4a72f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png new file mode 100644 index 0000000..a86457f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png.import new file mode 100644 index 0000000..c488bb9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm48a5ligo776" +path="res://.godot/imported/neutral_superdoxx.png-a73655f0deb8b4e8255311fe7b86ec52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superdoxx.png" +dest_files=["res://.godot/imported/neutral_superdoxx.png-a73655f0deb8b4e8255311fe7b86ec52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png new file mode 100644 index 0000000..479d017 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png.import new file mode 100644 index 0000000..24e0652 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdy8lb4lxxfr" +path="res://.godot/imported/neutral_superscarzig.png-14f9e00cb7894a97b5ec3bae0768302c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_superscarzig.png" +dest_files=["res://.godot/imported/neutral_superscarzig.png-14f9e00cb7894a97b5ec3bae0768302c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png new file mode 100644 index 0000000..b1f8d78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png.import new file mode 100644 index 0000000..cb4c5ef --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xruf86k6hji" +path="res://.godot/imported/neutral_swordofakrane.png-3743493e3e02493951a2044f0feb6e32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_swordofakrane.png" +dest_files=["res://.godot/imported/neutral_swordofakrane.png-3743493e3e02493951a2044f0feb6e32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png new file mode 100644 index 0000000..19f6876 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png.import new file mode 100644 index 0000000..a737953 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0g6bl5hn0v8j" +path="res://.godot/imported/neutral_syvrel.png-b18ffcc696668c2e7210db7a1318c218.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_syvrel.png" +dest_files=["res://.godot/imported/neutral_syvrel.png-b18ffcc696668c2e7210db7a1318c218.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png new file mode 100644 index 0000000..7bd8583 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png.import new file mode 100644 index 0000000..79319c3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl4uw85vor5sx" +path="res://.godot/imported/neutral_taura.png-2c7984b8242aee219b81e2fa6541bd1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_taura.png" +dest_files=["res://.godot/imported/neutral_taura.png-2c7984b8242aee219b81e2fa6541bd1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png new file mode 100644 index 0000000..bbdef04 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png.import new file mode 100644 index 0000000..71de574 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu0oobl4puk5g" +path="res://.godot/imported/neutral_tethermancer.png-8df630287e170ca7d1866ca05eb1dc9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tethermancer.png" +dest_files=["res://.godot/imported/neutral_tethermancer.png-8df630287e170ca7d1866ca05eb1dc9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png new file mode 100644 index 0000000..457ee2f Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png.import new file mode 100644 index 0000000..71dedf3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btyfulk2eqk4d" +path="res://.godot/imported/neutral_thecollective.png-2e80ede46b726f6664a93b517b0334e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thecollective.png" +dest_files=["res://.godot/imported/neutral_thecollective.png-2e80ede46b726f6664a93b517b0334e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png new file mode 100644 index 0000000..be18ef8 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png.import new file mode 100644 index 0000000..e14c8e4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbm7qcvqrlgq1" +path="res://.godot/imported/neutral_thegreatprotector.png-10e9eb8885fbd171cedbc3bf935b7a07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thegreatprotector.png" +dest_files=["res://.godot/imported/neutral_thegreatprotector.png-10e9eb8885fbd171cedbc3bf935b7a07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png new file mode 100644 index 0000000..e943523 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png.import new file mode 100644 index 0000000..2283d6e --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctcgl7u7vv3rh" +path="res://.godot/imported/neutral_thescientist.png-a29cbf4fd3e16a18026f36b9709a6edb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thescientist.png" +dest_files=["res://.godot/imported/neutral_thescientist.png-a29cbf4fd3e16a18026f36b9709a6edb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png new file mode 100644 index 0000000..107cca0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png.import new file mode 100644 index 0000000..261510d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7s073xrv05ap" +path="res://.godot/imported/neutral_thunderhorn.png-58131d94f80d0a4b840ec642f77044e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_thunderhorn.png" +dest_files=["res://.godot/imported/neutral_thunderhorn.png-58131d94f80d0a4b840ec642f77044e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png new file mode 100644 index 0000000..f045adf Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png.import new file mode 100644 index 0000000..178c7f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwdpefsafgf1x" +path="res://.godot/imported/neutral_timekeeper.png-110bc0e5940bd4cd1e675715a16b9ff6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_timekeeper.png" +dest_files=["res://.godot/imported/neutral_timekeeper.png-110bc0e5940bd4cd1e675715a16b9ff6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png new file mode 100644 index 0000000..565ce53 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png.import new file mode 100644 index 0000000..458ab04 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctt5gslgxsage" +path="res://.godot/imported/neutral_tombstone.png-075b8b8e232b7f881c7fe375a9e3ed0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tombstone.png" +dest_files=["res://.godot/imported/neutral_tombstone.png-075b8b8e232b7f881c7fe375a9e3ed0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png new file mode 100644 index 0000000..20d80a0 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png.import new file mode 100644 index 0000000..f1c67ab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1qdlf4b1jjmh" +path="res://.godot/imported/neutral_tribalcaster.png-29d0f055e86cb6b7f03ee0fa66c2232a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalcaster.png" +dest_files=["res://.godot/imported/neutral_tribalcaster.png-29d0f055e86cb6b7f03ee0fa66c2232a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png new file mode 100644 index 0000000..9725872 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png.import new file mode 100644 index 0000000..ea60e67 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6durasa1behe" +path="res://.godot/imported/neutral_tribalmelee1.png-22f57a97747ff118b52b6252e8b9cec3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee1.png" +dest_files=["res://.godot/imported/neutral_tribalmelee1.png-22f57a97747ff118b52b6252e8b9cec3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png new file mode 100644 index 0000000..a9d2606 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png.import new file mode 100644 index 0000000..e4198d9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baq241ibhe7kg" +path="res://.godot/imported/neutral_tribalmelee2.png-c0e3dc678a434022ba9a47e1d55b2faa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee2.png" +dest_files=["res://.godot/imported/neutral_tribalmelee2.png-c0e3dc678a434022ba9a47e1d55b2faa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png new file mode 100644 index 0000000..c708335 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png.import new file mode 100644 index 0000000..48065e5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0iiu6n1u0kbk" +path="res://.godot/imported/neutral_tribalmelee3.png-aa8b57b57b81f54e84843cb8aff79277.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee3.png" +dest_files=["res://.godot/imported/neutral_tribalmelee3.png-aa8b57b57b81f54e84843cb8aff79277.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png new file mode 100644 index 0000000..cfbb9ed Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png.import new file mode 100644 index 0000000..c9cdfb3 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b35q85pewqtdm" +path="res://.godot/imported/neutral_tribalmelee4.png-60443bd39e92bd1cdf7988857e1cc335.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalmelee4.png" +dest_files=["res://.godot/imported/neutral_tribalmelee4.png-60443bd39e92bd1cdf7988857e1cc335.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png new file mode 100644 index 0000000..05891ca Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png.import new file mode 100644 index 0000000..1d66476 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lasev6bh68cq" +path="res://.godot/imported/neutral_tribalranged1.png-0597c4052de3418b98e5e0faeb609781.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged1.png" +dest_files=["res://.godot/imported/neutral_tribalranged1.png-0597c4052de3418b98e5e0faeb609781.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png new file mode 100644 index 0000000..27c3659 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png.import new file mode 100644 index 0000000..0583aab --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxbsaxhu6a4pu" +path="res://.godot/imported/neutral_tribalranged2.png-94df62c1704a11b67fae3ac6173cab8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_tribalranged2.png" +dest_files=["res://.godot/imported/neutral_tribalranged2.png-94df62c1704a11b67fae3ac6173cab8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png new file mode 100644 index 0000000..83afcab Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png.import new file mode 100644 index 0000000..c47db7d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0hjrw7iedw5k" +path="res://.godot/imported/neutral_trinitywing.png-f4563599abc7a2ad9e61ac1bbca0093b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_trinitywing.png" +dest_files=["res://.godot/imported/neutral_trinitywing.png-f4563599abc7a2ad9e61ac1bbca0093b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png new file mode 100644 index 0000000..38f2588 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png.import new file mode 100644 index 0000000..821daa6 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dujg4fbwyauxi" +path="res://.godot/imported/neutral_ubo.png-8d54ffefe7620a0a0fdb92508a301e94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_ubo.png" +dest_files=["res://.godot/imported/neutral_ubo.png-8d54ffefe7620a0a0fdb92508a301e94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png new file mode 100644 index 0000000..6b0e3c5 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png.import new file mode 100644 index 0000000..b5d843a --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgc7f13f7c341" +path="res://.godot/imported/neutral_unseven.png-42c1b26ca947a43cbd41ac8ac1fa8b3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_unseven.png" +dest_files=["res://.godot/imported/neutral_unseven.png-42c1b26ca947a43cbd41ac8ac1fa8b3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png new file mode 100644 index 0000000..b9d020d Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png.import new file mode 100644 index 0000000..04fd7f2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgonytou2bcxk" +path="res://.godot/imported/neutral_veteranflamewing.png-158ab339a7331def418594576e2fe279.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_veteranflamewing.png" +dest_files=["res://.godot/imported/neutral_veteranflamewing.png-158ab339a7331def418594576e2fe279.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png new file mode 100644 index 0000000..ace2e11 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png.import new file mode 100644 index 0000000..b524fe0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8cvutnerl443" +path="res://.godot/imported/neutral_vex.png-f17a873dda6cac37554a04a1e2e9d4e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_vex.png" +dest_files=["res://.godot/imported/neutral_vex.png-f17a873dda6cac37554a04a1e2e9d4e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png new file mode 100644 index 0000000..8c80f6c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png.import new file mode 100644 index 0000000..64783bb --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1uq5032j4uc" +path="res://.godot/imported/neutral_voidhunter.png-40298987da18d7a78f5be8a967d9ca6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_voidhunter.png" +dest_files=["res://.godot/imported/neutral_voidhunter.png-40298987da18d7a78f5be8a967d9ca6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png new file mode 100644 index 0000000..8a7fc06 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png.import new file mode 100644 index 0000000..2781ea5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4lxt67lj2gc3" +path="res://.godot/imported/neutral_wartalon.png-077927dc67d9c103608e42fab229dddf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wartalon.png" +dest_files=["res://.godot/imported/neutral_wartalon.png-077927dc67d9c103608e42fab229dddf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png new file mode 100644 index 0000000..65a5446 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png.import new file mode 100644 index 0000000..4cd73f0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j36pmn5fqea2" +path="res://.godot/imported/neutral_whitewidow.png-1d7ed41a88c9cc85e522a4cdc32b92ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_whitewidow.png" +dest_files=["res://.godot/imported/neutral_whitewidow.png-1d7ed41a88c9cc85e522a4cdc32b92ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png new file mode 100644 index 0000000..fa1dcbe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png.import new file mode 100644 index 0000000..5b53a95 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://84sjkjpq7mgm" +path="res://.godot/imported/neutral_wildtahr.png-02488c053e623b66ea9c1c6b0022b994.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wildtahr.png" +dest_files=["res://.godot/imported/neutral_wildtahr.png-02488c053e623b66ea9c1c6b0022b994.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png new file mode 100644 index 0000000..6172a78 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png.import new file mode 100644 index 0000000..85c38c0 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba2u7sdmfmjng" +path="res://.godot/imported/neutral_windrunner.png-7d423cb419b4a1af609fd547da5f97ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windrunner.png" +dest_files=["res://.godot/imported/neutral_windrunner.png-7d423cb419b4a1af609fd547da5f97ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png new file mode 100644 index 0000000..7ec5a04 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png.import new file mode 100644 index 0000000..cd030d5 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba7asy2hqajqm" +path="res://.godot/imported/neutral_windstopper.png-99a04b93d225959034a178ee85bf959a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_windstopper.png" +dest_files=["res://.godot/imported/neutral_windstopper.png-99a04b93d225959034a178ee85bf959a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png new file mode 100644 index 0000000..48bf644 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png.import new file mode 100644 index 0000000..3a70120 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd75o06h5udam" +path="res://.godot/imported/neutral_wingsofparadise.png-5a89cf3786be1e3b67b49f855a61bff5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_wingsofparadise.png" +dest_files=["res://.godot/imported/neutral_wingsofparadise.png-5a89cf3786be1e3b67b49f855a61bff5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png new file mode 100644 index 0000000..16fe126 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png.import new file mode 100644 index 0000000..fde4ec4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8lo1sd3f4qhi" +path="res://.godot/imported/neutral_xho.png-cb2f72cf331eed737055ef0cf0bdf2a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xho.png" +dest_files=["res://.godot/imported/neutral_xho.png-cb2f72cf331eed737055ef0cf0bdf2a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png new file mode 100644 index 0000000..ae6734c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png.import new file mode 100644 index 0000000..0c605ad --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv1eitiabc61d" +path="res://.godot/imported/neutral_xyle01.png-02076ece78e236bb670a1ad9b16b3066.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle01.png" +dest_files=["res://.godot/imported/neutral_xyle01.png-02076ece78e236bb670a1ad9b16b3066.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png new file mode 100644 index 0000000..8b13c8e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png.import new file mode 100644 index 0000000..da0c168 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgye4d058vopm" +path="res://.godot/imported/neutral_xyle02.png-c9343689f477e5842db1d81fe76d8fcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle02.png" +dest_files=["res://.godot/imported/neutral_xyle02.png-c9343689f477e5842db1d81fe76d8fcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png new file mode 100644 index 0000000..6c45f97 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png.import new file mode 100644 index 0000000..a51bd43 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2asyoygxxtcq" +path="res://.godot/imported/neutral_xyle03.png-e61e12ab3fe41b3f6a048b810590c2cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_xyle03.png" +dest_files=["res://.godot/imported/neutral_xyle03.png-e61e12ab3fe41b3f6a048b810590c2cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png new file mode 100644 index 0000000..b07beee Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png.import new file mode 100644 index 0000000..e7daa7f --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n8mywamutobp" +path="res://.godot/imported/neutral_yun.png-02a366aec8fd4fc5dd3fefcd9a2e1e3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_yun.png" +dest_files=["res://.godot/imported/neutral_yun.png-02a366aec8fd4fc5dd3fefcd9a2e1e3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png new file mode 100644 index 0000000..f54662b Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png.import new file mode 100644 index 0000000..d54977d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bibf5siclyj8k" +path="res://.godot/imported/neutral_z0r.png-64419755be9ca42fac253d861495dfa0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_z0r.png" +dest_files=["res://.godot/imported/neutral_z0r.png-64419755be9ca42fac253d861495dfa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png new file mode 100644 index 0000000..7534a0a Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png.import new file mode 100644 index 0000000..b6e0cc2 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3md8vdof3yev" +path="res://.godot/imported/neutral_zenrui.png-1ccabd5ae88125ff7cbc653ed575c7b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zenrui.png" +dest_files=["res://.godot/imported/neutral_zenrui.png-1ccabd5ae88125ff7cbc653ed575c7b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png new file mode 100644 index 0000000..248edc9 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png.import new file mode 100644 index 0000000..d954b83 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq8isr8c7t1rd" +path="res://.godot/imported/neutral_zukong.png-6680d209706e3eaf00b54d544360765b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zukong.png" +dest_files=["res://.godot/imported/neutral_zukong.png-6680d209706e3eaf00b54d544360765b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png new file mode 100644 index 0000000..479a30e Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png.import new file mode 100644 index 0000000..468a95d --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxm5vumoxhe4" +path="res://.godot/imported/neutral_zurael.png-e2732a5c86662638a0e67aaab8592a5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zurael.png" +dest_files=["res://.godot/imported/neutral_zurael.png-e2732a5c86662638a0e67aaab8592a5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png new file mode 100644 index 0000000..e803478 Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png.import new file mode 100644 index 0000000..48382e4 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q1wea6xge6uo" +path="res://.godot/imported/neutral_zyx.png-03c14ab1dad7dc359b63bdd6b655b8b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyx.png" +dest_files=["res://.godot/imported/neutral_zyx.png-03c14ab1dad7dc359b63bdd6b655b8b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png new file mode 100644 index 0000000..5f56bbe Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png.import new file mode 100644 index 0000000..cb47a94 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvpm2v30oiqs" +path="res://.godot/imported/neutral_zyxfestive.png-761b466d4a1b4a813bc8bc6a53a9aa59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/neutral_zyxfestive.png" +dest_files=["res://.godot/imported/neutral_zyxfestive.png-761b466d4a1b4a813bc8bc6a53a9aa59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png b/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png new file mode 100644 index 0000000..87c237c Binary files /dev/null and b/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png differ diff --git a/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png.import b/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png.import new file mode 100644 index 0000000..587b8b9 --- /dev/null +++ b/addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvea6nj8jmk0d" +path="res://.godot/imported/prop_cranewisp.png-1c9285b169d55c77756e025778a877f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/duelyst_animated_sprites/assets/spritesheets/units/prop_cranewisp.png" +dest_files=["res://.godot/imported/prop_cranewisp.png-1c9285b169d55c77756e025778a877f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/platform/Assets.png b/assets/platform/Assets.png new file mode 100644 index 0000000..a5eab06 Binary files /dev/null and b/assets/platform/Assets.png differ diff --git a/assets/platform/Assets.png.import b/assets/platform/Assets.png.import new file mode 100644 index 0000000..a9a5f76 --- /dev/null +++ b/assets/platform/Assets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw3ql4wibxksj" +path="res://.godot/imported/Assets.png-28bdaae04b49fb04d63bc6933a446f64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/platform/Assets.png" +dest_files=["res://.godot/imported/Assets.png-28bdaae04b49fb04d63bc6933a446f64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/platform/Background_1.png b/assets/platform/Background_1.png new file mode 100644 index 0000000..f1ca948 Binary files /dev/null and b/assets/platform/Background_1.png differ diff --git a/assets/platform/Background_1.png.import b/assets/platform/Background_1.png.import new file mode 100644 index 0000000..c868452 --- /dev/null +++ b/assets/platform/Background_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5ucha2o3hy3b" +path="res://.godot/imported/Background_1.png-e3d88c0f2cd538c27f94b428cb6289ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/platform/Background_1.png" +dest_files=["res://.godot/imported/Background_1.png-e3d88c0f2cd538c27f94b428cb6289ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/platform/Background_2.png b/assets/platform/Background_2.png new file mode 100644 index 0000000..d676d65 Binary files /dev/null and b/assets/platform/Background_2.png differ diff --git a/assets/platform/Background_2.png.import b/assets/platform/Background_2.png.import new file mode 100644 index 0000000..3ff82f6 --- /dev/null +++ b/assets/platform/Background_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csenoef6ospf6" +path="res://.godot/imported/Background_2.png-12a026db5fd95d06b504bea3c6af13a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/platform/Background_2.png" +dest_files=["res://.godot/imported/Background_2.png-12a026db5fd95d06b504bea3c6af13a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/export_presets.cfg b/export_presets.cfg new file mode 100644 index 0000000..b762f1e --- /dev/null +++ b/export_presets.cfg @@ -0,0 +1,39 @@ +[preset.0] + +name="Linux/X11" +platform="Linux/X11" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="Builds/TheFall.x86_64" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.0.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=true +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..b370ceb --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..7474ae0 --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddl3oiv5xhsvw" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/label.gd b/label.gd new file mode 100644 index 0000000..7c3ea22 --- /dev/null +++ b/label.gd @@ -0,0 +1,14 @@ +extends Node2D + +func _notification(what): + if what == NOTIFICATION_WM_CLOSE_REQUEST: + get_tree().quit() # default behavior + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + if Input.is_action_pressed("ui_cancel"): + get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST) diff --git a/label.tscn b/label.tscn new file mode 100644 index 0000000..3febcae --- /dev/null +++ b/label.tscn @@ -0,0 +1,1069 @@ +[gd_scene load_steps=9 format=3 uid="uid://dghwsvvir3po3"] + +[ext_resource type="SpriteFrames" uid="uid://cbdiq76oo5fc7" path="res://addons/duelyst_animated_sprites/assets/spriteframes/units/boss_chaosknight.tres" id="1_gu3h5"] +[ext_resource type="Script" path="res://label.gd" id="1_l185u"] +[ext_resource type="Texture2D" uid="uid://csenoef6ospf6" path="res://assets/platform/Background_2.png" id="1_y77wf"] +[ext_resource type="Script" path="res://Player.gd" id="2_3yf3y"] +[ext_resource type="Texture2D" uid="uid://bw3ql4wibxksj" path="res://assets/platform/Assets.png" id="2_c3oi1"] + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_ep5fn"] +texture = ExtResource("2_c3oi1") +2:0/0 = 0 +2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:0/0/physics_layer_0/angular_velocity = 0.0 +2:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8) +3:0/0 = 0 +3:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:0/0/physics_layer_0/angular_velocity = 0.0 +3:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8) +4:0/0 = 0 +4:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:0/0/physics_layer_0/angular_velocity = 0.0 +4:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-8, -8, 8, -8, 8, 8, -8, 8) +7:0/0 = 0 +7:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:0/0/physics_layer_0/angular_velocity = 0.0 +8:0/0 = 0 +8:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:0/0/physics_layer_0/angular_velocity = 0.0 +9:0/0 = 0 +9:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:0/0/physics_layer_0/angular_velocity = 0.0 +10:0/0 = 0 +10:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:0/0/physics_layer_0/angular_velocity = 0.0 +11:0/0 = 0 +11:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:0/0/physics_layer_0/angular_velocity = 0.0 +13:0/0 = 0 +13:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:0/0/physics_layer_0/angular_velocity = 0.0 +14:0/0 = 0 +14:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:0/0/physics_layer_0/angular_velocity = 0.0 +15:0/0 = 0 +15:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:0/0/physics_layer_0/angular_velocity = 0.0 +16:0/0 = 0 +16:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:0/0/physics_layer_0/angular_velocity = 0.0 +17:0/0 = 0 +17:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:0/0/physics_layer_0/angular_velocity = 0.0 +1:1/0 = 0 +1:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:1/0/physics_layer_0/angular_velocity = 0.0 +2:1/0 = 0 +2:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:1/0/physics_layer_0/angular_velocity = 0.0 +3:1/0 = 0 +3:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:1/0/physics_layer_0/angular_velocity = 0.0 +4:1/0 = 0 +4:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:1/0/physics_layer_0/angular_velocity = 0.0 +5:1/0 = 0 +5:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:1/0/physics_layer_0/angular_velocity = 0.0 +6:1/0 = 0 +6:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:1/0/physics_layer_0/angular_velocity = 0.0 +7:1/0 = 0 +7:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:1/0/physics_layer_0/angular_velocity = 0.0 +8:1/0 = 0 +8:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:1/0/physics_layer_0/angular_velocity = 0.0 +9:1/0 = 0 +9:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:1/0/physics_layer_0/angular_velocity = 0.0 +10:1/0 = 0 +10:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:1/0/physics_layer_0/angular_velocity = 0.0 +11:1/0 = 0 +11:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:1/0/physics_layer_0/angular_velocity = 0.0 +12:1/0 = 0 +12:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:1/0/physics_layer_0/angular_velocity = 0.0 +13:1/0 = 0 +13:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:1/0/physics_layer_0/angular_velocity = 0.0 +14:1/0 = 0 +14:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:1/0/physics_layer_0/angular_velocity = 0.0 +15:1/0 = 0 +15:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:1/0/physics_layer_0/angular_velocity = 0.0 +16:1/0 = 0 +16:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:1/0/physics_layer_0/angular_velocity = 0.0 +17:1/0 = 0 +17:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:1/0/physics_layer_0/angular_velocity = 0.0 +1:2/0 = 0 +1:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:2/0/physics_layer_0/angular_velocity = 0.0 +2:2/0 = 0 +2:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:2/0/physics_layer_0/angular_velocity = 0.0 +3:2/0 = 0 +3:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:2/0/physics_layer_0/angular_velocity = 0.0 +4:2/0 = 0 +4:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:2/0/physics_layer_0/angular_velocity = 0.0 +5:2/0 = 0 +5:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:2/0/physics_layer_0/angular_velocity = 0.0 +6:2/0 = 0 +6:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:2/0/physics_layer_0/angular_velocity = 0.0 +7:2/0 = 0 +7:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:2/0/physics_layer_0/angular_velocity = 0.0 +8:2/0 = 0 +8:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:2/0/physics_layer_0/angular_velocity = 0.0 +9:2/0 = 0 +9:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:2/0/physics_layer_0/angular_velocity = 0.0 +10:2/0 = 0 +10:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:2/0/physics_layer_0/angular_velocity = 0.0 +11:2/0 = 0 +11:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:2/0/physics_layer_0/angular_velocity = 0.0 +12:2/0 = 0 +12:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:2/0/physics_layer_0/angular_velocity = 0.0 +13:2/0 = 0 +13:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:2/0/physics_layer_0/angular_velocity = 0.0 +14:2/0 = 0 +14:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:2/0/physics_layer_0/angular_velocity = 0.0 +15:2/0 = 0 +15:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:2/0/physics_layer_0/angular_velocity = 0.0 +17:2/0 = 0 +17:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:2/0/physics_layer_0/angular_velocity = 0.0 +18:2/0 = 0 +18:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:2/0/physics_layer_0/angular_velocity = 0.0 +0:3/0 = 0 +0:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:3/0/physics_layer_0/angular_velocity = 0.0 +1:3/0 = 0 +1:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:3/0/physics_layer_0/angular_velocity = 0.0 +2:3/0 = 0 +2:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:3/0/physics_layer_0/angular_velocity = 0.0 +3:3/0 = 0 +3:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:3/0/physics_layer_0/angular_velocity = 0.0 +4:3/0 = 0 +4:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:3/0/physics_layer_0/angular_velocity = 0.0 +5:3/0 = 0 +5:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:3/0/physics_layer_0/angular_velocity = 0.0 +6:3/0 = 0 +6:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:3/0/physics_layer_0/angular_velocity = 0.0 +7:3/0 = 0 +7:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:3/0/physics_layer_0/angular_velocity = 0.0 +8:3/0 = 0 +8:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:3/0/physics_layer_0/angular_velocity = 0.0 +9:3/0 = 0 +9:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:3/0/physics_layer_0/angular_velocity = 0.0 +10:3/0 = 0 +10:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:3/0/physics_layer_0/angular_velocity = 0.0 +11:3/0 = 0 +11:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:3/0/physics_layer_0/angular_velocity = 0.0 +12:3/0 = 0 +12:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:3/0/physics_layer_0/angular_velocity = 0.0 +13:3/0 = 0 +13:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:3/0/physics_layer_0/angular_velocity = 0.0 +14:3/0 = 0 +14:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:3/0/physics_layer_0/angular_velocity = 0.0 +15:3/0 = 0 +15:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:3/0/physics_layer_0/angular_velocity = 0.0 +16:3/0 = 0 +16:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:3/0/physics_layer_0/angular_velocity = 0.0 +17:3/0 = 0 +17:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:3/0/physics_layer_0/angular_velocity = 0.0 +18:3/0 = 0 +18:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:3/0/physics_layer_0/angular_velocity = 0.0 +19:3/0 = 0 +19:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:3/0/physics_layer_0/angular_velocity = 0.0 +20:3/0 = 0 +20:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:3/0/physics_layer_0/angular_velocity = 0.0 +0:4/0 = 0 +0:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:4/0/physics_layer_0/angular_velocity = 0.0 +2:4/0 = 0 +2:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:4/0/physics_layer_0/angular_velocity = 0.0 +3:4/0 = 0 +3:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:4/0/physics_layer_0/angular_velocity = 0.0 +4:4/0 = 0 +4:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:4/0/physics_layer_0/angular_velocity = 0.0 +5:4/0 = 0 +5:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:4/0/physics_layer_0/angular_velocity = 0.0 +6:4/0 = 0 +6:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:4/0/physics_layer_0/angular_velocity = 0.0 +7:4/0 = 0 +7:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:4/0/physics_layer_0/angular_velocity = 0.0 +8:4/0 = 0 +8:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:4/0/physics_layer_0/angular_velocity = 0.0 +9:4/0 = 0 +9:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:4/0/physics_layer_0/angular_velocity = 0.0 +11:4/0 = 0 +11:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:4/0/physics_layer_0/angular_velocity = 0.0 +12:4/0 = 0 +12:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:4/0/physics_layer_0/angular_velocity = 0.0 +13:4/0 = 0 +13:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:4/0/physics_layer_0/angular_velocity = 0.0 +14:4/0 = 0 +14:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:4/0/physics_layer_0/angular_velocity = 0.0 +15:4/0 = 0 +15:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:4/0/physics_layer_0/angular_velocity = 0.0 +16:4/0 = 0 +16:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:4/0/physics_layer_0/angular_velocity = 0.0 +17:4/0 = 0 +17:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:4/0/physics_layer_0/angular_velocity = 0.0 +21:4/0 = 0 +21:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:4/0/physics_layer_0/angular_velocity = 0.0 +22:4/0 = 0 +22:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:4/0/physics_layer_0/angular_velocity = 0.0 +23:4/0 = 0 +23:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:4/0/physics_layer_0/angular_velocity = 0.0 +0:5/0 = 0 +0:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +0:5/0/physics_layer_0/angular_velocity = 0.0 +2:5/0 = 0 +2:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:5/0/physics_layer_0/angular_velocity = 0.0 +3:5/0 = 0 +3:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:5/0/physics_layer_0/angular_velocity = 0.0 +4:5/0 = 0 +4:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:5/0/physics_layer_0/angular_velocity = 0.0 +6:5/0 = 0 +6:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:5/0/physics_layer_0/angular_velocity = 0.0 +7:5/0 = 0 +7:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:5/0/physics_layer_0/angular_velocity = 0.0 +8:5/0 = 0 +8:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:5/0/physics_layer_0/angular_velocity = 0.0 +9:5/0 = 0 +9:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:5/0/physics_layer_0/angular_velocity = 0.0 +10:5/0 = 0 +10:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:5/0/physics_layer_0/angular_velocity = 0.0 +11:5/0 = 0 +11:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:5/0/physics_layer_0/angular_velocity = 0.0 +12:5/0 = 0 +12:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:5/0/physics_layer_0/angular_velocity = 0.0 +13:5/0 = 0 +13:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:5/0/physics_layer_0/angular_velocity = 0.0 +14:5/0 = 0 +14:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:5/0/physics_layer_0/angular_velocity = 0.0 +16:5/0 = 0 +16:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:5/0/physics_layer_0/angular_velocity = 0.0 +18:5/0 = 0 +18:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:5/0/physics_layer_0/angular_velocity = 0.0 +19:5/0 = 0 +19:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:5/0/physics_layer_0/angular_velocity = 0.0 +20:5/0 = 0 +20:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:5/0/physics_layer_0/angular_velocity = 0.0 +21:5/0 = 0 +21:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:5/0/physics_layer_0/angular_velocity = 0.0 +22:5/0 = 0 +22:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:5/0/physics_layer_0/angular_velocity = 0.0 +23:5/0 = 0 +23:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:5/0/physics_layer_0/angular_velocity = 0.0 +24:5/0 = 0 +24:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) +24:5/0/physics_layer_0/angular_velocity = 0.0 +1:6/0 = 0 +1:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:6/0/physics_layer_0/angular_velocity = 0.0 +2:6/0 = 0 +2:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:6/0/physics_layer_0/angular_velocity = 0.0 +3:6/0 = 0 +3:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:6/0/physics_layer_0/angular_velocity = 0.0 +4:6/0 = 0 +4:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:6/0/physics_layer_0/angular_velocity = 0.0 +5:6/0 = 0 +5:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:6/0/physics_layer_0/angular_velocity = 0.0 +6:6/0 = 0 +6:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:6/0/physics_layer_0/angular_velocity = 0.0 +7:6/0 = 0 +7:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:6/0/physics_layer_0/angular_velocity = 0.0 +9:6/0 = 0 +9:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:6/0/physics_layer_0/angular_velocity = 0.0 +10:6/0 = 0 +10:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:6/0/physics_layer_0/angular_velocity = 0.0 +14:6/0 = 0 +14:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:6/0/physics_layer_0/angular_velocity = 0.0 +15:6/0 = 0 +15:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:6/0/physics_layer_0/angular_velocity = 0.0 +16:6/0 = 0 +16:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:6/0/physics_layer_0/angular_velocity = 0.0 +17:6/0 = 0 +17:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:6/0/physics_layer_0/angular_velocity = 0.0 +18:6/0 = 0 +18:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:6/0/physics_layer_0/angular_velocity = 0.0 +19:6/0 = 0 +19:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:6/0/physics_layer_0/angular_velocity = 0.0 +20:6/0 = 0 +20:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:6/0/physics_layer_0/angular_velocity = 0.0 +21:6/0 = 0 +21:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:6/0/physics_layer_0/angular_velocity = 0.0 +22:6/0 = 0 +22:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:6/0/physics_layer_0/angular_velocity = 0.0 +23:6/0 = 0 +23:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:6/0/physics_layer_0/angular_velocity = 0.0 +24:6/0 = 0 +24:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) +24:6/0/physics_layer_0/angular_velocity = 0.0 +1:7/0 = 0 +1:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:7/0/physics_layer_0/angular_velocity = 0.0 +2:7/0 = 0 +2:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:7/0/physics_layer_0/angular_velocity = 0.0 +3:7/0 = 0 +3:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:7/0/physics_layer_0/angular_velocity = 0.0 +4:7/0 = 0 +4:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:7/0/physics_layer_0/angular_velocity = 0.0 +5:7/0 = 0 +5:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:7/0/physics_layer_0/angular_velocity = 0.0 +7:7/0 = 0 +7:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:7/0/physics_layer_0/angular_velocity = 0.0 +8:7/0 = 0 +8:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:7/0/physics_layer_0/angular_velocity = 0.0 +9:7/0 = 0 +9:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:7/0/physics_layer_0/angular_velocity = 0.0 +10:7/0 = 0 +10:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:7/0/physics_layer_0/angular_velocity = 0.0 +11:7/0 = 0 +11:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:7/0/physics_layer_0/angular_velocity = 0.0 +12:7/0 = 0 +12:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:7/0/physics_layer_0/angular_velocity = 0.0 +15:7/0 = 0 +15:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:7/0/physics_layer_0/angular_velocity = 0.0 +17:7/0 = 0 +17:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:7/0/physics_layer_0/angular_velocity = 0.0 +18:7/0 = 0 +18:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:7/0/physics_layer_0/angular_velocity = 0.0 +20:7/0 = 0 +20:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:7/0/physics_layer_0/angular_velocity = 0.0 +21:7/0 = 0 +21:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:7/0/physics_layer_0/angular_velocity = 0.0 +22:7/0 = 0 +22:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:7/0/physics_layer_0/angular_velocity = 0.0 +23:7/0 = 0 +23:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:7/0/physics_layer_0/angular_velocity = 0.0 +24:7/0 = 0 +24:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) +24:7/0/physics_layer_0/angular_velocity = 0.0 +1:8/0 = 0 +1:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:8/0/physics_layer_0/angular_velocity = 0.0 +2:8/0 = 0 +2:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:8/0/physics_layer_0/angular_velocity = 0.0 +3:8/0 = 0 +3:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:8/0/physics_layer_0/angular_velocity = 0.0 +4:8/0 = 0 +4:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:8/0/physics_layer_0/angular_velocity = 0.0 +5:8/0 = 0 +5:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:8/0/physics_layer_0/angular_velocity = 0.0 +6:8/0 = 0 +6:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:8/0/physics_layer_0/angular_velocity = 0.0 +7:8/0 = 0 +7:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:8/0/physics_layer_0/angular_velocity = 0.0 +8:8/0 = 0 +8:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:8/0/physics_layer_0/angular_velocity = 0.0 +9:8/0 = 0 +9:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:8/0/physics_layer_0/angular_velocity = 0.0 +10:8/0 = 0 +10:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:8/0/physics_layer_0/angular_velocity = 0.0 +11:8/0 = 0 +11:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:8/0/physics_layer_0/angular_velocity = 0.0 +12:8/0 = 0 +12:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:8/0/physics_layer_0/angular_velocity = 0.0 +13:8/0 = 0 +13:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:8/0/physics_layer_0/angular_velocity = 0.0 +16:8/0 = 0 +16:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:8/0/physics_layer_0/angular_velocity = 0.0 +18:8/0 = 0 +18:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:8/0/physics_layer_0/angular_velocity = 0.0 +19:8/0 = 0 +19:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:8/0/physics_layer_0/angular_velocity = 0.0 +21:8/0 = 0 +21:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:8/0/physics_layer_0/angular_velocity = 0.0 +22:8/0 = 0 +22:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:8/0/physics_layer_0/angular_velocity = 0.0 +23:8/0 = 0 +23:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:8/0/physics_layer_0/angular_velocity = 0.0 +2:9/0 = 0 +2:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:9/0/physics_layer_0/angular_velocity = 0.0 +3:9/0 = 0 +3:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:9/0/physics_layer_0/angular_velocity = 0.0 +4:9/0 = 0 +4:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:9/0/physics_layer_0/angular_velocity = 0.0 +6:9/0 = 0 +6:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:9/0/physics_layer_0/angular_velocity = 0.0 +7:9/0 = 0 +7:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:9/0/physics_layer_0/angular_velocity = 0.0 +8:9/0 = 0 +8:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:9/0/physics_layer_0/angular_velocity = 0.0 +9:9/0 = 0 +9:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:9/0/physics_layer_0/angular_velocity = 0.0 +10:9/0 = 0 +10:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:9/0/physics_layer_0/angular_velocity = 0.0 +11:9/0 = 0 +11:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:9/0/physics_layer_0/angular_velocity = 0.0 +12:9/0 = 0 +12:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:9/0/physics_layer_0/angular_velocity = 0.0 +13:9/0 = 0 +13:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:9/0/physics_layer_0/angular_velocity = 0.0 +15:9/0 = 0 +15:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:9/0/physics_layer_0/angular_velocity = 0.0 +16:9/0 = 0 +16:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:9/0/physics_layer_0/angular_velocity = 0.0 +17:9/0 = 0 +17:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:9/0/physics_layer_0/angular_velocity = 0.0 +18:9/0 = 0 +18:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:9/0/physics_layer_0/angular_velocity = 0.0 +19:9/0 = 0 +19:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:9/0/physics_layer_0/angular_velocity = 0.0 +1:10/0 = 0 +1:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:10/0/physics_layer_0/angular_velocity = 0.0 +2:10/0 = 0 +2:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:10/0/physics_layer_0/angular_velocity = 0.0 +3:10/0 = 0 +3:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:10/0/physics_layer_0/angular_velocity = 0.0 +4:10/0 = 0 +4:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:10/0/physics_layer_0/angular_velocity = 0.0 +5:10/0 = 0 +5:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:10/0/physics_layer_0/angular_velocity = 0.0 +6:10/0 = 0 +6:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:10/0/physics_layer_0/angular_velocity = 0.0 +7:10/0 = 0 +7:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:10/0/physics_layer_0/angular_velocity = 0.0 +8:10/0 = 0 +8:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:10/0/physics_layer_0/angular_velocity = 0.0 +9:10/0 = 0 +9:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:10/0/physics_layer_0/angular_velocity = 0.0 +10:10/0 = 0 +10:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:10/0/physics_layer_0/angular_velocity = 0.0 +11:10/0 = 0 +11:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:10/0/physics_layer_0/angular_velocity = 0.0 +12:10/0 = 0 +12:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:10/0/physics_layer_0/angular_velocity = 0.0 +15:10/0 = 0 +15:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:10/0/physics_layer_0/angular_velocity = 0.0 +17:10/0 = 0 +17:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:10/0/physics_layer_0/angular_velocity = 0.0 +18:10/0 = 0 +18:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:10/0/physics_layer_0/angular_velocity = 0.0 +1:11/0 = 0 +1:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:11/0/physics_layer_0/angular_velocity = 0.0 +2:11/0 = 0 +2:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:11/0/physics_layer_0/angular_velocity = 0.0 +3:11/0 = 0 +3:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:11/0/physics_layer_0/angular_velocity = 0.0 +4:11/0 = 0 +4:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:11/0/physics_layer_0/angular_velocity = 0.0 +5:11/0 = 0 +5:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:11/0/physics_layer_0/angular_velocity = 0.0 +7:11/0 = 0 +7:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:11/0/physics_layer_0/angular_velocity = 0.0 +8:11/0 = 0 +8:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:11/0/physics_layer_0/angular_velocity = 0.0 +9:11/0 = 0 +9:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:11/0/physics_layer_0/angular_velocity = 0.0 +1:12/0 = 0 +1:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:12/0/physics_layer_0/angular_velocity = 0.0 +2:12/0 = 0 +2:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:12/0/physics_layer_0/angular_velocity = 0.0 +3:12/0 = 0 +3:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:12/0/physics_layer_0/angular_velocity = 0.0 +4:12/0 = 0 +4:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:12/0/physics_layer_0/angular_velocity = 0.0 +5:12/0 = 0 +5:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:12/0/physics_layer_0/angular_velocity = 0.0 +7:12/0 = 0 +7:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:12/0/physics_layer_0/angular_velocity = 0.0 +8:12/0 = 0 +8:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:12/0/physics_layer_0/angular_velocity = 0.0 +9:12/0 = 0 +9:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:12/0/physics_layer_0/angular_velocity = 0.0 +12:12/0 = 0 +12:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:12/0/physics_layer_0/angular_velocity = 0.0 +13:12/0 = 0 +13:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:12/0/physics_layer_0/angular_velocity = 0.0 +14:12/0 = 0 +14:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:12/0/physics_layer_0/angular_velocity = 0.0 +17:12/0 = 0 +17:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:12/0/physics_layer_0/angular_velocity = 0.0 +18:12/0 = 0 +18:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:12/0/physics_layer_0/angular_velocity = 0.0 +19:12/0 = 0 +19:12/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:12/0/physics_layer_0/angular_velocity = 0.0 +1:13/0 = 0 +1:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:13/0/physics_layer_0/angular_velocity = 0.0 +2:13/0 = 0 +2:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:13/0/physics_layer_0/angular_velocity = 0.0 +3:13/0 = 0 +3:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:13/0/physics_layer_0/angular_velocity = 0.0 +4:13/0 = 0 +4:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:13/0/physics_layer_0/angular_velocity = 0.0 +5:13/0 = 0 +5:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:13/0/physics_layer_0/angular_velocity = 0.0 +6:13/0 = 0 +6:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:13/0/physics_layer_0/angular_velocity = 0.0 +7:13/0 = 0 +7:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:13/0/physics_layer_0/angular_velocity = 0.0 +8:13/0 = 0 +8:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:13/0/physics_layer_0/angular_velocity = 0.0 +9:13/0 = 0 +9:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:13/0/physics_layer_0/angular_velocity = 0.0 +10:13/0 = 0 +10:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:13/0/physics_layer_0/angular_velocity = 0.0 +11:13/0 = 0 +11:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:13/0/physics_layer_0/angular_velocity = 0.0 +12:13/0 = 0 +12:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:13/0/physics_layer_0/angular_velocity = 0.0 +13:13/0 = 0 +13:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:13/0/physics_layer_0/angular_velocity = 0.0 +14:13/0 = 0 +14:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:13/0/physics_layer_0/angular_velocity = 0.0 +15:13/0 = 0 +15:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:13/0/physics_layer_0/angular_velocity = 0.0 +16:13/0 = 0 +16:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:13/0/physics_layer_0/angular_velocity = 0.0 +17:13/0 = 0 +17:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:13/0/physics_layer_0/angular_velocity = 0.0 +18:13/0 = 0 +18:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:13/0/physics_layer_0/angular_velocity = 0.0 +19:13/0 = 0 +19:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:13/0/physics_layer_0/angular_velocity = 0.0 +20:13/0 = 0 +20:13/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:13/0/physics_layer_0/angular_velocity = 0.0 +2:14/0 = 0 +2:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:14/0/physics_layer_0/angular_velocity = 0.0 +3:14/0 = 0 +3:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:14/0/physics_layer_0/angular_velocity = 0.0 +4:14/0 = 0 +4:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:14/0/physics_layer_0/angular_velocity = 0.0 +6:14/0 = 0 +6:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:14/0/physics_layer_0/angular_velocity = 0.0 +7:14/0 = 0 +7:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:14/0/physics_layer_0/angular_velocity = 0.0 +8:14/0 = 0 +8:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:14/0/physics_layer_0/angular_velocity = 0.0 +9:14/0 = 0 +9:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:14/0/physics_layer_0/angular_velocity = 0.0 +10:14/0 = 0 +10:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:14/0/physics_layer_0/angular_velocity = 0.0 +11:14/0 = 0 +11:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:14/0/physics_layer_0/angular_velocity = 0.0 +12:14/0 = 0 +12:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:14/0/physics_layer_0/angular_velocity = 0.0 +13:14/0 = 0 +13:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:14/0/physics_layer_0/angular_velocity = 0.0 +14:14/0 = 0 +14:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:14/0/physics_layer_0/angular_velocity = 0.0 +15:14/0 = 0 +15:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:14/0/physics_layer_0/angular_velocity = 0.0 +16:14/0 = 0 +16:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:14/0/physics_layer_0/angular_velocity = 0.0 +17:14/0 = 0 +17:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:14/0/physics_layer_0/angular_velocity = 0.0 +18:14/0 = 0 +18:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:14/0/physics_layer_0/angular_velocity = 0.0 +19:14/0 = 0 +19:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:14/0/physics_layer_0/angular_velocity = 0.0 +20:14/0 = 0 +20:14/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:14/0/physics_layer_0/angular_velocity = 0.0 +2:15/0 = 0 +2:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:15/0/physics_layer_0/angular_velocity = 0.0 +3:15/0 = 0 +3:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:15/0/physics_layer_0/angular_velocity = 0.0 +4:15/0 = 0 +4:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:15/0/physics_layer_0/angular_velocity = 0.0 +6:15/0 = 0 +6:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:15/0/physics_layer_0/angular_velocity = 0.0 +7:15/0 = 0 +7:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:15/0/physics_layer_0/angular_velocity = 0.0 +8:15/0 = 0 +8:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:15/0/physics_layer_0/angular_velocity = 0.0 +9:15/0 = 0 +9:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:15/0/physics_layer_0/angular_velocity = 0.0 +10:15/0 = 0 +10:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:15/0/physics_layer_0/angular_velocity = 0.0 +11:15/0 = 0 +11:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:15/0/physics_layer_0/angular_velocity = 0.0 +12:15/0 = 0 +12:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:15/0/physics_layer_0/angular_velocity = 0.0 +13:15/0 = 0 +13:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:15/0/physics_layer_0/angular_velocity = 0.0 +14:15/0 = 0 +14:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:15/0/physics_layer_0/angular_velocity = 0.0 +15:15/0 = 0 +15:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +15:15/0/physics_layer_0/angular_velocity = 0.0 +16:15/0 = 0 +16:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +16:15/0/physics_layer_0/angular_velocity = 0.0 +17:15/0 = 0 +17:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:15/0/physics_layer_0/angular_velocity = 0.0 +18:15/0 = 0 +18:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:15/0/physics_layer_0/angular_velocity = 0.0 +19:15/0 = 0 +19:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:15/0/physics_layer_0/angular_velocity = 0.0 +20:15/0 = 0 +20:15/0/physics_layer_0/linear_velocity = Vector2(0, 0) +20:15/0/physics_layer_0/angular_velocity = 0.0 +1:16/0 = 0 +1:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:16/0/physics_layer_0/angular_velocity = 0.0 +2:16/0 = 0 +2:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:16/0/physics_layer_0/angular_velocity = 0.0 +3:16/0 = 0 +3:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:16/0/physics_layer_0/angular_velocity = 0.0 +4:16/0 = 0 +4:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:16/0/physics_layer_0/angular_velocity = 0.0 +5:16/0 = 0 +5:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:16/0/physics_layer_0/angular_velocity = 0.0 +7:16/0 = 0 +7:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:16/0/physics_layer_0/angular_velocity = 0.0 +8:16/0 = 0 +8:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:16/0/physics_layer_0/angular_velocity = 0.0 +9:16/0 = 0 +9:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:16/0/physics_layer_0/angular_velocity = 0.0 +12:16/0 = 0 +12:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:16/0/physics_layer_0/angular_velocity = 0.0 +13:16/0 = 0 +13:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:16/0/physics_layer_0/angular_velocity = 0.0 +14:16/0 = 0 +14:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +14:16/0/physics_layer_0/angular_velocity = 0.0 +17:16/0 = 0 +17:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +17:16/0/physics_layer_0/angular_velocity = 0.0 +18:16/0 = 0 +18:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +18:16/0/physics_layer_0/angular_velocity = 0.0 +19:16/0 = 0 +19:16/0/physics_layer_0/linear_velocity = Vector2(0, 0) +19:16/0/physics_layer_0/angular_velocity = 0.0 +1:17/0 = 0 +1:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:17/0/physics_layer_0/angular_velocity = 0.0 +2:17/0 = 0 +2:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:17/0/physics_layer_0/angular_velocity = 0.0 +3:17/0 = 0 +3:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:17/0/physics_layer_0/angular_velocity = 0.0 +4:17/0 = 0 +4:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:17/0/physics_layer_0/angular_velocity = 0.0 +5:17/0 = 0 +5:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:17/0/physics_layer_0/angular_velocity = 0.0 +6:17/0 = 0 +6:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:17/0/physics_layer_0/angular_velocity = 0.0 +7:17/0 = 0 +7:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:17/0/physics_layer_0/angular_velocity = 0.0 +8:17/0 = 0 +8:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:17/0/physics_layer_0/angular_velocity = 0.0 +9:17/0 = 0 +9:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:17/0/physics_layer_0/angular_velocity = 0.0 +10:17/0 = 0 +10:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:17/0/physics_layer_0/angular_velocity = 0.0 +11:17/0 = 0 +11:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +11:17/0/physics_layer_0/angular_velocity = 0.0 +12:17/0 = 0 +12:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +12:17/0/physics_layer_0/angular_velocity = 0.0 +13:17/0 = 0 +13:17/0/physics_layer_0/linear_velocity = Vector2(0, 0) +13:17/0/physics_layer_0/angular_velocity = 0.0 +1:18/0 = 0 +1:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +1:18/0/physics_layer_0/angular_velocity = 0.0 +2:18/0 = 0 +2:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:18/0/physics_layer_0/angular_velocity = 0.0 +3:18/0 = 0 +3:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:18/0/physics_layer_0/angular_velocity = 0.0 +4:18/0 = 0 +4:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:18/0/physics_layer_0/angular_velocity = 0.0 +5:18/0 = 0 +5:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:18/0/physics_layer_0/angular_velocity = 0.0 +9:18/0 = 0 +9:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +9:18/0/physics_layer_0/angular_velocity = 0.0 +10:18/0 = 0 +10:18/0/physics_layer_0/linear_velocity = Vector2(0, 0) +10:18/0/physics_layer_0/angular_velocity = 0.0 +2:19/0 = 0 +2:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +2:19/0/physics_layer_0/angular_velocity = 0.0 +3:19/0 = 0 +3:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +3:19/0/physics_layer_0/angular_velocity = 0.0 +4:19/0 = 0 +4:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:19/0/physics_layer_0/angular_velocity = 0.0 +5:19/0 = 0 +5:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:19/0/physics_layer_0/angular_velocity = 0.0 +6:19/0 = 0 +6:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:19/0/physics_layer_0/angular_velocity = 0.0 +7:19/0 = 0 +7:19/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:19/0/physics_layer_0/angular_velocity = 0.0 +4:20/0 = 0 +4:20/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:20/0/physics_layer_0/angular_velocity = 0.0 +5:20/0 = 0 +5:20/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:20/0/physics_layer_0/angular_velocity = 0.0 +6:20/0 = 0 +6:20/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:20/0/physics_layer_0/angular_velocity = 0.0 +7:20/0 = 0 +7:20/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:20/0/physics_layer_0/angular_velocity = 0.0 +8:20/0 = 0 +8:20/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:20/0/physics_layer_0/angular_velocity = 0.0 +4:21/0 = 0 +4:21/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:21/0/physics_layer_0/angular_velocity = 0.0 +5:21/0 = 0 +5:21/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:21/0/physics_layer_0/angular_velocity = 0.0 +6:21/0 = 0 +6:21/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:21/0/physics_layer_0/angular_velocity = 0.0 +7:21/0 = 0 +7:21/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:21/0/physics_layer_0/angular_velocity = 0.0 +8:21/0 = 0 +8:21/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:21/0/physics_layer_0/angular_velocity = 0.0 +4:22/0 = 0 +4:22/0/physics_layer_0/linear_velocity = Vector2(0, 0) +4:22/0/physics_layer_0/angular_velocity = 0.0 +5:22/0 = 0 +5:22/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:22/0/physics_layer_0/angular_velocity = 0.0 +6:22/0 = 0 +6:22/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:22/0/physics_layer_0/angular_velocity = 0.0 +7:22/0 = 0 +7:22/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:22/0/physics_layer_0/angular_velocity = 0.0 +8:22/0 = 0 +8:22/0/physics_layer_0/linear_velocity = Vector2(0, 0) +8:22/0/physics_layer_0/angular_velocity = 0.0 +5:23/0 = 0 +5:23/0/physics_layer_0/linear_velocity = Vector2(0, 0) +5:23/0/physics_layer_0/angular_velocity = 0.0 +6:23/0 = 0 +6:23/0/physics_layer_0/linear_velocity = Vector2(0, 0) +6:23/0/physics_layer_0/angular_velocity = 0.0 +7:23/0 = 0 +7:23/0/physics_layer_0/linear_velocity = Vector2(0, 0) +7:23/0/physics_layer_0/angular_velocity = 0.0 +21:24/0 = 0 +21:24/0/physics_layer_0/linear_velocity = Vector2(0, 0) +21:24/0/physics_layer_0/angular_velocity = 0.0 +22:24/0 = 0 +22:24/0/physics_layer_0/linear_velocity = Vector2(0, 0) +22:24/0/physics_layer_0/angular_velocity = 0.0 +23:24/0 = 0 +23:24/0/physics_layer_0/linear_velocity = Vector2(0, 0) +23:24/0/physics_layer_0/angular_velocity = 0.0 +24:24/0 = 0 +24:24/0/physics_layer_0/linear_velocity = Vector2(0, 0) +24:24/0/physics_layer_0/angular_velocity = 0.0 + +[sub_resource type="TileSet" id="TileSet_e17kk"] +physics_layer_0/collision_layer = 1 +sources/0 = SubResource("TileSetAtlasSource_ep5fn") + +[sub_resource type="RectangleShape2D" id="RectangleShape2D_t5top"] +size = Vector2(15, 17) + +[node name="Main" type="Node2D"] +script = ExtResource("1_l185u") + +[node name="Background3" type="Sprite2D" parent="."] +scale = Vector2(2.32863, 2.41176) +texture = ExtResource("1_y77wf") + +[node name="Level" type="TileMap" parent="."] +position = Vector2(-6, -36) +tile_set = SubResource("TileSet_e17kk") +format = 2 +layer_0/tile_data = PackedInt32Array(262137, 131072, 0, 262138, 196608, 0, 262136, 131072, 0, 262139, 131072, 0, 262140, 196608, 0, 262141, 131072, 0, 262142, 196608, 0, 196595, 196608, 0, 196596, 196608, 0, 196597, 196608, 0, 65519, 196608, 0, 65520, 196608, 0, 65521, 196608, 0, 65522, 196608, 0, 131071, 196608, 0, 65536, 196608, 0, 65537, 196608, 0, 65538, 196608, 0, 4, 196608, 0, 5, 196608, 0, 7, 196608, 0, 6, 196608, 0) + +[node name="Label" type="Label" parent="."] +offset_left = 4.0 +offset_top = 16.0 +offset_right = 82.0 +offset_bottom = 42.0 +text = "Hello you!" + +[node name="Player" type="CharacterBody2D" parent="."] +script = ExtResource("2_3yf3y") + +[node name="CollisionShape2D" type="CollisionShape2D" parent="Player"] +position = Vector2(-91.5, 3.5) +shape = SubResource("RectangleShape2D_t5top") + +[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="Player"] +position = Vector2(-92, -1) +scale = Vector2(0.25, 0.25) +sprite_frames = ExtResource("1_gu3h5") +animation = &"attack" + +[node name="Camera2D" type="Camera2D" parent="Player"] +offset = Vector2(-90, 0) +zoom = Vector2(3, 3) +position_smoothing_enabled = true diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..48a5118 --- /dev/null +++ b/project.godot @@ -0,0 +1,35 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="test" +run/main_scene="res://label.tscn" +config/features=PackedStringArray("4.1", "Mobile") +config/icon="res://icon.svg" + +[input] + +ui_left={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"pressure":0.0,"pressed":false,"script":null) +, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":-1.0,"script":null) +] +} +ui_jump={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"echo":false,"script":null) +] +} + +[rendering] + +renderer/rendering_method="mobile"